:root {
  --brand-red: #d62828;
  --brand-red-dark: #a31d1d;
  --brand-orange: #f4a259;
  --dark: #1c1410;
  --cream: #fff8ef;
  --text: #2b1f18;
  --muted: #6b5c50;
  --radius: 14px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Helvetica, Arial, sans-serif;
  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: Georgia, 'Times New Roman', serif;
}

/* 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 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
}

.logo span { color: var(--brand-orange); }

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: #f1e6d8;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--brand-orange); }

/* Order button - consistent everywhere */
.btn-order {
  background: var(--brand-red);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(214, 40, 40, 0.45);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}

.btn-order:hover {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(214, 40, 40, 0.55);
}

.btn-order-lg {
  padding: 18px 42px;
  font-size: 1.15rem;
}

.btn-secondary {
  display: inline-block;
  color: #fff;
  border: 2px solid #fff;
  padding: 16px 40px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.btn-secondary:hover {
  background: #fff;
  color: var(--dark);
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('../images/photo-01.jpg') center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,12,8,0.55) 0%, rgba(20,12,8,0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 720px;
  padding: 0 24px;
}

.hero-content h1 {
  font-size: 3.4rem;
  margin-bottom: 16px;
  text-shadow: 0 3px 12px rgba(0,0,0,0.4);
}

.hero-tagline {
  font-size: 1.25rem;
  margin-bottom: 32px;
  color: #f1e6d8;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-rating {
  color: var(--brand-orange);
  font-size: 1.1rem;
}

.hero-rating span {
  color: #f1e6d8;
  font-size: 0.95rem;
  margin-left: 8px;
}

/* About */
.about {
  padding: 90px 0;
  background: #fff;
}

.about-inner { max-width: 780px; margin: 0 auto; text-align: center; }

.about h2 {
  font-size: 2.2rem;
  margin-bottom: 24px;
  color: var(--brand-red-dark);
}

.about-text p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Menu */
.menu {
  padding: 90px 0;
  background: var(--cream);
}

.menu h2 {
  text-align: center;
  font-size: 2.2rem;
  color: var(--brand-red-dark);
  margin-bottom: 10px;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  margin-bottom: 50px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.menu-category h3 {
  color: var(--brand-red);
  font-size: 1.4rem;
  margin-bottom: 18px;
  border-bottom: 2px solid var(--brand-orange);
  padding-bottom: 8px;
}

.menu-category ul { list-style: none; }

.menu-category li {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.menu-category li span {
  font-weight: 700;
  font-size: 1.05rem;
}

.menu-category li em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.9rem;
}

.menu-note {
  text-align: center;
  margin-top: 40px;
  color: var(--muted);
}

.menu-note a { color: var(--brand-red); font-weight: 600; text-decoration: none; }

/* Gallery */
.gallery {
  padding: 90px 0;
  background: #fff;
}

.gallery h2 {
  text-align: center;
  font-size: 2.2rem;
  color: var(--brand-red-dark);
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.25s ease;
}

.gallery-grid img:hover { transform: scale(1.04); }

/* Reviews */
.reviews {
  padding: 90px 0;
  background: var(--dark);
  color: #fff;
}

.reviews h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: var(--brand-orange);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  background: #2a1f18;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid #3d2f26;
}

.stars { color: var(--brand-orange); margin-bottom: 12px; letter-spacing: 2px; }

.review-card p {
  font-size: 0.95rem;
  color: #e6d9cc;
  margin-bottom: 16px;
}

.review-author {
  font-weight: 700;
  color: var(--brand-orange);
  font-size: 0.9rem;
}

/* Location */
.location {
  padding: 90px 0;
  background: #fff;
}

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

.location-info h2 {
  font-size: 2.2rem;
  color: var(--brand-red-dark);
  margin-bottom: 20px;
}

.location-info .address { font-size: 1.1rem; margin-bottom: 6px; }

.location-info .phone { margin-bottom: 24px; }

.location-info .phone a {
  color: var(--brand-red);
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
}

.hours-table { margin-bottom: 30px; border-collapse: collapse; }

.hours-table td {
  padding: 6px 0;
  font-size: 0.95rem;
}

.hours-table td:first-child {
  font-weight: 600;
  padding-right: 24px;
}

.location-map iframe {
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* Footer */
.footer {
  background: var(--dark);
  color: #f1e6d8;
  padding: 50px 0 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand .logo { font-size: 1.4rem; margin-bottom: 8px; display: block; }

.footer-brand p { margin-bottom: 4px; font-size: 0.9rem; }

.footer-brand a { color: #f1e6d8; text-decoration: none; }

.footer-bottom {
  text-align: center;
  padding: 18px 0;
  border-top: 1px solid #3d2f26;
  font-size: 0.85rem;
  color: #a8998a;
}

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-backdrop[hidden] { display: none; }

.modal {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  max-width: 420px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal h2 {
  color: var(--brand-red-dark);
  margin-bottom: 16px;
}

.modal p { font-size: 1.05rem; }

.modal p a {
  color: var(--brand-red);
  font-weight: 700;
  text-decoration: none;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--muted);
  line-height: 1;
}

.modal-close:hover { color: var(--brand-red); }

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

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero-content h1 { font-size: 2.4rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; text-align: center; }
  .navbar-inner { padding: 12px 16px; }
  .btn-order { padding: 12px 22px; font-size: 0.9rem; }
}
