/* ===== Base ===== */
:root {
  --brand-red: #d62828;
  --brand-orange: #f4a300;
  --brand-dark: #1c1611;
  --brand-green: #2e5339;
  --cream: #fdf6ec;
  --text-dark: #241a12;
  --text-light: #fdf6ec;
  --shadow: 0 8px 24px rgba(0,0,0,0.18);
  --radius: 14px;
}

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

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
  font-family: 'Poppins', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
}

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

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

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 80px 0; }

.section-title {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 12px;
  color: var(--brand-dark);
}

.section-subtitle {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 48px;
  color: #6b5c4d;
  font-size: 1.05rem;
}

.accent-bar {
  width: 70px;
  height: 5px;
  background: linear-gradient(90deg, var(--brand-red), var(--brand-orange));
  margin: 0 auto 28px;
  border-radius: 6px;
}

/* ===== Order Online Button (consistent everywhere) ===== */
.btn-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--brand-red), #b21f1f);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.3px;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(214,40,40,0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-transform: uppercase;
}

.btn-order:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 26px rgba(214,40,40,0.55);
  background: linear-gradient(135deg, #e63946, var(--brand-red));
}

.btn-order.small {
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(28, 22, 17, 0.92);
  backdrop-filter: blur(6px);
  transition: background 0.3s ease, padding 0.3s ease;
}

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

.nav-logo {
  color: var(--text-light);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

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

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

.nav-links a:not(.btn-order) {
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a:not(.btn-order)::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0%;
  height: 2px;
  background: var(--brand-orange);
  transition: width 0.25s ease;
}

.nav-links a:not(.btn-order):hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--text-light);
  border-radius: 3px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  background: linear-gradient(180deg, rgba(20,14,10,0.55), rgba(20,14,10,0.75)), url('../images/photo-01.jpg') center/cover no-repeat;
}

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

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

.hero h1 {
  font-size: 3.4rem;
  margin-bottom: 20px;
  text-shadow: 0 4px 18px rgba(0,0,0,0.4);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 34px;
  color: #f2e9dc;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}

.hero .btn-order {
  font-size: 1.05rem;
  padding: 18px 42px;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-light);
  font-size: 1.8rem;
  opacity: 0.75;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* ===== About ===== */
.about {
  background: var(--cream);
}

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

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.about-images img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 220px;
  object-fit: cover;
  width: 100%;
}

.about-images img:first-child {
  grid-column: 1 / -1;
  height: 280px;
}

.about-text p {
  margin-bottom: 18px;
  color: #4a3e30;
  font-size: 1.02rem;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff3e0;
  border: 1px solid #f4a30055;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  color: var(--brand-red);
  margin-bottom: 20px;
  font-size: 0.9rem;
}

/* ===== Menu ===== */
.menu {
  background: var(--brand-dark);
  color: var(--text-light);
  position: relative;
}

.menu .section-title, .menu .section-subtitle { color: var(--text-light); }
.menu .section-subtitle { color: #cbbfae; }

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

.menu-category h3 {
  color: var(--brand-orange);
  font-size: 1.3rem;
  margin-bottom: 18px;
  border-bottom: 2px solid rgba(244,163,0,0.35);
  padding-bottom: 10px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.menu-item-name {
  font-weight: 600;
  color: #fff;
}

.menu-item-desc {
  font-size: 0.88rem;
  color: #b9ac99;
  margin-top: 3px;
}

.menu-item-price {
  font-weight: 700;
  color: var(--brand-orange);
  white-space: nowrap;
}

.menu-note {
  text-align: center;
  margin-top: 40px;
  color: #cbbfae;
  font-size: 0.9rem;
}

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 12px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.35s ease, filter 0.35s ease;
  cursor: pointer;
}

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

.gallery-grid .wide { grid-column: span 2; }
.gallery-grid .tall { grid-row: span 2; }

/* ===== Reviews ===== */
.reviews {
  background: linear-gradient(135deg, #fff3e0, var(--cream));
}

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

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

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

.review-text {
  font-size: 0.98rem;
  color: #4a3e30;
  margin-bottom: 18px;
  font-style: italic;
}

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

.review-summary {
  text-align: center;
  margin-top: 40px;
  font-weight: 600;
  color: var(--brand-dark);
}

.review-summary span {
  color: var(--brand-red);
  font-size: 1.3rem;
}

/* ===== Hours & Location ===== */
.location {
  background: var(--brand-dark);
  color: var(--text-light);
}

.location .section-title { color: var(--text-light); }

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

.info-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px;
}

.info-card h3 {
  color: var(--brand-orange);
  margin-bottom: 18px;
  font-size: 1.2rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.95rem;
}

.hours-row:last-child { border-bottom: none; }

.info-contact {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-contact a {
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-contact a:hover { color: var(--brand-orange); }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 340px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
}

/* ===== Footer ===== */
.footer {
  background: #12100d;
  color: #cbbfae;
  padding: 56px 0 28px;
  text-align: center;
}

.footer-logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

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

.footer p { margin-bottom: 22px; color: #a89b89; }

.footer .btn-order { margin-bottom: 28px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  font-size: 0.85rem;
  color: #766a5b;
}

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

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

.modal {
  background: var(--cream);
  border-radius: var(--radius);
  max-width: 420px;
  width: 100%;
  padding: 36px 32px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  text-align: center;
  animation: modalIn 0.25s ease;
}

@keyframes modalIn {
  from { transform: translateY(16px) scale(0.97); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: #8a7a66;
}

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

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

.modal p {
  color: #4a3e30;
  margin-bottom: 24px;
}

.modal .tel-link {
  display: inline-block;
  font-weight: 700;
  color: var(--brand-red);
  font-size: 1.2rem;
  margin-bottom: 22px;
}

/* ===== 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); grid-auto-rows: 160px; }
  .hero h1 { font-size: 2.4rem; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(28,22,17,0.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 18px;
    display: none;
  }
  .nav-links.open { display: flex; }
  section { padding: 60px 0; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  .section-title { font-size: 1.9rem; }
}
