/* -------------------------------------------------------
   Kabul International Food Market & Restaurant
   ------------------------------------------------------- */

:root {
  --color-bg: #fbf7f1;
  --color-ink: #241a14;
  --color-ink-soft: #5a4a3f;
  --color-maroon: #5c1a1a;
  --color-maroon-dark: #3d0f0f;
  --color-gold: #c99a3f;
  --color-gold-light: #e9c878;
  --color-cta: #d62828;
  --color-cta-dark: #a81f1f;
  --color-card: #ffffff;
  --color-border: #e6dcca;
  --shadow-soft: 0 10px 30px rgba(36, 26, 20, 0.12);
  --radius: 14px;
  --radius-pill: 999px;
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--color-ink);
  background: var(--color-bg);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.container.narrow { max-width: 780px; }

/* ---------- Order Online button (consistent everywhere) ---------- */
.btn-order {
  display: inline-block;
  background: var(--color-cta);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(214, 40, 40, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-order:hover,
.btn-order:focus-visible {
  background: var(--color-cta-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(214, 40, 40, 0.5);
}
.btn-order-lg {
  padding: 18px 42px;
  font-size: 1.15rem;
}
.btn-secondary {
  display: inline-block;
  padding: 16px 34px;
  border-radius: var(--radius-pill);
  border: 2px solid #fff;
  color: #fff;
  font-weight: 700;
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); }

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(36, 20, 16, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 3px solid var(--color-gold);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  color: #fff;
  font-weight: 800;
  font-size: 1.25rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}
.brand-accent { color: var(--color-gold-light); }
.nav-links {
  display: flex;
  gap: 22px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: #f1e7d8;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover { border-bottom-color: var(--color-gold); }

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

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--color-maroon-dark), var(--color-maroon)),
              url("../images/photo-3.jpg") center 35% / cover no-repeat;
  background-blend-mode: multiply;
  color: #fff;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,10,8,0.55) 0%, rgba(20,10,8,0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 100px 28px;
  text-align: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  color: var(--color-gold-light);
  font-weight: 700;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.15;
  margin: 0 0 20px;
  font-weight: 800;
}
.hero-sub {
  font-size: 1.1rem;
  color: #f1e7dc;
  margin-bottom: 34px;
}
.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Stats strip ---------- */
.strip {
  background: var(--color-gold);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 22px 24px;
}
.strip-item {
  text-align: center;
  color: var(--color-maroon-dark);
}
.strip-item strong { display: block; font-size: 1.3rem; font-weight: 800; }
.strip-item span { font-size: 0.85rem; font-weight: 600; opacity: 0.85; }

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section-alt { background: #f3ead9; }
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  text-align: center;
  margin: 0 0 12px;
  color: var(--color-maroon);
}
.section-sub {
  text-align: center;
  color: var(--color-ink-soft);
  max-width: 620px;
  margin: 0 auto 44px;
}
.about-body p { font-size: 1.05rem; margin-bottom: 20px; }

/* ---------- Menu ---------- */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}
.menu-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 26px 28px;
  box-shadow: var(--shadow-soft);
}
.menu-card-wide { grid-column: 1 / -1; }
.menu-card h3 {
  margin: 0 0 14px;
  color: var(--color-maroon);
  font-size: 1.2rem;
  border-bottom: 2px solid var(--color-gold);
  padding-bottom: 8px;
}
.menu-card-sub { margin-top: 22px; }
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--color-border);
  font-size: 0.98rem;
}
.menu-list li:last-child { border-bottom: none; }
.price { font-weight: 700; color: var(--color-cta-dark); white-space: nowrap; }
.menu-note { margin-top: 14px; color: var(--color-ink-soft); font-style: italic; }
.menu-disclaimer {
  text-align: center;
  color: var(--color-ink-soft);
  font-size: 0.85rem;
  margin-top: 36px;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-soft);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--color-card);
  border-radius: var(--radius);
  padding: 26px;
  margin: 0;
  box-shadow: var(--shadow-soft);
  border-top: 4px solid var(--color-gold);
}
.stars { color: var(--color-gold); font-size: 1.1rem; margin-bottom: 10px; }
.review-card p { margin: 0 0 16px; color: var(--color-ink); }
.review-card cite { font-weight: 700; color: var(--color-maroon); font-style: normal; }

/* ---------- Visit / Hours & Map ---------- */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}
.visit-info h3 {
  color: var(--color-maroon);
  margin: 24px 0 10px;
}
.visit-info h3:first-child { margin-top: 0; }
.hours-list { list-style: none; margin: 0 0 10px; padding: 0; max-width: 360px; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dashed var(--color-border);
}
.visit-info a { color: var(--color-cta-dark); font-weight: 700; }
.visit-info .btn-order { margin-top: 24px; }
.visit-map {
  min-height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--color-maroon-dark);
  color: #f1e7dc;
  padding: 46px 0 20px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.footer-name { font-weight: 800; font-size: 1.1rem; margin: 0 0 6px; }
.footer-brand p { margin: 4px 0; }
.footer-brand a { color: var(--color-gold-light); }
.footer-legal {
  text-align: center;
  font-size: 0.8rem;
  color: #b7a595;
  margin: 30px 0 0;
}

/* ---------- Modal ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 10, 8, 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: 440px;
  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-maroon);
  margin-top: 0;
}
.modal-phone { font-size: 1.2rem; font-weight: 700; margin-top: 20px; }
.modal-phone a { color: var(--color-cta-dark); }
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--color-ink-soft);
}
.modal-close:hover { color: var(--color-ink); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .visit-grid { grid-template-columns: 1fr; }
  .visit-map { min-height: 300px; }
}

@media (max-width: 760px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(36, 20, 16, 0.98);
    flex-direction: column;
    padding: 18px 24px;
    gap: 14px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-inner .btn-order { display: none; }
  .hero { min-height: 560px; }
  .hero-content { padding: 70px 20px; }
}
