body{
margin:0;
font-family:Arial;
line-height:1.6;
color:#222;
}

.container{
max-width:1100px;
margin:auto;
padding:20px;
}

.nav-wrap{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
height:60px;
}

nav a{
margin-left:20px;
text-decoration:none;
color:#111;
font-weight:bold;
}

.hero{
position:relative;
}

.hero img{
width:100%;
height:450px;
object-fit:cover;
}

.hero-text{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
color:white;
background:rgba(0,0,0,0.5);
padding:20px;
text-align:center;
}

.btn{
display:inline-block;
margin-top:10px;
padding:10px 20px;
background:#c59d5f;
color:white;
text-decoration:none;
}

.content{
max-width:1000px;
margin:auto;
padding:60px 20px;
}

.grey{
background:#f5f5f5;
}

.menu-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:10px;
}

.gallery img{
width:100%;
height:200px;
object-fit:cover;
}

form{
display:flex;
flex-direction:column;
gap:10px;
max-width:400px;
}

input, textarea{
padding:10px;
border:1px solid #ccc;
}

button{
padding:12px;
background:#111;
color:white;
border:none;
}

footer{
background:#111;
color:white;
text-align:center;
padding:30px;
}

.breadcrumb{

font-size:14px;

margin:20px auto;

max-width:1000px;

color:#666;

}

.breadcrumb a{

text-decoration:none;

color:#999;

}