:root {
  --brand-red: #c1272d;
  --brand-red-dark: #9e1f24;
  --dark: #241a15;
  --cream: #fdf6ec;
  --tan: #f2e6d3;
  --text: #2b2018;
  --font: 'Georgia', 'Times New Roman', serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { font-family: var(--font); }

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

a { color: inherit; text-decoration: none; }

/* Order Button - striking, consistent everywhere */
.btn-order {
  display: inline-block;
  background: var(--brand-red);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 18px rgba(193, 39, 45, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn-order:hover {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(193, 39, 45, 0.5);
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.logo {
  font-family: var(--font);
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
}
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  color: #f2e6d3;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--brand-red); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: 0.2s;
}

/* Hero */
.hero {
  position: relative;
  height: 88vh;
  min-height: 480px;
  background: linear-gradient(135deg, #3a2a1c 0%, #6b4423 50%, #3a2a1c 100%), url('../images/photo-01.jpg');
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 12, 8, 0.45);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 720px;
  padding: 0 24px;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 32px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.btn-hero {
  font-size: 1.15rem;
  padding: 16px 42px;
}

/* About */
.about { padding: 80px 0; background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-text h2 { font-size: 2.2rem; margin-bottom: 20px; color: var(--brand-red-dark); }
.about-text p { margin-bottom: 16px; }
.about-image img { border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }

/* Menu */
.menu { padding: 80px 0; background: var(--tan); }
.menu h2 { text-align: center; font-size: 2.2rem; color: var(--brand-red-dark); }
.menu-sub { text-align: center; margin: 10px 0 40px; color: #6b5c4a; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.menu-category h3 {
  font-size: 1.3rem;
  color: var(--dark);
  border-bottom: 2px solid var(--brand-red);
  padding-bottom: 8px;
  margin-bottom: 14px;
}
.menu-category ul { list-style: none; }
.menu-category li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed #d8c5a8;
}
.price { color: var(--brand-red-dark); font-weight: 700; }

/* Gallery */
.gallery { padding: 80px 0; background: var(--cream); }
.gallery h2 { text-align: center; font-size: 2.2rem; margin-bottom: 40px; color: var(--brand-red-dark); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.2s;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* Reviews */
.reviews { padding: 80px 0; background: var(--dark); color: #fdf6ec; }
.reviews h2 { text-align: center; font-size: 2.2rem; color: #fff; }
.reviews-sub { text-align: center; margin: 10px 0 40px; color: #d8c5a8; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.review-card {
  background: #33261c;
  padding: 26px;
  border-radius: 10px;
  border-left: 4px solid var(--brand-red);
}
.stars { color: #e8b84b; margin-bottom: 10px; font-size: 1.1rem; }
.review-author { margin-top: 12px; font-weight: 700; color: #f2e6d3; }

/* Location */
.location { padding: 80px 0; background: var(--tan); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}
.location-info h2 { font-size: 2.2rem; color: var(--brand-red-dark); margin-bottom: 16px; }
.address { font-size: 1.1rem; margin-bottom: 8px; }
.phone { margin-bottom: 20px; font-size: 1.1rem; font-weight: 700; }
.phone a { color: var(--brand-red-dark); }
.hours-table { width: 100%; margin-bottom: 28px; border-collapse: collapse; }
.hours-table td { padding: 6px 0; border-bottom: 1px solid #d8c5a8; }
.hours-table td:first-child { font-weight: 700; }
.hours-table td:last-child { text-align: right; }
.location-map { min-height: 340px; border-radius: 10px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.location-map iframe { width: 100%; height: 100%; min-height: 340px; }

/* Footer */
.footer { background: var(--dark); color: #f2e6d3; padding: 40px 0; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-name { font-family: var(--font); font-size: 1.4rem; font-weight: bold; color: #fff; margin-bottom: 6px; }
.footer a:hover { color: var(--brand-red); }

/* Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 200;
  align-items: center;
  justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal-overlay[hidden] { display: none; }
.modal {
  background: #fff;
  border-radius: 12px;
  padding: 36px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.modal h3 { color: var(--brand-red-dark); margin-bottom: 14px; font-size: 1.5rem; }
.modal p { font-size: 1.05rem; }
.modal p a { color: var(--brand-red); font-weight: 700; }
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #999;
  line-height: 1;
}
.modal-close:hover { color: var(--brand-red); }

/* Responsive */
@media (max-width: 900px) {
  .about-grid, .location-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 16px 24px;
    gap: 16px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .navbar-inner .btn-order { display: none; }
  .hamburger { display: flex; }
  .hero-content h1 { font-size: 2.1rem; }
  .hero-content p { font-size: 1rem; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
}
