*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
background:#faf8f4;
color:#333;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

header{
position:fixed;
top:0;
left:0;
width:100%;
background:white;
box-shadow:0 2px 10px rgba(0,0,0,.08);
z-index:999;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 0;
}

.logo{
height:70px;
}

nav{
display:flex;
gap:35px;
}

nav a{
text-decoration:none;
color:#5a3a20;
font-weight:500;
transition:.3s;
}

nav a:hover{
color:#b8860b;
}

.hero{

height:100vh;

background:url("https://images.unsplash.com/photo-1579871494447-9811cf80d66c?auto=format&fit=crop&w=1600&q=80") center/cover;

display:flex;

justify-content:center;

align-items:center;

position:relative;

}

.overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,.45);
}

.hero-content{
position:relative;
text-align:center;
color:white;
padding:20px;
}

.hero h1{
font-size:60px;
margin-bottom:20px;
}

.hero p{
font-size:20px;
margin-bottom:40px;
}

.btn{
display:inline-block;
padding:16px 38px;
background:#8B5A2B;
color:white;
text-decoration:none;
border-radius:50px;
transition:.3s;
}

.btn:hover{
background:#b8860b;
}

section{
padding:90px 0;
}

.about,
.menu,
.contact{
text-align:center;
}

.about h2,
.menu h2,
.gallery h2,
.contact h2{
font-size:40px;
margin-bottom:25px;
color:#5a3a20;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
margin-top:50px;
}

.card{
background:white;
padding:40px;
border-radius:15px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:.3s;
}

.card:hover{
transform:translateY(-10px);
}

.gallery{
background:#fff;
text-align:center;
}

.gallery-grid{
margin-top:40px;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
padding:0 8%;
}

.gallery-grid div{
height:250px;
background:#ddd;
border-radius:15px;
}

footer{
background:#222;
color:white;
text-align:center;
padding:30px;
}

@media(max-width:768px){

.hero h1{
font-size:38px;
}

.hero p{
font-size:18px;
}

nav{
display:none;
}

.gallery-grid{
grid-template-columns:repeat(2,1fr);
}

}