:root {
  --brand-red: #d62828;
  --brand-red-dark: #a91f1f;
  --brand-orange: #f4a261;
  --brand-green: #2a6f4b;
  --dark-text: #2b1d1d;
  --cream: #fff8f0;
  --off-white: #fdf6ec;
  --shadow: 0 10px 30px rgba(0,0,0,0.15);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  color: var(--dark-text);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.2;
}

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

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

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

/* ---------- Order Online Button (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;
  box-shadow: 0 6px 16px rgba(214, 40, 40, 0.4);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  letter-spacing: 0.3px;
}

.btn-order:hover, .btn-order:focus-visible {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(214, 40, 40, 0.5);
}

.btn-order--nav { padding: 10px 24px; font-size: 0.95rem; }
.btn-order--hero { padding: 16px 40px; font-size: 1.1rem; }

.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 50px;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 600;
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); }

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 16px;
}

.brand {
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--brand-red);
}

.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-weight: 600;
  color: var(--dark-text);
  position: relative;
}
.nav-links a:hover { color: var(--brand-red); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 24px;
  height: 3px;
  background: var(--dark-text);
  border-radius: 2px;
}

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

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 60px 24px;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--brand-orange);
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.15rem;
  margin-bottom: 32px;
  color: #f2e9e0;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.stars { color: var(--brand-orange); font-size: 1.1rem; letter-spacing: 2px; }

/* ---------- About ---------- */
.about { padding: 90px 0; background: var(--off-white); }

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

.about h2 { font-size: 2.2rem; color: var(--brand-red); margin-bottom: 20px; }
.about-text p { margin-bottom: 16px; }

.about-image img {
  border-radius: 16px;
  box-shadow: var(--shadow);
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 420px;
}

/* ---------- Menu ---------- */
.menu { padding: 90px 0; background: var(--cream); }
.menu h2 { font-size: 2.2rem; color: var(--brand-red); text-align: center; }
.section-sub {
  text-align: center;
  max-width: 620px;
  margin: 14px auto 50px;
  color: #6b5555;
}

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

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

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

.menu-category li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed #e0d3c3;
}

.price { color: var(--brand-red); font-weight: 700; }

.menu-note {
  text-align: center;
  margin-top: 40px;
  color: #6b5555;
  font-size: 0.95rem;
}
.menu-note a { color: var(--brand-red); font-weight: 600; }

/* ---------- Gallery ---------- */
.gallery { padding: 90px 0; background: var(--off-white); }
.gallery h2 { font-size: 2.2rem; color: var(--brand-red); text-align: center; margin-bottom: 40px; }

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

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* ---------- Reviews ---------- */
.reviews { padding: 90px 0; background: var(--cream); }
.reviews h2 { font-size: 2.2rem; color: var(--brand-red); text-align: center; margin-bottom: 40px; }

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

.review-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.review-card p { margin-top: 12px; font-style: italic; }
.review-author {
  margin-top: 16px;
  font-weight: 700;
  font-style: normal;
  color: var(--brand-green);
}

/* ---------- Location ---------- */
.location { padding: 90px 0; background: var(--off-white); }

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

.location-info h2 { font-size: 2.2rem; color: var(--brand-red); margin-bottom: 18px; }
.location-info address { font-style: normal; margin-bottom: 10px; font-size: 1.05rem; }
.phone-link { color: var(--brand-red); font-weight: 700; font-size: 1.1rem; }

.hours-table {
  width: 100%;
  margin: 24px 0 28px;
  border-collapse: collapse;
}
.hours-table th, .hours-table td {
  text-align: left;
  padding: 8px 0;
  border-bottom: 1px solid #e0d3c3;
  font-weight: 400;
}
.hours-table th { font-weight: 600; }
.hours-table .closed { color: var(--brand-red); font-weight: 700; }

.location-map {
  min-height: 340px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.location-map iframe { width: 100%; height: 100%; min-height: 340px; }

/* ---------- Footer ---------- */
.footer { background: #2b1414; color: #f2e9e0; padding: 50px 0 20px; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 24px;
}
.footer .brand { color: var(--brand-orange); font-size: 1.3rem; }
.footer p { margin-top: 6px; color: #d9c7c7; }
.footer a:hover { color: var(--brand-orange); }
.footer-copy {
  text-align: center;
  font-size: 0.85rem;
  color: #a98f8f;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 18px;
}

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

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

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

.modal h2 { color: var(--brand-red); font-size: 1.5rem; margin-bottom: 16px; }
.modal p { margin-bottom: 10px; }

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: #999;
}
.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: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 2.2rem; }
}

@media (max-width: 700px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: center;
    gap: 0;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .nav-links.open { max-height: 320px; }
  .nav-links a { padding: 14px 0; width: 100%; text-align: center; border-top: 1px solid #f0e5e5; }
  .hamburger { display: flex; }
  .btn-order--nav { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
