/* ---------- Base ---------- */
:root {
  --color-bg: #fffaf3;
  --color-text: #2c1810;
  --color-text-soft: #5a4438;
  --color-brand-dark: #7a1f1f;
  --color-brand: #a52a2a;
  --color-accent: #e8531f;
  --color-accent-dark: #c9410f;
  --color-gold: #f0a500;
  --color-card: #ffffff;
  --shadow: 0 8px 24px rgba(44, 24, 16, 0.12);
  --radius: 14px;
  font-size: 16px;
}

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

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

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

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

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

h2 {
  font-size: 2.1rem;
  color: var(--color-brand-dark);
  text-align: center;
  margin-bottom: 8px;
}

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

section { padding: 72px 0; }

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

/* ---------- Order Button (consistent everywhere) ---------- */
.btn-order {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.3px;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 6px 18px rgba(232, 83, 31, 0.45);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.btn-order:hover,
.btn-order:focus-visible {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(232, 83, 31, 0.55);
}

.btn-order--nav { padding: 10px 24px; font-size: 0.95rem; }
.btn-order--hero { font-size: 1.15rem; padding: 16px 40px; }
.btn-order--location { margin-top: 24px; }
.btn-order--modal { margin-top: 20px; }

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

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

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(44, 24, 16, 0.96);
  backdrop-filter: blur(4px);
}

.navbar {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 16px;
}

.brand {
  font-family: Georgia, serif;
  color: #fff;
  font-size: 1.4rem;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

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

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

.nav-links a {
  color: #f2e8dc;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.15s ease;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44,24,16,0.55) 0%, rgba(122,31,31,0.75) 60%, rgba(44,24,16,0.85) 100%);
}

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

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 18px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

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

.hero-cta-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

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

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-text h2 { text-align: left; }

.about-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ---------- Menu ---------- */
.menu { background: #fff3e2; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.menu-category {
  background: var(--color-card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--color-accent);
}

.menu-category h3 {
  color: var(--color-brand-dark);
  margin-bottom: 16px;
  font-size: 1.3rem;
}

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

.menu-category li {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  border-bottom: 1px solid #f0e2cf;
}

.menu-category li:last-child { border-bottom: none; }

.item-name { font-weight: 700; color: var(--color-text); }
.item-desc { font-size: 0.9rem; color: var(--color-text-soft); }

.menu-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.9rem;
  color: var(--color-text-soft);
  font-style: italic;
}

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

.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.gallery-generated {
  height: 240px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.gallery-generated--1 {
  background: repeating-linear-gradient(45deg, #e8531f 0 22px, #c9410f 22px 44px);
}

.gallery-generated--2 {
  background: repeating-linear-gradient(135deg, #f0a500 0 22px, #a52a2a 22px 44px);
}

/* ---------- Reviews ---------- */
.reviews { background: #fff3e2; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--color-card);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

.review-card p {
  margin: 12px 0;
  color: var(--color-text-soft);
  font-style: italic;
}

.review-card cite {
  font-weight: 700;
  color: var(--color-brand-dark);
}

/* ---------- Location ---------- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.location-info h2 { text-align: left; }

address { font-style: normal; margin: 12px 0; color: var(--color-text-soft); }

.phone-link {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-accent);
  text-decoration: none;
}

.hours-table {
  margin: 20px 0;
  width: 100%;
  border-collapse: collapse;
}

.hours-table th, .hours-table td {
  text-align: left;
  padding: 8px 0;
  border-bottom: 1px solid #f0e2cf;
}

.hours-table th { color: var(--color-text); font-weight: 600; width: 40%; }
.hours-table td { color: var(--color-text-soft); }

.location-map iframe {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-text);
  color: #f2e8dc;
  padding: 48px 0 20px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}

.footer-brand {
  font-family: Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.site-footer a { color: var(--color-gold); text-decoration: none; }

.footer-copy {
  text-align: center;
  font-size: 0.85rem;
  color: #b8a998;
}

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

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

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

.modal h2 {
  color: var(--color-brand-dark);
  margin-bottom: 14px;
  font-size: 1.6rem;
}

.modal p { color: var(--color-text-soft); }

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

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--color-text-soft);
  cursor: pointer;
}

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

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .about-grid, .location-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .hero h1 { font-size: 2.1rem; }
}

@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-cta-row { flex-direction: column; align-items: center; }
  .navbar { flex-wrap: wrap; }
}
