:root {
  --brand-red: #c0311a;
  --brand-red-dark: #9c2513;
  --brand-orange: #e2711d;
  --dark: #241b16;
  --cream: #fdf6ec;
  --tan: #f2e3cf;
  --text: #2c2118;
  --text-light: #6b5c4d;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Trebuchet MS', 'Segoe UI', sans-serif;
  line-height: 1.2;
}

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

/* Order Button */
.btn-order {
  display: inline-block;
  background: var(--brand-red);
  color: #fff;
  font-weight: bold;
  font-family: 'Trebuchet MS', 'Segoe UI', sans-serif;
  font-size: 1rem;
  padding: 14px 32px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(192, 49, 26, 0.45);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  letter-spacing: 0.3px;
}
.btn-order:hover {
  background: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(192, 49, 26, 0.55);
}
.btn-order-nav { font-size: 0.9rem; padding: 10px 24px; }
.btn-order-hero { font-size: 1.1rem; padding: 16px 40px; }

.btn-secondary {
  display: inline-block;
  color: #fff;
  border: 2px solid #fff;
  padding: 14px 32px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  font-family: 'Trebuchet MS', 'Segoe UI', sans-serif;
  transition: background 0.15s ease, color 0.15s ease;
}
.btn-secondary:hover { background: #fff; color: var(--dark); }

/* 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 {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  text-decoration: none;
  font-family: 'Trebuchet MS', 'Segoe UI', sans-serif;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  gap: 24px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: #f2e3cf;
  text-decoration: none;
  font-family: 'Trebuchet MS', 'Segoe UI', sans-serif;
  font-size: 0.95rem;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--brand-orange); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('../images/photo-01.jpg') center/cover no-repeat;
  color: #fff;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36,27,22,0.55) 0%, rgba(36,27,22,0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 0 24px;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.hero-tagline {
  font-size: 1.25rem;
  margin-bottom: 32px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-rating {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}
.stars { color: #ffb400; letter-spacing: 2px; }

/* Sections */
.section { padding: 80px 0; }
.section h2 {
  font-size: 2.2rem;
  text-align: center;
  color: var(--brand-red-dark);
  margin-bottom: 12px;
}
.section-sub {
  text-align: center;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 40px;
}

.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 40px;
}
.about-text p { margin-bottom: 16px; }
.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.menu { background: var(--tan); }
.menu-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 20px;
}
.menu-category h3 {
  color: var(--brand-red-dark);
  font-size: 1.3rem;
  border-bottom: 2px solid var(--brand-orange);
  padding-bottom: 8px;
  margin-bottom: 16px;
}
.menu-list { list-style: none; }
.menu-list li {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(36,27,22,0.15);
}
.item-name { font-weight: bold; font-family: 'Trebuchet MS', sans-serif; }
.item-desc { color: var(--text-light); font-size: 0.92rem; }

.gallery { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  transition: transform 0.2s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }

.reviews { background: var(--dark); color: #fff; }
.reviews h2 { color: #fff; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.review-card {
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.1);
}
.review-card .stars { display: block; margin-bottom: 10px; }
.review-card p { font-size: 0.95rem; margin-bottom: 14px; color: #f2e3cf; }
.review-author { font-weight: bold; color: var(--brand-orange); font-family: 'Trebuchet MS', sans-serif; }

.location { background: var(--tan); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 20px;
}
.hours-list { list-style: none; margin-bottom: 24px; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(36,27,22,0.15);
}
.location-info h3 { color: var(--brand-red-dark); margin-bottom: 12px; }
.location-info p { margin-bottom: 12px; }
.phone-link { color: var(--brand-red-dark); font-weight: bold; text-decoration: none; font-size: 1.1rem; }
.location-map { min-height: 340px; border-radius: 12px; overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.location-map iframe { width: 100%; height: 100%; min-height: 340px; }

/* Footer */
.footer { background: var(--dark); color: #f2e3cf; padding: 48px 0 0; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 32px;
}
.footer-brand h3 { color: #fff; margin-bottom: 8px; }
.footer-brand a { color: var(--brand-orange); text-decoration: none; }
.footer-bottom {
  text-align: center;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
  color: #a8988a;
}

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(36,27,22,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  background: #fff;
  border-radius: 14px;
  max-width: 420px;
  width: 100%;
  padding: 36px 32px;
  position: relative;
  text-align: center;
  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: bold; text-decoration: none; }
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-light);
}
.modal-close:hover { color: var(--brand-red); }

/* Responsive */
@media (max-width: 900px) {
  .about-grid, .location-grid { grid-template-columns: 1fr; }
  .menu-categories { grid-template-columns: 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;
    align-items: center;
    padding: 20px 0;
    gap: 16px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .btn-order-nav { display: none; }
  .hero h1 { font-size: 2.1rem; }
  .hero-tagline { font-size: 1.05rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 56px 0; }
}
