*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, sans-serif;
scroll-behavior:smooth;
}
body{
background:#f4f1ec;
color:#333;
}

/* NAVBAR */
header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 8%;
background:#2b1b12;
color:white;
position:sticky;
top:0;
z-index:1000;
}
header nav a{
color:white;
text-decoration:none;
margin:0 12px;
position:relative;
padding-bottom:5px;
}
header nav a::after{
content:"";
position:absolute;
left:0;
bottom:0;
width:0%;
height:2px;
background:#d97706;
transition:0.3s ease-in-out;
}
header nav a:hover::after{
width:100%;
}

/* HERO */
.hero{
display:flex;
align-items:center;
padding:80px 8%;
background:url('https://images.unsplash.com/photo-1561758033-d89a9ad46330') center/cover;
color:white;
min-height:90vh;
}
.hero-content{
background:rgba(0,0,0,0.6);
padding:35px;
border-radius:12px;
max-width:540px;
opacity:0;
transform:translateY(30px);
animation:fadeUp 1s ease forwards;
}
.hero h1{
font-size:44px;
margin-bottom:10px;
}
.buttons{
margin-top:15px;
}
.buttons button{
padding:10px 20px;
border:none;
margin-right:10px;
cursor:pointer;
border-radius:6px;
transition:0.3s;
}
.btn-primary{
background:#d97706;
color:white;
}
.btn-primary:hover{
background:#b86505;
transform:translateY(-2px);
}
.btn-secondary{
background:white;
color:#333;
}
.btn-secondary:hover{
background:#e5e5e5;
}

/* SECTIONS */
.section{
padding:70px 8%;
opacity:0;
transform:translateY(40px);
animation:fadeUp 1s ease forwards;
animation-delay:0.3s;
}
.title{
text-align:center;
margin-bottom:35px;
}

/* DISHES */
.dishes{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}
.card{
background:white;
padding:15px;
border-radius:12px;
text-align:center;
transition:0.3s;
}
.card:hover{
box-shadow:0 10px 20px rgba(0,0,0,0.15);
transform:translateY(-6px);
}
.card img{
width:100%;
border-radius:12px;
}
.rating{
margin-top:8px;
color:#d97706;
}

/* VIEW MENU BUTTON AFTER DISHES */
.menu-btn-wrapper{
text-align:center;
margin-top:30px;
}
.menu-btn{
padding:12px 28px;
border:none;
background:#2b1b12;
color:white;
border-radius:6px;
cursor:pointer;
transition:0.3s;
}
.menu-btn:hover{
background:#d97706;
}

/* ABOUT */
.about{
display:flex;
gap:30px;
align-items:center;
}
.about img{
width:45%;
border-radius:12px;
}

/* REVIEWS CAROUSEL */
.reviews{
background:#fff;
}
.carousel{
position:relative;
max-width:800px;
margin:auto;
overflow:hidden;
}
.slide{
display:none;
padding:20px;
text-align:center;
}
.slide.active{
display:block;
}
.dots{
text-align:center;
margin-top:10px;
}
.dot{
height:10px;
width:10px;
margin:0 5px;
background:#ccc;
display:inline-block;
border-radius:50%;
cursor:pointer;
}
.dot.active{
background:#d97706;
}

/* RESERVATION FORM */
.reservation-form{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:15px;
max-width:900px;
margin:auto;
}
.reservation-form input, .reservation-form select{
padding:10px;
border-radius:6px;
border:1px solid #ccc;
transition:0.3s;
background:#fff8f2;
}
.reservation-form input:hover,
.reservation-form select:hover{
border-color:#d97706;
box-shadow:0 0 5px rgba(217,119,6,0.3);
}
.reserve-btn{
grid-column:1/-1;
padding:12px;
background:#d97706;
color:white;
border:none;
cursor:pointer;
border-radius:6px;
transition:0.3s;
}
.reserve-btn:hover{
transform:translateY(-5px);
}

/* FOOTER */
footer{
background:#2b1b12;
color:white;
padding:40px 8%;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
}
footer a{
color:white;
text-decoration:none;
display:block;
margin-top:8px;
}
footer a:hover{
color:#d97706;
}
.socials a{
display:inline-block;
margin-right:10px;
}
.copyright{
text-align:center;
margin-top:20px;
grid-column:1/-1;
}

/* ANIMATION */
@keyframes fadeUp{
to{
opacity:1;
transform:translateY(0);
}
}

/* LARGE SCREEN IMAGE CONTROL */
@media (min-width: 1024px) {
.hero{min-height:80vh;}
.card img{width:90%;margin:auto;display:block;}
.about img{width:35%;}
.dishes{max-width:1100px;margin:auto;}
.carousel{max-width:700px;}
.reservation-form{max-width:700px;}
}

@media (min-width: 1440px) {
.card img{width:80%;}
.about img{width:30%;}
}
