/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Segoe UI',sans-serif;
    background:#f8f5ee;
    color:#222;
}

/* =========================
   HEADER
========================= */

.header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 60px;
    background:#ffffff;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.logo-area{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo{
    height:70px;
    width:auto;
}

.brand-text h1{
    color:#1f5c34;
    font-size:2rem;
    line-height:1;
}

.brand-text p{
    color:#444;
    font-size:0.95rem;
    margin-top:5px;
}

nav{
    display:flex;
    gap:35px;
}

nav a{
    text-decoration:none;
    color:#222;
    font-weight:600;
    transition:.3s;
}

nav a:hover{
    color:#1f5c34;
}

.call-btn{
    background:#1f5c34;
    color:white;
    text-decoration:none;
    padding:12px 24px;
    border-radius:10px;
    font-weight:600;
}

.call-btn i{
    margin-right:8px;
}

/* =========================
   HERO
========================= */

.hero{
    height:85vh;

    background:
    linear-gradient(
        rgba(255,255,255,.20),
        rgba(255,255,255,.20)
    ),
    url("images/hero-farm.jpg");

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;
}

.hero-overlay{
    width:100%;
    max-width:1400px;
    margin:auto;
    padding:0 80px;
}

.hero-content{

    width:520px;

    background:rgba(255,255,255,.70);

    backdrop-filter:blur(8px);

    padding:40px;

    border-radius:20px;
}

.hero-content h2{
    font-size:5rem;
    color:#0f4d28;
    line-height:1;
    font-weight:800;
}

.hero-content h3{
    font-size:2.5rem;
    margin-top:10px;
    color:#2d2d2d;
}

.hero-content p{
    margin-top:20px;
    line-height:1.8;
    font-size:1.3rem;
    color:#333;
}

.hero-buttons{
    margin-top:30px;
    display:flex;
    gap:15px;
}

.primary-btn{
    background:#1f5c34;
    color:white;
    text-decoration:none;
    padding:16px 28px;
    border-radius:12px;
    font-weight:700;
}

.secondary-btn{
    background:white;
    color:#1f5c34;
    border:2px solid #1f5c34;
    text-decoration:none;
    padding:16px 28px;
    border-radius:12px;
    font-weight:700;
}

/* =========================
   SECTION TITLE
========================= */

.section-title{
    text-align:center;
    margin-bottom:40px;
}

.section-title h2{
    font-size:3rem;
    color:#1f5c34;
}

/* =========================
   PRODUCTS
========================= */

.products{
    padding:70px 60px;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.product-card{
    background:white;
    border-radius:18px;
    overflow:hidden;

    box-shadow:
    0 5px 15px rgba(0,0,0,.08);

    transition:.3s;
}

.product-card:hover{
    transform:translateY(-8px);
}

.product-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.product-card h3{
    padding:18px 18px 8px;
    color:#1f5c34;
    font-size:1.6rem;
}

.product-card p{
    padding:0 18px 25px;
    color:#555;
    line-height:1.7;
}

/* =========================
   WHY US
========================= */

.why-us{

    background:#f5f2e8;

    margin:0 60px;

    padding:60px;

    border-radius:25px;
}

.why-us h2{
    text-align:center;
    color:#1f5c34;
    font-size:3rem;
    margin-bottom:50px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.why-card{
    text-align:center;
}

.why-card i{
    font-size:3rem;
    color:#1f5c34;
    margin-bottom:20px;
}

.why-card h3{
    margin-bottom:10px;
}

.why-card p{
    color:#555;
    line-height:1.6;
}

/* =========================
   FARM PRODUCTS
========================= */

.farm-products{
    padding:80px 60px;
}

.farm-products h2{
    text-align:center;
    color:#1f5c34;
    font-size:3rem;
    margin-bottom:40px;
}

.farm-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.farm-card{

    background:white;

    border-radius:20px;

    overflow:hidden;

    display:flex;

    box-shadow:
    0 5px 15px rgba(0,0,0,.08);
}

.farm-card img{
    width:45%;
    object-fit:cover;
}

.farm-info{
    padding:35px;
}

.farm-info h3{
    color:#1f5c34;
    margin-bottom:15px;
    font-size:2rem;
}

.farm-info p{
    line-height:1.8;
    color:#555;
}

.farm-info a{
    display:inline-block;
    margin-top:20px;
    background:#1f5c34;
    color:white;
    text-decoration:none;
    padding:12px 24px;
    border-radius:10px;
}

/* =========================
   FOOTER
========================= */

footer{
    background:#0f4d28;
    color:white;
    padding:30px;
}

.footer-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    text-align:center;
}

.footer-grid div{
    font-size:1.1rem;
}

.footer-grid i{
    margin-right:10px;
}

/* =========================
   WHATSAPP FLOAT
========================= */

.whatsapp-float{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;
    height:65px;

    border-radius:50%;

    background:#25D366;

    color:white;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    font-size:2rem;

    box-shadow:
    0 5px 20px rgba(0,0,0,.25);

    z-index:999;
}

/* =========================
   MOBILE
========================= */

@media(max-width:900px){

    .header{
        flex-direction:column;
        gap:20px;
        padding:20px;
    }

    nav{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero{
        height:auto;
        padding:60px 0;
    }

    .hero-overlay{
        padding:20px;
    }

    .hero-content{
        width:100%;
    }

    .hero-content h2{
        font-size:3rem;
    }

    .hero-content h3{
        font-size:1.6rem;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .product-grid{
        grid-template-columns:1fr;
    }

    .why-grid{
        grid-template-columns:1fr;
    }

    .farm-grid{
        grid-template-columns:1fr;
    }

    .farm-card{
        flex-direction:column;
    }

    .farm-card img{
        width:100%;
        height:250px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:15px;
    }

    .why-us{
        margin:20px;
        padding:40px 20px;
    }
}