:root{
  --primary:#2F4F36;
  --secondary:#c29a4b;
  --bg:#F3F6EF;
  --text:#2b2b2b;
  --muted:#6b665c;
}

*,
*::before,
*::after{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:"Georgia", serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.5;
}

img{
  max-width:100%;
  display:block;
}

.container{
  max-width:1100px;
  margin:auto;
  padding:0 20px;
}



/* ================= GENERAL SECTIONS ================= */

.section{
  padding:70px 0;
}

.section--alt{
  background:#ece6da;
}

/* ================= REVIEWS BLOCK ================= */

.reviews-block{
  background:#F3F6EF;
  padding:80px 0 70px;
  position:relative;
}

.reviews-block::after{
  content:"";
  display:block;
  width:120px;
  height:3px;
  background:var(--secondary);
  margin:50px auto 0;
  border-radius:999px;
  opacity:.75;
}

.review-slider{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
  margin-top:40px;
}

.review-container{
  width:100%;
  max-width:720px;
}

.review-container img{
  width:100%;
  border-radius:18px;
  box-shadow:0 15px 40px rgba(0,0,0,.18);
}

.review-btn{
  background:var(--secondary);
  color:#1a140f;
  border:none;
  width:48px;
  height:48px;
  border-radius:50%;
  font-size:22px;
  font-weight:bold;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.3s ease;
  flex-shrink:0;
}

.review-btn:hover{
  background:#d8b56a;
  transform:translateY(-2px);
}



/* ================= GALLERY ================= */

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:40px;
}

.gallery-grid img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:14px;
  transition:.4s;
  cursor:pointer;
  box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.gallery-grid img:hover{
  transform:scale(1.03);
}
.food-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:30px;
}

.food-card{
  text-align:center;
}

.food-card img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:10px;
  display:block;
  box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.food-card p{
  margin-top:8px;
  font-weight:600;
  font-size:15px;
}

.page-title{
  text-align:center;
  margin-bottom:12px;
}

.page-intro{
  text-align:center;
  max-width:700px;
  margin:0 auto;
  color:#6b665c;
}

.section-title{
  text-align:center;
  margin-top:40px;
  margin-bottom:20px;
}

@media (max-width:900px){
  .food-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:600px){
  .food-grid{
    grid-template-columns:1fr;
  }
}

/* ================= LOCATION ================= */

.location-section{
  padding:80px 0;
  background:#ece6da;
}

.location-grid{
  display:grid;
  grid-template-columns:1fr 1.3fr;
  gap:50px;
  align-items:center;
}

.location-info h2{
  margin-bottom:20px;
}

.location-info p{
  margin-bottom:20px;
  line-height:1.7;
  color:#444;
}

.location-map{
  height:420px;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 20px 40px rgba(0,0,0,.15);
}

/* ================= RESERVATIONS ================= */

.reservation-section{
  padding:80px 0;
  background:#f3efe6;
}

.reservation-section h2{
  text-align:center;
  margin-bottom:20px;
  font-size:32px;
}

.reservation-section form{
  max-width:600px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:20px;
  background:#fff;
  padding:40px;
  border-radius:16px;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.reservation-section input,
.reservation-section textarea{
  padding:14px;
  border-radius:8px;
  border:1px solid #ddd;
  font-size:15px;
  font-family:inherit;
  transition:all .3s ease;
  width:100%;
}

.reservation-section textarea{
  resize:none;
  min-height:120px;
}

.reservation-section button{
  background:var(--secondary);
  color:#1a140f;
  border:none;
  padding:14px;
  border-radius:30px;
  font-weight:bold;
  cursor:pointer;
  transition:.3s ease;
}

.reservation-section button:hover{
  background:#d9b56d;
}

/* ================= FOOTER ================= */

.footer{
  background:#2F4F36;
  color:#fff;
  padding:50px 0;
}

.footer__inner{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:24px;
}

.footer h4{
  margin-bottom:10px;
  color:var(--secondary);
}

.footer-social{
  display:flex;
  gap:14px;
  margin-top:10px;
}

.footer-social a{
  color:#fff;
  text-decoration:none;
}

.footer-bottom{
  text-align:center;
  margin-top:30px;
  font-size:14px;
  color:#cfc8bb;
}

/* ================= BUTTON HELPERS ================= */

.btn{
  padding:10px 20px;
  border-radius:30px;
  text-decoration:none;
  font-weight:bold;
  display:inline-block;
  text-align:center;
}

.btn--primary{
  background:var(--secondary);
  color:#1a140f;
}

.btn--ghost{
  border:2px solid var(--secondary);
  color:var(--secondary);
  background:transparent;
}