```css
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#fafafa;
padding-top:90px;
}

/* NAVBAR */

/* NAVBAR */

nav{
position:fixed;
top:0;
left:0;
width:100%;
background:white;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
z-index:1000;

display:flex;
align-items:center;
justify-content:space-between;

padding:10px 5%;
}

.logo{
height:55px;
object-fit:contain;
}

nav ul{
display:flex;
align-items:center;
gap:25px;
list-style:none;
}

nav ul li{
list-style:none;
}

nav a{
text-decoration:none;
color:#333;
font-weight:500;
font-size:16px;
}

/* HERO */

.hero{
display:flex;
align-items:center;
justify-content:space-between;
padding:100px 80px;
gap:60px;
}

.hero-text{
max-width:520px;
}

.hero-text h1{
font-size:60px;
color:#6b8e6e;
margin-bottom:20px;
}

.hero-desc{
font-size:20px;
margin-bottom:10px;
}

.hero-ar{
color:#777;
}

.hero-img{
width:600px;
height:460px;
object-fit:cover;
border-radius:20px;
}

/* MENU FILTER */

.menu-buttons{
display:flex;
justify-content:center;
gap:15px;
margin:40px 0;
flex-wrap:wrap;
}

.menu-buttons button{
padding:10px 24px;
border:none;
background:#e5e5e5;
border-radius:25px;
cursor:pointer;
transition:0.3s;
font-weight:500;
}

.menu-buttons button.active{
background:#6b8e6e;
color:white;
}

.menu-buttons button:hover{
background:#e889a0;
color:white;
}

/* MENU GRID */

.menu-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:35px;
padding:40px 60px;
}

.item{
background:white;
padding:20px;
border-radius:18px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.3s;
}

.item:hover{
transform:translateY(-8px);
}

.item img{
width:100%;
aspect-ratio: 4/3;
object-fit: cover;
border-radius: 12px;
margin-bottom: 15px;
}
.item p{
color:#e889a0;
font-weight:600;
}

/* PACKAGES */

#packages{
padding:80px 10%;
background:#f9f9f9;
text-align:center;
}

.packages-title{
font-size:36px;
margin-bottom:40px;
}

.packages-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.pack{
background:white;
padding:30px;
border-radius:15px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
transition:0.3s;
}

.pack:hover{
transform:translateY(-8px);
}

.pack-img{
width:120px;
height:160px;
object-fit:cover;
margin:auto;
display:block;
margin-bottom:15px;
}

.price{
font-size:22px;
font-weight:bold;
margin:10px 0;
}

.time{
display:block;
color:#777;
margin-bottom:15px;
}

.pack-btn{
display:inline-block;
background:#016323;
color:white;
padding:12px 25px;
border-radius:8px;
text-decoration:none;
font-weight:bold;
}

.pack-btn:hover{
background:#014c1b;
}

.popular{
border:3px solid #ff7b9c;
}

/* DELIVERY */

#delivery{
padding:100px 80px;
text-align:center;
background:#fafafa;
}

.delivery-title{
font-size:40px;
color:#6b8e6e;
margin-bottom:40px;
}

.delivery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
gap:30px;
max-width:800px;
margin:auto;
}

.delivery-card{
background:white;
padding:25px;
border-radius:18px;
text-decoration:none;
color:black;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
transition:0.3s;
display:flex;
flex-direction:column;
align-items:center;
}

.delivery-card img{
width:70px;
margin-bottom:10px;
}

.delivery-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

/* LOCATION */

#location{
padding:80px 20px;
text-align:center;
}

.map{
max-width:900px;
margin:auto;
border-radius:20px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

/* CONTACT */

#contact{
padding:100px 80px;
text-align:center;
background:#f8f8f8;
}

.contact-title{
font-size:38px;
color:#6b8e6e;
margin-bottom:50px;
}

.contact-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:30px;
max-width:800px;
margin:auto;
}

.contact-card{
background:white;
padding:30px;
border-radius:18px;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
transition:0.3s;
}

.contact-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.icon{
font-size:32px;
margin-bottom:10px;
}

.contact-card a{
text-decoration:none;
color:#e889a0;
font-weight:500;
}

/* MOBILE */

@media (max-width:768px){

nav{
flex-direction:column;
padding:10px 20px;
}

nav ul{
margin-top:10px;
gap:15px;
flex-wrap:wrap;
justify-content:center;
}

.logo{
height:45px;
}

.hero{
flex-direction:column;
text-align:center;
padding:60px 20px;
}

.hero-img{
width:95%;
height:260px;
}

/* 2 CARDS MENU */

.menu-grid{
grid-template-columns:1fr 1fr;
gap:15px;
padding:20px;
}

.item img{
height:140px;
}

/* 2 CARDS PACKAGES */

.packages-grid{
grid-template-columns:1fr 1fr;
}

.delivery-grid{
grid-template-columns:1fr 1fr;
}

.contact-grid{
grid-template-columns:1fr;
}
@media (max-width:768px){
    nav{
flex-direction:column;
align-items:center;
padding:10px 20px;
}

nav ul{
margin-top:8px;
flex-wrap:wrap;
justify-content:center;
gap:15px;
}

.logo{
height:45px;
}

#packages{
padding:60px 20px;
}

.packages-grid{
grid-template-columns:1fr 1fr;
gap:15px;
}

.pack{
padding:20px;
}

.pack-img{
width:90px;
height:120px;
}

}
}

