*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
background:#0b0b0b;
color:#fff;
font-family:'Poppins', sans-serif;
}

header{
display:flex;
justify-content:space-between;
padding:20px 80px;
background:#140808;
position:fixed;
width:100%;
z-index:1000;
}

.logo{
font-family:'Playfair Display', serif;
font-size:28px;
color:#d4af37;
letter-spacing:3px;
}

nav a{
color:white;
margin-left:30px;
text-decoration:none;
transition:0.3s;
}

nav a:hover{
color:#d4af37;
}

.hero{
display:flex;
justify-content:space-between;
align-items:center;
padding:150px 100px;
background:linear-gradient(to right,#140808,#1f0d0d);
}

.hero-text h1{
font-family:'Playfair Display', serif;
font-size:55px;
color:#d4af37;
margin-bottom:20px;
}

.btn{
display:inline-block;
padding:12px 30px;
background:#d4af37;
color:black;
border-radius:30px;
text-decoration:none;
font-weight:bold;
}

.hero-img img{
width:420px;
border-radius:50%;
box-shadow:0 0 50px #d4af37;
animation:float 4s infinite ease-in-out;
}

@keyframes float{
0%{transform:translateY(0);}
50%{transform:translateY(-20px);}
100%{transform:translateY(0);}
}


.hero-sub{
font-size:20px;
color:#f5c46b;
margin-bottom:15px;
}

.hero-desc{
color:#ddd;
max-width:500px;
line-height:1.7;
margin-bottom:25px;
}


.featured{
padding:100px;
text-align:center;
}

.featured h2{
color:#d4af37;
font-family:'Playfair Display', serif;
margin-bottom:50px;
}

.featured-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:40px;
}

.card{
background:#1c0f0f;
padding:20px;
border-radius:20px;
transition:0.4s;
}

.card{
    background:#1c0f0f;
    padding:20px;
    border-radius:20px;
    transition:0.4s;
    overflow:hidden;  /* important for image zoom effect */
}

.card img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:15px;
    margin-bottom:15px;
    transition:0.5s;
}

.card:hover img{
    transform:scale(1.05);
}

.card:hover{
transform:translateY(-10px);
box-shadow:0 0 25px #d4af37;
}

.menu{
padding:100px;
background:#140808;
}

.menu h2{
text-align:center;
color:#d4af37;
font-family:'Playfair Display', serif;
margin-bottom:50px;
}

.menu-category{
margin-bottom:50px;
}

.menu-category h3{
color:#d4af37;
margin-bottom:20px;
border-bottom:1px solid #d4af37;
padding-bottom:10px;
}

.menu-category ul li{
display:flex;
justify-content:space-between;
padding:8px 0;
border-bottom:1px dotted #444;
}



/* ===== MORE DISHES SECTION ===== */

.more-dishes{
padding:120px 20px;
background:linear-gradient(135deg,#140808,#2b0f16);
text-align:center;
}

.more-container{
max-width:800px;
margin:auto;
}

.more-dishes h2{
font-family:'Playfair Display', serif;
font-size:38px;
color:#f5c46b;
margin-bottom:20px;
}

.more-dishes p{
color:#ddd;
line-height:1.8;
margin-bottom:40px;
}

.contact-btn{
display:inline-block;
padding:16px 35px;
background:#f5c46b;
color:#000;
border-radius:40px;
text-decoration:none;
font-weight:600;
transition:0.3s;
box-shadow:0 10px 25px rgba(0,0,0,0.4);
}

.contact-btn:hover{
background:white;
transform:translateY(-3px);
}


/* ===== MODERN DELIVERY SECTION ===== */

.delivery-modern{
padding:120px 20px;
background:linear-gradient(135deg,#1a0a0f,#2b0f16,#140808);
text-align:center;
}

.delivery-container h2{
font-family:'Playfair Display', serif;
font-size:42px;
color:#f5c46b;
margin-bottom:20px;
}

.delivery-sub{
color:#ddd;
margin-bottom:50px;
font-size:18px;
}

.delivery-sub span{
color:#f5c46b;
font-weight:bold;
}

.delivery-card{
max-width:900px;
margin:auto;
background:rgba(255,255,255,0.05);
backdrop-filter:blur(15px);
padding:40px;
border-radius:25px;
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
box-shadow:0 15px 40px rgba(0,0,0,0.5);
}

.delivery-info{
flex:1;
text-align:left;
min-width:250px;
}

.radius-badge{
display:inline-block;
background:#f5c46b;
color:#000;
padding:8px 18px;
border-radius:30px;
font-weight:600;
margin-bottom:20px;
}

.delivery-btn{
padding:14px 28px;
background:#f5c46b;
border:none;
border-radius:30px;
font-weight:bold;
cursor:pointer;
transition:0.3s;
}

.delivery-btn:hover{
background:white;
transform:scale(1.05);
}

.delivery-result-box{
flex:1;
min-width:250px;
text-align:center;
margin-top:20px;
}

#delivery-distance{
margin-bottom:15px;
font-size:18px;
color:#ccc;
}

.status-badge{
display:inline-block;
padding:10px 20px;
border-radius:30px;
font-weight:bold;
background:#444;
color:white;
transition:0.3s;
}

.contact{
padding:100px;
text-align:center;
}

.whatsapp-float{
position:fixed;
bottom:25px;
right:25px;
background:#25D366;
color:white;
width:60px;
height:60px;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:30px;
box-shadow:0 8px 25px rgba(0,0,0,0.4);
z-index:1000;
transition:0.3s;
}

.whatsapp-float:hover{
transform:scale(1.1);
background:#1ebe5d;
}


footer{
background:black;
text-align:center;
padding:20px;
color:#aaa;
}