/* =============================================
   AL QASR BUFFET RESTAURANT — CUSTOM STYLES
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --royal-blue: #1a3a6b;
  --royal-blue-dark: #0f2347;
  --royal-blue-light: #2756a3;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --gold-pale: #f5e6b8;
  --cream: #faf7f0;
  --dark: #111827;
  --text-muted: #6b7280;
  --orange: #e05c1a;
  --text: #1a1a2e;
  --white: #ffffff;
  --shadow-soft: 0 8px 40px rgba(26,58,107,0.10);
  --shadow-gold: 0 4px 20px rgba(201,168,76,0.18);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

.playfair-display { font-family: 'Playfair Display', serif; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
}

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

a { text-decoration: none; transition: var(--transition); }

/* ── Utility ── */
.text-gold { color: var(--gold); }
.text-gold-light { color: var(--gold-light); }
.text-blue { color: var(--royal-blue); }
.text-custom { color :rgba(255,255,255,0.5) }
.bg-blue { background-color: var(--royal-blue); }
.bg-blue-dark { background-color: var(--royal-blue-dark); }
.bg-cream { background-color: var(--cream); }
.section-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--royal-blue-dark);
  line-height: 1.2;
}
.divider-gold {
  width: 54px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  display: block;
  margin: 1rem auto;
}
.divider-gold.left { margin-left: 0; }

/* ── NAVBAR ── */
#mainNav {
  background: transparent;
  transition: var(--transition);
  padding: 1.1rem 0;
  z-index: 1050;
}
#mainNav.scrolled {
  background: var(--royal-blue-dark) !important;
  padding: 0.6rem 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.navbar-brand .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.navbar-brand .brand-sub {
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.navbar-brand .brand-crown {
  font-size: 1.6rem;
  color: var(--gold);
  line-height: 1;
}
.nav-link {
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88) !important;
  padding: 0.4rem 0.9rem !important;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 1.5px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-link:hover::after,
.nav-link.active::after { left: 0.9rem; right: 0.9rem; }
.nav-link:hover { color: var(--gold-light) !important; }
.btn-nav-cta {
  background: var(--gold);
  color: var(--royal-blue-dark) !important;
  border-radius: 2px;
  font-weight: 600;
  padding: 0.45rem 1.2rem !important;
  font-size: 0.78rem !important;
}
.btn-nav-cta:hover {
  background: var(--gold-light);
  color: var(--royal-blue-dark) !important;
}
.btn-nav-cta::after { display: none; }
.navbar-toggler {
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.3rem 0.6rem;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
/* Offcanvas */
.offcanvas {
  background: var(--royal-blue-dark);
  z-index: 99999;
}
.offcanvas-header .btn-close { filter: invert(1); }
.offcanvas .nav-link {
  font-size: 1rem;
  padding: 0.75rem 1.5rem !important;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.offcanvas .nav-link::after { display: none; }

/* ── HERO ── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('/lib/images/al-qasr.jpg') center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(10,22,50,0.88) 0%,
    rgba(15,35,71,0.72) 50%,
    rgba(10,22,50,0.55) 100%
  );
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.5);
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(2.6rem, 7vw, 5rem);
  color: var(--white);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1rem;
}
.hero-title span { color: var(--gold); }
.hero-tagline {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
}
.btn-gold {
  background: var(--gold);
  color: var(--royal-blue-dark);
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border: none;
  border-radius: 2px;
  transition: var(--transition);
  display: inline-block;
}
.btn-gold:hover {
  background: var(--gold-light);
  color: var(--royal-blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-outline-gold {
  background: transparent;
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.82rem 2.2rem;
  border: 1.5px solid rgba(201,168,76,0.6);
  border-radius: 2px;
  transition: var(--transition);
  display: inline-block;
}
.btn-outline-gold:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1.5px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.8), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; height: 40px; }
  50% { opacity: 0.4; height: 28px; }
}

/* ── ABOUT STRIP ── */
#about-strip {
  background: var(--royal-blue-dark);
  padding: 4rem 0;
}
.about-strip-text {
  color: rgba(255,255,255,0.82);
  font-size: 1.08rem;
  font-weight: 300;
  line-height: 1.8;
}
.about-stat {
  text-align: center;
  border-left: 1px solid rgba(201,168,76,0.25);
  padding: 0 1.5rem;
}
.about-stat:first-child { border-left: none; }
.about-stat .number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
}
.about-stat .label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.3rem;
}

