body{
margin:0;
font-family:Arial;
background:#f4f4f4
}

header{
background:#8b0000;
color:white;
padding:15px 40px;
display:flex;
justify-content:space-between;
align-items:center
}

nav a{
color:white;
margin-left:20px;
text-decoration:none;
font-size:18px
}

.hero{
height:420px;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
background:url(https://images.unsplash.com/photo-1504674900247-0877df9cc836);
background-size:cover;
color:white
}

.hero h2{
font-size:42px
}

.hero button{
padding:12px 25px;
border:none;
background:#8b0000;
color:white;
font-size:18px;
cursor:pointer;
margin-top:15px
}

.about{
padding:70px;
text-align:center;
background:white
}

.menu{
padding:70px;
text-align:center
}

.items{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:25px;
margin-top:30px
}

.card{
background:white;
width:200px;
border-radius:10px;
overflow:hidden;
box-shadow:0 0 10px rgba(0,0,0,0.1);
text-align:center
}

.card img{
width:100%;
height:150px;
object-fit:cover
}

.special{
padding:70px;
background:white;
text-align:center
}

.special-container{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
margin-top:30px
}

.special-card{
background:#eee;
padding:25px;
width:220px;
border-radius:10px
}

.gallery{
padding:70px;
text-align:center
}

.gallery-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:15px;
margin-top:30px
}

.gallery-container img{
width:100%;
height:200px;
object-fit:cover;
border-radius:10px
}

.contact{
padding:70px;
text-align:center;
background:white
}

footer{
background:#8b0000;
color:white;
text-align:center;
padding:15px
}