*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins', sans-serif;
    background:#f5f5f5;
    color:#222;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* HEADER */

.header{
    background:#065f2cd4;
    padding:18px 0;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    position: sticky;
    top: 0;
    width: 100%;
    margin: 0;
    z-index: 20;
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo img{
    height: 70px;
}
.logo h2{
    color:#fff;
    font-size:32px;
    font-weight:800;
}

.logo span{
    color:#d8ffd8;
    font-size:12px;
    letter-spacing:3px;
}

.nav-links{
    display:flex;
    gap:40px;
    list-style:none;
}

.nav-links a{
    color:#fff;
    text-decoration:none;
    font-weight:500;
}

.btn{
    display:inline-block;
    padding:14px 28px;
    border-radius:10px;
    text-decoration:none;
    font-weight:700;
    transition:0.3s;
}

.join-btn{
    background:#1fc85b;
    color:#fff;
}

.join-btn:hover{
    background:#16a34a;
}

/* HERO */

.hero{
    position:relative;
    min-height:90vh;
    background:url('../images/site/food-grid.png');
    display:flex;
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    align-items:center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
}

.hero-content{
    position:relative;
    z-index:2;
    color:#fff;
    max-width:700px;
}

.hero-content h1{
    font-size:65px;
    line-height:1.1;
    margin-bottom:20px;
    font-weight:800;
}

.hero-content p{
    font-size:22px;
    margin-bottom:30px;
}

.hero-btn{
    background:#16a34a;
    color:#fff;
}

.hero-btn:hover{
    background:#15803d;
}

/* FEATURES */

.features{
    margin-top:-80px;
    position:relative;
    z-index:5;
    padding-bottom:70px;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.feature-card{
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.icon{
    font-size:50px;
    margin-bottom:20px;
}

.feature-card h3{
    color:#065f2c;
    margin-bottom:15px;
}

/* MEMBERSHIP */

.membership{
    padding:80px 0;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:42px;
    color:#065f2c;
}

.membership-grid{
    display:grid;
    grid-template-columns:1fr 1fr 2fr;
    gap:25px;
}

.product-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.product-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.product-card h3{
    padding:20px;
    text-align:center;
}

.table-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

table{
    width:100%;
    border-collapse:collapse;
}

thead{
    background:#065f2c;
    color:#fff;
}

th, td{
    padding:20px;
    text-align:center;
    border-bottom:1px solid #ddd;
}

tbody tr:hover{
    background:#f3f3f3;
}

/* FOOTER */

.footer{
    background:#065f2c;
    color:#fff;
    padding:70px 0 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-bottom:40px;
}

.footer h3{
    margin-bottom:15px;
}

.copyright{
    text-align:center;
    border-top:1px solid rgba(255,255,255,0.2);
    padding-top:20px;
    font-size:14px;
}

/* RESPONSIVE */

@media(max-width:992px){

    .membership-grid{
        grid-template-columns:1fr;
    }

    .feature-grid{
        grid-template-columns:1fr;
    }

    .footer-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .hero-content h1{
        font-size:48px;
    }

    .nav{
        flex-direction:column;
        gap:20px;
    }

    .nav-links{
        flex-direction:column;
        text-align:center;
        gap:15px;
    }

    .hero{
        min-height:80vh;
        text-align:center;
    }

    .hero-content h1{
        font-size:38px;
    }

    .hero-content p{
        font-size:18px;
    }

    .section-title h2{
        font-size:32px;
    }

}

@media(max-width:768px){
    

}

@media(max-width:480px){

    .hero-content h1{
        font-size:30px;
    }

    .hero-content p{
        font-size:16px;
    }

    th, td{
        padding:12px;
        font-size:14px;
    }

}