/* ── SIGNATURE DISHES ── */
#dishes {
  padding: 6rem 0;
  background: var(--cream);
}
.dish-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  height: 100%;
}
.dish-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26,58,107,0.15);
}
.dish-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.dish-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.dish-card:hover .dish-img-wrap img {
  transform: scale(1.06);
}
.dish-category-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--royal-blue-dark);
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
}
.dish-body {
  padding: 1.3rem 1.5rem 1.5rem;
}
.dish-name {
  font-size: 1.15rem;
  color: var(--royal-blue-dark);
  margin-bottom: 0.4rem;
}
.dish-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.dish-gold-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
  margin-right: 0.4rem;
  vertical-align: middle;
}

/* ── WHY CHOOSE US ── */
#why {
  padding: 6rem 0;
  background: var(--white);
}
.why-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 4px;
  transition: var(--transition);
  height: 100%;
  background: var(--white);
}
.why-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}
.why-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: var(--gold);
  box-shadow: 0 8px 24px rgba(26,58,107,0.18);
}
.why-title {
  font-size: 1.05rem;
  color: var(--royal-blue-dark);
  margin-bottom: 0.5rem;
}
.why-text {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── MENU PREVIEW ── */
#menu {
  padding: 6rem 0;
  background: var(--royal-blue-dark);
  position: relative;
  overflow: hidden;
}
#menu::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.menu-category-title {
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.25);
}
.menu-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.menu-item:last-child { border-bottom: none; }
.menu-item-dot {
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.menu-item-name {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.78);
  font-family: 'Jost', sans-serif;
}
.menu-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
  margin-left: auto;
  flex-shrink: 0;
  margin-right: 20px;
}

/* ── TESTIMONIALS ── */
#testimonials {
  padding: 6rem 0;
  background: var(--cream);
}
.testimonial-card {
  background: var(--white);
  border-radius: 4px;
  padding: 2.2rem 2rem;
  box-shadow: var(--shadow-soft);
  border-top: 3px solid var(--gold);
  height: 100%;
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26,58,107,0.12);
}
.stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
.testimonial-text {
  font-size: 0.92rem;
  color: #374151;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.4rem;
}
.reviewer-name {
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--royal-blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.reviewer-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── GALLERY ── */
#gallery {
  padding: 6rem 0;
  background: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
  min-height: 200px;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,35,71,0.4);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
/* Lightbox */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox-overlay.active { display: flex; }
.lightbox-img { max-height: 85vh; max-width: 90vw; border-radius: 3px; }
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: var(--transition);
  background: none;
  border: none;
}
.lightbox-close:hover { opacity: 1; color: var(--gold); }

/* ── LOCATION ── */
#location {
  padding: 6rem 0;
  background: var(--cream);
}
.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.6rem;
}
.location-icon {
  width: 42px; height: 42px;
  background: var(--royal-blue-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.location-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.location-value {
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.5;
}
.map-frame {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 3px solid var(--white);
}
.hours-table { width: 100%; }
.hours-table td {
  padding: 0.4rem 0;
  font-size: 0.85rem;
  color: #374151;
}
.hours-table td:first-child {
  font-weight: 600;
  color: var(--royal-blue);
  width: 110px;
}
.hours-divider {
  border: none;
  border-top: 1px solid rgba(201,168,76,0.2);
  margin: 0.8rem 0;
}

/* ── CTA BANNER ── */
#cta-banner {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--royal-blue-dark) 0%, var(--royal-blue) 100%);
  position: relative;
  overflow: hidden;
}
#cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1200&q=60') center/cover no-repeat;
  opacity: 0.07;
}
.cta-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  margin-bottom: 2rem;
}

