/* ===========================
GENERAL
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f5f5f5;
    color:#333;
    line-height:1.6;
}

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

header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 8%;
    background:#ffffff;
    box-shadow:0 3px 12px rgba(0,0,0,.08);
    position:sticky;
    top:0;
    z-index:1000;
}

.logo h1{
    color:#2E7D32;
    font-size:32px;
}

nav a{
    text-decoration:none;
    color:#333;
    margin-left:25px;
    font-weight:600;
    transition:.3s;
}

nav a:hover{
    color:#2E7D32;
}

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

.hero{
    height:75vh;
    background:
    linear-gradient(rgba(0,0,0,.45),
    rgba(0,0,0,.45)),
    url("images/hero-banner.jpg");

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

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
    padding:20px;
}

.hero-content{
    max-width:700px;
}

.hero h2{
    font-size:48px;
    margin-bottom:20px;
}

.hero p{
    font-size:18px;
    margin-bottom:30px;
}

.hero-btn{
    display:inline-block;
    background:#2E7D32;
    color:white;
    text-decoration:none;
    padding:15px 35px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.hero-btn:hover{
    background:#256528;
}/* ===========================
PRODUCTS
=========================== */

.products{

    padding:80px 8%;

    text-align:center;

    background:#f5f5f5;

}

.products h2{

    font-size:38px;

    margin-bottom:10px;

}

.products p{

    color:#666;

    margin-bottom:40px;

}

.product-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

}

.product-card{

    background:#fff;

    border-radius:15px;

    overflow:hidden;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    transition:.3s;

}

.product-card:hover{

    transform:translateY(-8px);

}

.product-card img{

    width:100%;

    height:260px;

    object-fit:cover;

}

.product-card h3{

    padding:20px 15px 10px;

    font-size:22px;

}

.order-btn{

    display:inline-block;

    margin:20px;

    padding:14px 30px;

    background:#25D366;

    color:#fff;

    text-decoration:none;

    border-radius:40px;

    font-weight:600;

    transition:.3s;

}

.order-btn:hover{

    background:#1EBE5D;

}

/* ===========================
CATALOGUE
=========================== */

.catalogue{

    background:#2E7D32;

    color:#fff;

    text-align:center;

    padding:80px 8%;

}

.catalogue h2{

    font-size:38px;

    margin-bottom:20px;

}

.catalogue p{

    max-width:700px;

    margin:0 auto 35px;

    line-height:1.8;

}

/* ===========================
CONTACT
=========================== */

.contact{

    background:#fff;

    padding:80px 8%;

    text-align:center;

}

.contact h2{

    font-size:36px;

    margin-bottom:20px;

}

.contact p{

    margin:12px 0;

    color:#555;

}

.contact-info{

    margin-top:25px;

    font-size:18px;

}

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

footer{

    background:#222;

    color:#fff;

    text-align:center;

    padding:40px 20px;

}

footer h3{

    color:#2E7D32;

    margin-bottom:15px;

}

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

@media(max-width:768px){

    header{

        flex-direction:column;

        gap:20px;

    }

    nav{

        display:flex;

        flex-wrap:wrap;

        justify-content:center;

    }

    .hero{

        height:auto;

        padding:100px 20px;

    }

    .hero h2{

        font-size:34px;

    }

    .hero p{

        font-size:16px;

    }

    .hero-btn,

    .order-btn{

        width:90%;

        text-align:center;

    }

}
