
body{
margin:0;
font-family:Arial;
background:#f4f1ea;
color:#333;
}

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px;
background:#0f3d2e;
color:white;
}

nav a{
margin:10px;
text-decoration:none;
color:white;
font-weight:bold;
}

.hero{
height:90vh;
background:url("images/hero.jpg");
background-size:cover;
background-position:center;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
color:white;
text-align:center;
}

.hero h2{
font-size:48px;
}

.btn{
background:#c7a17a;
padding:12px 25px;
color:white;
text-decoration:none;
margin-top:20px;
border-radius:5px;
}

.menu{
padding:50px;
text-align:center;
}

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

.item{
background:white;
padding:20px;
border-radius:10px;
box-shadow:0 5px 10px rgba(0,0,0,0.1);
}

.item img{
width:100%;
border-radius:10px;
}

.about{
padding:50px;
background:#e8dfd6;
text-align:center;
}

.contact{
padding:50px;
text-align:center;
}

footer{
background:#0f3d2e;
color:white;
text-align:center;
padding:20px;
}