/* ── CONTACT ── */
#contact {
  padding: 6rem 0;
  background: var(--white);
}
.contact-form .form-control,
.contact-form .form-select {
  border: 1.5px solid #e5e7eb;
  border-radius: 3px;
  padding: 0.8rem 1rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  color: var(--dark);
  transition: var(--transition);
  background: #fafafa;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
  background: var(--white);
}
.contact-form label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--royal-blue);
  margin-bottom: 0.4rem;
}
.btn-submit {
  background: var(--royal-blue-dark);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.9rem 2.4rem;
  border: none;
  border-radius: 2px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-submit::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--gold);
  transition: width 0.35s ease;
}
.btn-submit:hover {
  background: var(--royal-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,58,107,0.22);
}
.btn-submit:hover::after { width: 100%; }
.form-success {
  display: none;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--gold);
  border-radius: 3px;
  padding: 1rem 1.5rem;
  color: var(--royal-blue-dark);
  font-size: 0.88rem;
}
.contact-info-card {
  background: var(--royal-blue-dark);
  color: var(--white);
  border-radius: 4px;
  padding: 2.5rem;
  height: 100%;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.8rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-info-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.contact-info-icon {
  width: 40px; height: 40px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.contact-info-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.contact-info-value {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}
.contact-info-value a {
  color: rgba(255,255,255,0.8);
}
.contact-info-value a:hover { color: var(--gold); }

/* ── FOOTER ── */
footer {
  background: #080f1e;
  color: rgba(255,255,255,0.55);
  padding: 4rem 0 2rem;
}
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.footer-brand-sub {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-heading {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 3rem;
  padding-top: 1.5rem;
  font-size: 0.78rem;
}
.social-links { display: flex; gap: 0.8rem; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}
.halal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 3px;
  padding: 0.4rem 0.9rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

/* ── FLOATING BUTTONS ── */
.float-btns {
  position: fixed;
  right: 1.5rem;
  bottom: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-items: flex-end;
}
.float-btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.22);
  transition: var(--transition);
  text-decoration: none;
}
.float-btn:hover { transform: scale(1.12); }
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-phone { background: var(--royal-blue); color: #fff; display: none; }
.btn-top {
  background: var(--gold);
  color: var(--royal-blue-dark);
  width: 40px; height: 40px;
  font-size: 0.9rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.btn-top.show { opacity: 1; pointer-events: all; }

/* ── AOS overrides ── */
[data-aos] { transition-duration: 0.65s !important; }

/* ── MOBILE ── */
@media (max-width: 991px) {
  .btn-phone { display: flex; }
  .about-stat { border-left: none; border-top: 1px solid rgba(201,168,76,0.2); padding: 1rem 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; }
}
@media (max-width: 767px) {
  #hero { min-height: 100svh; }
  .hero-title { font-size: 2.3rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 5px; }
  section { padding: 4rem 0 !important; }
  #dishes, #why, #menu, #testimonials, #gallery, #location, #contact { padding: 4rem 0 !important; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 1.9rem; }
}
/* Page section display */
.page-section { display: none; }
.page-section.active { display: block; }
#home-page { display: block; }

/* HERO BACKGROUND LAYER ONLY (Bootstrap can't do this cleanly) */
.page-hero__bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1400&q=80') center/cover no-repeat;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,22,50,0.85), rgba(10,22,50,0.7));
}

/* HERO */
.contact-hero {
  height: 40vh;
  min-height: 280px;
}

.contact-hero__bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1400&q=80')
    center/cover no-repeat;
}

.contact-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,22,50,0.8);
}

.contact-hero__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

/* CONTACT INFO TITLE */
.contact-info-title {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.contact-info-subtitle {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

/* SOCIAL BORDER */
.contact-social-border {
  border-color: rgba(255,255,255,0.1) !important;
}

/* FORM */
.contact-form-title {
  color: var(--royal-blue-dark);
}

.honeypot {
  display: none;
}

.contact-textarea {
  resize: vertical;
}

/* MAP */
.map-iframe {
  border: 0;
  display: block;
}

  .menu-hero {
  height: 40vh;
  min-height: 280px;
}

.menu-hero__bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1555126634-323283e090fa?w=1400&q=80') center/cover no-repeat;
}

.menu-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 50, 0.78);
}

.menu-hero-content {
  z-index: 2;
}

.menu-hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.menu-hero-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  margin-top: 0.5rem;
  letter-spacing: 0.08em;
}

.menu-section {
  background: var(--royal-blue-dark);
}

.menu-note-section {
  background: var(--cream);
}

.menu-note-text {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.menu-halal-text {
  color: var(--royal-blue);
}

/* HERO */
.gallery-hero {
  height: 40vh;
  min-height: 280px;
}

.gallery-hero__bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?w=1400&q=80')
    center/cover no-repeat;
}

.gallery-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 50, 0.75);
}

.gallery-hero-content {
  z-index: 2;
}

.gallery-hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

/* SECTION */
.gallery-section {
  padding: 6rem 0;
}

