
*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Arial,sans-serif;
background:#f7f7f7;
color:#222;
}

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:25px 50px;
background:white;
box-shadow:0 2px 10px rgba(0,0,0,0.08);
position:sticky;
top:0;
z-index:100;
}

.logo{
font-size:30px;
font-weight:bold;
}

.logo span{
color:#c0392b;
}

nav a{
margin-left:25px;
text-decoration:none;
color:#333;
font-weight:bold;
}

.hero{
height:85vh;
background:url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?q=80&w=1800&auto=format&fit=crop') center/cover;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
position:relative;
}

.hero::before{
content:'';
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.55);
}

.hero-content{
position:relative;
color:white;
z-index:2;
}

.hero h1{
font-size:60px;
margin-bottom:20px;
}

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

.btn{
background:#d4af37;
padding:15px 35px;
border-radius:8px;
text-decoration:none;
color:black;
font-weight:bold;
}

.categories{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
padding:60px 50px;
}

.category{
background:white;
padding:30px;
border-radius:15px;
text-align:center;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.menu-section{
padding:60px 50px;
}

.menu-section h2{
text-align:center;
font-size:40px;
margin-bottom:40px;
}

.menu-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.card{
background:white;
border-radius:18px;
overflow:hidden;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.card img{
width:100%;
height:220px;
object-fit:cover;
}

.card h3,.card p{
padding:10px 20px;
}

.card button{
margin:20px;
padding:12px 20px;
border:none;
background:#c0392b;
color:white;
border-radius:8px;
cursor:pointer;
}

.order-box{
background:#111;
color:white;
padding:70px 20px;
text-align:center;
}

.order-box form{
max-width:500px;
margin:auto;
display:flex;
flex-direction:column;
gap:15px;
}

.order-box input{
padding:15px;
border:none;
border-radius:8px;
}

.order-box button{
padding:15px;
background:#d4af37;
border:none;
border-radius:8px;
font-weight:bold;
cursor:pointer;
}

footer{
background:#000;
color:white;
text-align:center;
padding:25px;
}

@media(max-width:768px){
header{
flex-direction:column;
}

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

nav{
margin-top:15px;
}
}
