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

body {
    line-height: 1.6;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: #2ecc71;
    color: white;
    position: sticky;
    top: 0;
}

.logo {
    font-size: 22px;
    font-weight: 700;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.menu-toggle {
    display: none;
    font-size: 25px;
    cursor: pointer;
}

/* HERO */
.hero {
    height: 85vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url("../images/hero.jpg");
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero h1 {
    font-size: 42px;
}

.hero button {
    padding: 12px 28px;
    border: none;
    background: #2ecc71;
    color: white;
    margin-top: 20px;
    cursor: pointer;
    border-radius: 6px;
}

/* PRODUCTS */
.products {
    padding: 40px 0;
}

.product-banner {
    position: relative;
    height: 350px;
    margin: 50px 8%;
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 8%;
    color: #fff;
}

.product-banner .overlay {
    background: rgba(0,0,0,0.6);
    padding: 25px;
    border-radius: 12px;
    max-width: 450px;
}

.product-banner h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.product-banner p {
    font-size: 16px;
}

/* PRODUCT IMAGES */
.masala {
    background-image: url("https://images.unsplash.com/photo-1596040033229-a9821ebd058d?q=80&w=1200&auto=format&fit=crop");
}

.chini {
    background-image: url("../images/sugar.jpg");
}

.namkeen {
    background-image: url("../images/chips.jpg");
}

.biscuit {
    background-image: url("../images/biscuits.jpg");
}

.cold-drinks {
    background-image: url("../images/colddrinks.jpg");
}

/* ALTERNATE ALIGNMENT */
.chini, .biscuit {
    justify-content: flex-end;
}

/* ABOUT & CONTACT */
.about, .contact {
    padding: 60px 8%;
    text-align: center;
    background: #f4f4f4;
}

footer {
    text-align: center;
    padding: 20px;
    background: #2ecc71;
    color: white;
}

.footer-contact{
    margin-top:10px;
}

.footer-contact a{
    margin:0 10px;
}

.footer-contact img{
    width:25px;
    cursor:pointer;
}

/* MOBILE */
@media(max-width: 768px) {

    .nav-links {
        display: none;
        flex-direction: column;
        background: #2ecc71;
        position: absolute;
        top: 70px;
        right: 0;
        width: 200px;
        padding: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 28px;
    }

    .product-banner {
        height: 250px;
        justify-content: center !important;
        text-align: center;
    }
}

.contact i{
    margin-right: 8px;
    color: #2ecc71;
    font-size: 18px;
}

.contact a{
    text-decoration: none;
    color: #333;
    font-weight: 500;
}


@media(max-width:768px){

    .product-banner .overlay{
        background: none;   
        padding: 10px;
        max-width: 90%;
    }

    .product-banner h2{
        font-size:18px;   
    }

    .product-banner p{
        font-size:13px;   
    }

}