
/**
 * ==========================================================
 * Le Foin® Tarot
 * Frontend
 * ==========================================================
 */

/* ==========================================================
   Variables
========================================================== */

:root{

    --lf-primary:#D4AF37;
    --lf-primary-dark:#B68C20;

    --lf-bg:#FFFDF8;
    --lf-surface:#FFFFFF;

    --lf-text:#222222;
    --lf-muted:#777777;

    --lf-border:#ECECEC;

    --lf-radius:20px;

    --lf-shadow:
        0 18px 40px rgba(0,0,0,.08);

}

/* ==========================================================
   Wrapper
========================================================== */

.lf-container{

    max-width:1200px;

    margin:auto;

    padding:70px 25px;

}

/* ==========================================================
   Hero
========================================================== */

.lf-hero{

    text-align:center;

    margin-bottom:70px;

}

.lf-hero h1{

    font-size:56px;

    line-height:1.1;

    margin-bottom:20px;

    color:var(--lf-text);

}

.lf-hero p{

    max-width:760px;

    margin:auto;

    font-size:20px;

    line-height:1.8;

    color:var(--lf-muted);

}

/* ==========================================================
   Section
========================================================== */

.lf-section{

    margin:90px 0;

}

.lf-section-title{

    font-size:40px;

    text-align:center;

    margin-bottom:20px;

}

.lf-section-description{

    max-width:760px;

    margin:auto;

    text-align:center;

    color:var(--lf-muted);

    line-height:1.8;

}

/* ==========================================================
   Grid
========================================================== */

.lf-grid{

    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(300px,1fr));

    gap:35px;

}

/* ==========================================================
   Premium Box
========================================================== */

.lf-premium{

    background:#FFF8E5;

    border:1px solid #F5E3A3;

    border-radius:24px;

    padding:45px;

    text-align:center;

}

.lf-premium h2{

    margin-bottom:15px;

}

.lf-premium p{

    color:var(--lf-muted);

    line-height:1.8;

}

/* ==========================================================
   CTA Button
========================================================== */

.lf-button{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:16px 34px;

    margin-top:25px;

    border:none;

    border-radius:999px;

    background:var(--lf-primary);

    color:#fff;

    text-decoration:none;

    font-size:17px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

}

.lf-button:hover{

    background:var(--lf-primary-dark);

    transform:translateY(-3px);

}

/* ==========================================================
   Reading
========================================================== */

.lf-reading{

    background:#fff;

    border-radius:22px;

    padding:35px;

    box-shadow:var(--lf-shadow);

}

.lf-reading h2{

    margin-top:0;

}

.lf-reading h3{

    margin-top:35px;

}

.lf-reading p{

    line-height:1.9;

    color:#444;

}

/* ==========================================================
   Lock Box
========================================================== */

.lf-lock{

    margin-top:40px;

    padding:45px;

    border-radius:22px;

    text-align:center;

    background:

    linear-gradient(

        135deg,

        #FFF7D8,

        #FFFDF6

    );

}

.lf-lock h2{

    margin-bottom:15px;

}

.lf-lock p{

    max-width:620px;

    margin:auto;

    line-height:1.8;

}

/* ==========================================================
   Benefits
========================================================== */

.lf-benefits{

    list-style:none;

    margin:35px 0;

    padding:0;

}

.lf-benefits li{

    margin:15px 0;

    padding-left:28px;

    position:relative;

}

.lf-benefits li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:var(--lf-primary);

    font-weight:bold;

}

/* ==========================================================
   Notice
========================================================== */

.lf-notice{

    padding:20px;

    border-radius:14px;

    margin:25px 0;

}

.lf-success{

    background:#ECFDF5;

}

.lf-warning{

    background:#FEF3C7;

}

.lf-danger{

    background:#FEE2E2;

}

/* ==========================================================
   Loading
========================================================== */

.lf-loading{

    text-align:center;

    padding:60px;

}

/* ==========================================================
   Footer CTA
========================================================== */

.lf-footer-cta{

    text-align:center;

    margin:100px 0 60px;

}

.lf-footer-cta h2{

    font-size:44px;

}

.lf-footer-cta p{

    max-width:700px;

    margin:20px auto;

    line-height:1.8;

}

/* ==========================================================
   Mobile
========================================================== */

@media(max-width:768px){

    .lf-container{

        padding:40px 18px;

    }

    .lf-hero h1{

        font-size:34px;

    }

    .lf-section-title{

        font-size:30px;

    }

    .lf-reading{

        padding:24px;

    }

}

