
body{
margin:0;
font-family:Poppins, sans-serif;
background:#111;
color:white;
}

.header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 60px;
background:black;
}

.logo img{
height:50px;
}

nav a{
margin:0 15px;
text-decoration:none;
color:white;
}

nav a:hover{
color:gold;
}

.hero{
height:90vh;
background:linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)),
url('https://images.unsplash.com/photo-1498804103079-a6351b050096');
background-size:cover;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
}

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

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

.btn{
background:gold;
padding:12px 25px;
color:black;
text-decoration:none;
font-weight:600;
}

.section{
padding:80px 60px;
text-align:center;
}

.dark{
background:#1c1c1c;
}

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

.menu-card{
background:#222;
padding:30px;
border-radius:10px;
}

.menu-card h3{
color:gold;
}

.gallery{
display:flex;
gap:20px;
justify-content:center;
flex-wrap:wrap;
}

.gallery img{
width:320px;
border-radius:10px;
}

.reservation-form{
display:flex;
flex-direction:column;
gap:15px;
max-width:400px;
margin:auto;
}

.reservation-form input{
padding:12px;
border:none;
border-radius:5px;
}

.reservation-form button{
padding:12px;
background:gold;
border:none;
font-weight:600;
cursor:pointer;
}

footer{
background:black;
text-align:center;
padding:25px;
}
