/* =====================================
   WIIFARM PREMIUM WEBSITE STYLESHEET
===================================== */

:root{
    --primary:#198754;
    --secondary:#0f5132;
    --accent:#ffc107;
    --dark:#111827;
    --light:#f8fafc;
    --white:#ffffff;
    --gray:#6b7280;
    --shadow:0 15px 40px rgba(0,0,0,.08);
    --radius:20px;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:var(--light);
    color:#333;
    overflow-x:hidden;
}

/* ==========================
   GLOBAL
========================== */

.container{
    width:92%;
    max-width:1400px;
    margin:auto;
}

.section{
    padding:100px 0;
}

.section-title{
    text-align:center;
    font-size:48px;
    color:var(--primary);
    margin-bottom:15px;
    font-weight:800;
}

.section-subtitle{
    text-align:center;
    color:var(--gray);
    margin-bottom:50px;
    font-size:18px;
}

.btn{
    display:inline-block;
    padding:15px 30px;
    border-radius:12px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.btn-primary{
    background:var(--primary);
    color:white;
}

.btn-primary:hover{
    transform:translateY(-3px);
    background:var(--secondary);
}

.btn-dark{
    background:#222;
    color:white;
}

.btn-dark:hover{
    transform:translateY(-3px);
}

/* ==========================
   HEADER
========================== */

.header{
    position:sticky;
    top:0;
    z-index:9999;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(12px);
    box-shadow:0 2px 15px rgba(0,0,0,.06);
}

.nav-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0;
}

.logo img{
    height:75px;
    width:auto;
}

.nav-menu{
    display:flex;
    gap:25px;
    align-items:center;
}

.nav-menu a{
    text-decoration:none;
    color:#333;
    font-weight:600;
    transition:.3s;
}

.nav-menu a:hover{
    color:var(--primary);
}

.btn-member{
    background:var(--primary);
    color:white !important;
    padding:12px 22px;
    border-radius:10px;
}

#mobileMenuBtn{
    display:none;
    font-size:30px;
    cursor:pointer;
}

/* ==========================
   HERO
========================== */

.hero{
    height:90vh;
    position:relative;
    overflow:hidden;
}

.slide{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    display:none;
}

.slide.active{
    display:block;
    animation:zoomHero 7s linear;
}

@keyframes zoomHero{
    from{
        transform:scale(1);
    }
    to{
        transform:scale(1.08);
    }
}

.overlay{
    width:100%;
    height:100%;
    background:linear-gradient(
        rgba(0,0,0,.65),
        rgba(0,0,0,.65)
    );
    display:flex;
    align-items:center;
}

.hero-content{
    max-width:700px;
    margin-left:5%;
    color:white;
}

.hero-content h1{
    font-size:70px;
    font-weight:900;
    margin-bottom:20px;
}

.hero-content p{
    font-size:22px;
    margin-bottom:30px;
    line-height:1.8;
}

.hero-buttons{
    display:flex;
    gap:15px;
}

/* ==========================
   PRODUCTS
========================== */

.products-grid{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.product-card{
    background:white;
    border-radius:var(--radius);
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:.4s;
}

.product-card:hover{
    transform:translateY(-10px);
}

.product-card img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.product-content{
    padding:25px;
}

.product-content h3{
    margin-bottom:12px;
    font-size:24px;
}

.product-content p{
    color:#666;
    line-height:1.8;
}

.product-actions{
    display:flex;
    gap:10px;
    margin-top:20px;
}

.view-btn,
.buy-btn{
    flex:1;
    text-align:center;
    text-decoration:none;
    padding:12px;
    border-radius:10px;
    font-weight:700;
}

.view-btn{
    background:#222;
    color:white;
}

.buy-btn{
    background:var(--primary);
    color:white;
}

/* ==========================
   ABOUT
========================== */

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:25px;
    box-shadow:var(--shadow);
}

.about-content{
    line-height:2;
}

.about-content p{
    color:#555;
}

/* ==========================
   STATS
========================== */

.stats{
    display:grid;
    grid-template-columns:
    repeat(4,1fr);
    gap:25px;
}

.stat-box{
    background:var(--primary);
    color:white;
    text-align:center;
    padding:40px;
    border-radius:20px;
}

.stat-box h2{
    font-size:45px;
    margin-bottom:10px;
}

/* ==========================
   MEMBERSHIP CTA
========================== */

.membership{
    background:
    linear-gradient(
    135deg,
    var(--secondary),
    var(--primary)
    );
    color:white;
    text-align:center;
    padding:100px 20px;
}

.membership h2{
    font-size:50px;
    margin-bottom:20px;
}

.membership p{
    max-width:800px;
    margin:auto;
    line-height:1.8;
    margin-bottom:30px;
}

/* ==========================
   FOOTER
========================== */

.footer{
    background:#111;
    color:white;
    padding:80px 0 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
    margin-bottom:40px;
}

.footer h3{
    margin-bottom:15px;
    color:var(--accent);
}

.footer ul{
    list-style:none;
}

.footer ul li{
    margin-bottom:10px;
}

.footer ul li a{
    color:white;
    text-decoration:none;
}

.footer hr{
    border:none;
    border-top:1px solid rgba(255,255,255,.1);
    margin:25px 0;
}

.copyright{
    text-align:center;
}

/* ==========================
   WHATSAPP
========================== */

.whatsapp-btn{
    position:fixed;
    right:20px;
    bottom:20px;
    background:#25D366;
    color:white;
    text-decoration:none;
    padding:15px 20px;
    border-radius:50px;
    font-weight:700;
    z-index:999;
    box-shadow:0 5px 20px rgba(0,0,0,.25);
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:991px){

    .about-grid{
        grid-template-columns:1fr;
    }

    .stats{
        grid-template-columns:1fr 1fr;
    }

    .hero-content h1{
        font-size:50px;
    }

}

@media(max-width:768px){

    .nav-menu{
        display:none;
    }

    #mobileMenuBtn{
        display:block;
    }

    .hero-content h1{
        font-size:40px;
    }

    .hero-content p{
        font-size:18px;
    }

    .products-grid{
        grid-template-columns:1fr;
    }

    .stats{
        grid-template-columns:1fr;
    }

    .membership h2{
        font-size:35px;
    }

}

.show-menu{
display:flex !important;
flex-direction:column;
position:absolute;
top:90px;
left:0;
width:100%;
background:white;
padding:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

@media(max-width:768px){

.nav-menu{
display:none;
}

.show-menu a{
padding:10px 0;
}

}

.footer p{
line-height:1.8;
color:#ddd;
}

.footer ul{
list-style:none;
padding:0;
}

.footer ul li{
margin-bottom:10px;
}

.footer ul li a{
color:#ddd;
text-decoration:none;
transition:.3s;
}

.footer ul li a:hover{
color:#ffffff;
padding-left:5px;
}

.whatsapp-btn i{
margin-right:8px;
}

/* ==========================
   SCROLL ANIMATIONS
========================== */

.reveal{
opacity:0;
transform:translateY(50px);
transition:all .8s ease;
}

.reveal.active{
opacity:1;
transform:translateY(0);
}

/* ==========================
   COUNTERS
========================== */

.counter{
font-size:50px;
font-weight:800;
display:block;
margin-bottom:10px;
}