.gallery-section-title {
  color: var(--royal-blue-dark);
}


    /* ── PRICING ── */
    .pricing-band {
      background: var(--royal-blue); color: #fff;
      display: flex; flex-wrap: wrap; justify-content: center;
      border-bottom: 3px solid var(--gold);
    }
    .price-block { padding: 22px 40px; text-align: center; border-right: 1px solid rgba(255,255,255,0.1); flex: 1; min-width: 160px; }
    .price-block:last-child { border-right: none; }
    .price-label { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
    .price-amount { font-size: 2rem; color: #fff; }
    /* Mobile */
@media (max-width: 768px) {
  .price-block {
    padding: 14px 10px;
  }

  .price-label {
    font-size: 0.55rem;
    letter-spacing: 1px;
  }

  .price-amount {
    font-size: 1.2rem;
  }
}
 
    /* ── HOURS ── */
    .hours-band {
      background: var(--gold); color: #fff;
      display: flex; flex-wrap: wrap; justify-content: center;
      gap: 30px; padding: 14px 20px; text-align: center; font-size: 0.85rem;
    }
 
    /* ── SECTION HEADER ── */
    .section-hero { text-align: center; padding: 44px 20px 20px; }
    .section-eyebrow {
      display: inline-block; font-size: 0.68rem; letter-spacing: 3px;
      text-transform: uppercase; color: var(--orange);
      border-bottom: 1px solid var(--orange); padding-bottom: 4px; margin-bottom: 12px;
    }
    .section-hero h2 { font-size: clamp(1.5rem, 4vw, 2.4rem); color: var(--royal-blue); letter-spacing: 3px; }
    .section-hero p { color: var(--text-text-muted); font-size: 0.88rem; margin-top: 8px; }
 
    .gold-divider { display: flex; align-items: center; gap: 16px; max-width: 600px; margin: 0 auto 10px; padding: 0 20px; }
    .gold-divider span { flex: 1; height: 1px; background: var(--gold); opacity: .35; }
 
    /* ── MENU WRAP ── */
    .menu-wrap { max-width: 1020px; margin: 0 auto; padding: 10px 20px 50px; }
 
    /* ── CATEGORY ── */
    .cat { margin-bottom: 42px; }
    .cat-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
    .cat-line { flex: 1; height: 1px; background: var(--gold); opacity: .35; }
    .cat-title { font-size: 1.82rem; letter-spacing: 3px; text-transform: uppercase; color: var(--royal-blue); white-space: nowrap; }
 
    /* ── ITEMS GRID ── */
    .items-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 8px 28px; }
    .mi { display: flex; justify-content: space-between; align-items: baseline; padding: 10px 0; border-bottom: 1px dashed rgba(0,0,0,0.1); }
    .mi-left { flex: 1; }
    .mi-name { font-size: 1.28rem; font-weight: 600; color: var(--text); }
    .mi-desc { font-size: 0.74rem; color: var(--text-muted); margin-top: 2px; line-height: 1.4; }
    .mi-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; margin-left: 12px; }
    .mi-tag { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 1px; padding: 2px 7px; border-radius: 3px; font-weight: 700; }
    .tag-veg { background: #e6f4ea; color: #2e7d32; }
    .tag-sig { background: #fff3e0; color: #e65100; }
    .tag-chef { background: #fce4ec; color: #c62828; }
    .mi-price { font-size: 0.9rem; color: var(--royal-blue); font-weight: 600; white-space: nowrap; }
 
    /* ── SPECIAL MENU BAND ── */
    .special-band {
      background: var(--royal-blue); color: #fff;
      text-align: center; padding: 50px 20px 30px;
      position: relative; overflow: hidden;
    }
    .special-band::before {
      content: ''; position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .special-band .eyebrow { font-size: 0.68rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); border-bottom: 1px solid var(--gold); display: inline-block; padding-bottom: 4px; margin-bottom: 14px; position: relative; }
    .special-band h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); letter-spacing: 3px; color: #fff; position: relative; }
    .special-band p { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin-top: 10px; position: relative; }
 
    /* special section uses orange accents */
    .special-wrap { background: #f5f0e8; }
    .special-inner { max-width: 1020px; margin: 0 auto; padding: 36px 20px 56px; }
    .scat { margin-bottom: 40px; }
    .scat-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
    .scat-line { flex: 1; height: 1px; background: var(--orange); opacity: .3; }
    .scat-title { font-size: 1.82rem; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); white-space: nowrap; }
 
    /* ── TC NOTE ── */
    .tc-note { background: var(--royal-blue); color: rgba(255,255,255,0.75); border-radius: 10px; padding: 20px 26px; font-size: 0.84rem; line-height: 1.8; }
    .tc-note strong { color: var(--gold); }
    .tc-note ul { list-style: disc; padding-left: 20px; margin-top: 8px; }
    .tc-note li { margin-bottom: 4px; }
    .tc-note .red { color: #ff7043; font-weight: 700; }

 
    @media (max-width: 600px) {
      .price-block { min-width: 33%; }
      .items-grid { grid-template-columns: 1fr; }
      .scat-title { font-size: 0.82rem; }
      .cat-title { font-size: 0.82rem; }
    }

    .scat-note {
  text-align: center;
  margin: 10px 0 20px;
  font-size: 14px;
  font-style: italic;
  color: #666;
    }

  @media (max-width: 380px) {
          .brand-container {
        padding-left: 4px !important;
        padding-right: 4px !important;
        }
    }