/* ════════════════════════════════════════════════════════════════
   RESTAURANT CHEFCHAOUEN — Main Stylesheet
   Design: Luxury Moroccan | Chefchaouen Blue Palette
   Fonts: Cormorant Garamond (EN display) | Amiri (AR display)
   ════════════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ──────────────────────────────────────────── */
:root {
  /* Chefchaouen Blue Palette */
  --blue-deepest:  #0d2137;
  --blue-deep:     #1a3a5c;
  --blue-mid:      #2563a8;
  --blue-bright:   #3b82c4;
  --blue-light:    #7ab3d9;
  --blue-pale:     #b8d4e8;
  --blue-ghost:    #e8f1f8;
  --blue-mist:     #f0f6fb;

  /* Gold Accents */
  --gold:          #c9a84c;
  --gold-light:    #e2c97a;
  --gold-dark:     #9a7830;
  --gold-muted:    rgba(201,168,76,0.15);

  /* Neutrals */
  --white:         #ffffff;
  --off-white:     #fafaf8;
  --cream:         #f5f0e8;
  --charcoal:      #1c1c1e;
  --text-dark:     #1a2535;
  --text-mid:      #4a5568;
  --text-light:    #718096;
  --border:        rgba(37,99,168,0.12);
  --border-gold:   rgba(201,168,76,0.3);

  /* Shadows */
  --shadow-sm:  0 2px 12px rgba(13,33,55,0.06);
  --shadow-md:  0 4px 24px rgba(13,33,55,0.10);
  --shadow-lg:  0 8px 48px rgba(13,33,55,0.14);
  --shadow-card:0 2px 20px rgba(37,99,168,0.08), 0 1px 4px rgba(13,33,55,0.06);

  /* Spacing */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  /* Transitions */
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast:     0.2s var(--ease);
  --t-mid:      0.35s var(--ease);
  --t-slow:     0.5s var(--ease);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--off-white);
  color: var(--text-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* English typography */
body.english {
  font-family: 'Montserrat', sans-serif;
}
body.english h1, body.english h2, body.english h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
}

/* Arabic typography */
body.arabic {
  font-family: 'Amiri', serif;
  letter-spacing: 0;
}
body.arabic h1, body.arabic h2, body.arabic h3 {
  font-family: 'Amiri', serif;
  font-weight: 700;
}

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

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--blue-ghost); }
::-webkit-scrollbar-thumb { background: var(--blue-mid); border-radius: 10px; }

::selection { background: var(--blue-mid); color: white; }

/* ── PRELOADER ──────────────────────────────────────────────── */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--blue-deepest);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-logo {
  font-family: 'Cormorant Garamond', 'Amiri', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--gold-light);
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease both;
}
.preloader-bar {
  width: 200px; height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px; overflow: hidden;
  margin: 0 auto;
}
.preloader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  animation: loadBar 1.8s ease forwards;
}
@keyframes loadBar { from { width: 0; } to { width: 100%; } }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
}

/* ── HEADER / NAV ───────────────────────────────────────────── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background var(--t-mid), box-shadow var(--t-mid), padding var(--t-mid);
  padding: 1.2rem 0;
}
#site-header.scrolled {
  background: rgba(10, 22, 42, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 32px rgba(0,0,0,0.25);
  padding: 0.75rem 0;
}
.nav-container {
  max-width: 1200px; margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
  display: flex; align-items: center; gap: 2rem;
}
.nav-logo {
  flex-shrink: 0;
  display: flex; align-items: center;
}
.logo-img { height: 48px; width: auto; object-fit: contain; }
.logo-text {
  font-family: 'Cormorant Garamond', 'Amiri', serif;
  font-size: 1.5rem; font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
  list-style: none; margin: 0 auto;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem; font-weight: 400;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.5rem 1rem; border-radius: var(--radius-sm);
  transition: color var(--t-fast), background var(--t-fast);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; right: 50%;
  height: 1px; background: var(--gold);
  transition: left var(--t-fast), right var(--t-fast);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { left: 1rem; right: 1rem; }
.nav-actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }

.lang-btn {
  display: flex; align-items: center; gap: 0.4rem;
  color: rgba(255,255,255,0.8); font-size: 0.8rem; font-weight: 500;
  padding: 0.4rem 0.9rem; border-radius: 99px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all var(--t-fast); white-space: nowrap;
}
.lang-btn:hover { color: white; border-color: var(--gold); background: rgba(201,168,76,0.15); }
.lang-icon { font-size: 0.9rem; }

.call-btn {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--gold); color: var(--blue-deepest);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 0.5rem 1.2rem; border-radius: 99px;
  transition: all var(--t-fast);
}
.call-btn:hover { background: var(--gold-light); transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: rgba(255,255,255,0.85); border-radius: 2px;
  transition: all var(--t-mid);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

.mobile-overlay {
  position: fixed; inset: 0; z-index: 98;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden; transition: all var(--t-mid);
}
.mobile-overlay.active { opacity: 1; visibility: visible; }

/* ── HERO ───────────────────────────────────────────────────── */
.hero-section {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1539037116277-4db20889f2d4?w=1800&q=85');
  background-size: cover; background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-section:hover .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10, 22, 42, 0.88) 0%,
    rgba(26, 58, 92, 0.72) 50%,
    rgba(10, 22, 42, 0.82) 100%
  );
}
/* Moroccan Geometric Pattern Overlay */
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='0.5'%3E%3Cpolygon points='40,4 52,20 72,20 60,36 68,56 40,46 12,56 20,36 8,20 28,20'/%3E%3Cpolygon points='40,16 47,28 60,28 51,38 55,52 40,44 25,52 29,38 20,28 33,28'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; color: white;
  max-width: 820px; padding: 2rem;
  animation: heroIn 1.2s ease both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 1rem;
  font-size: 0.78rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 1.5rem;
  opacity: 0; animation: fadeInUp 0.8s 0.3s ease both;
}
.badge-line { display: block; width: 40px; height: 1px; background: var(--gold); opacity: 0.6; }

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 600; line-height: 1.1;
  color: white; margin-bottom: 1rem;
  opacity: 0; animation: fadeInUp 0.8s 0.5s ease both;
}
.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.4rem); font-weight: 300;
  color: rgba(255,255,255,0.75); margin-bottom: 2rem;
  opacity: 0; animation: fadeInUp 0.8s 0.7s ease both;
}
.hero-divider {
  color: var(--gold); margin: 0 auto 2.5rem;
  width: 120px; opacity: 0;
  animation: fadeInUp 0.8s 0.85s ease both;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: transparent; color: white;
  font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 1rem 2.5rem; border-radius: 99px;
  border: 1px solid rgba(201,168,76,0.6);
  transition: all var(--t-mid);
  opacity: 0; animation: fadeInUp 0.8s 1s ease both;
}
.hero-cta:hover {
  background: var(--gold); border-color: var(--gold);
  color: var(--blue-deepest); transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.35);
}
.hero-cta svg { transition: transform var(--t-fast); }
.hero-cta:hover svg { transform: translateX(4px); }

.hero-scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  animation: fadeInUp 1s 1.4s ease both;
}
.scroll-mouse {
  width: 26px; height: 40px; border-radius: 13px;
  border: 1.5px solid rgba(255,255,255,0.35);
  display: flex; justify-content: center; padding-top: 8px;
}
.scroll-dot {
  width: 3px; height: 8px; border-radius: 2px;
  background: var(--gold-light);
  animation: scrollBounce 2s ease infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: translateY(0); opacity: 1; }
  50%      { transform: translateY(8px); opacity: 0.4; }
}

/* ── SECTION SHARED STYLES ──────────────────────────────────── */
.section-badge {
  display: inline-block; font-size: 0.75rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 0.75rem;
  position: relative;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-dark); margin-bottom: 0.75rem; line-height: 1.2;
}
.section-subtitle {
  font-size: 1.05rem; color: var(--text-light);
  max-width: 520px; margin: 0 auto 1.5rem;
}
.section-header { text-align: center; margin-bottom: 3.5rem; }
.title-ornament {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  color: var(--gold); margin-top: 1.25rem;
}
.title-ornament span {
  display: block; height: 1px; width: 60px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ── ABOUT STRIP ────────────────────────────────────────────── */
.about-strip {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--blue-deepest);
  color: white; position: relative; overflow: hidden;
}
.about-strip::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.about-strip::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.about-grid {
  display: grid; grid-template-columns: 200px 1fr;
  gap: 4rem; align-items: center;
}
.about-ornament { display: flex; justify-content: center; }
.morocco-star { width: 160px; height: 160px; color: var(--gold); opacity: 0.8; }
.morocco-star svg { width: 100%; height: 100%; }
.about-strip .section-badge { color: var(--gold-light); }
.about-strip h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: white; margin-bottom: 1.25rem; line-height: 1.25;
}
.about-strip p { color: rgba(255,255,255,0.72); font-size: 1.05rem; margin-bottom: 2.5rem; }
.about-stats {
  display: flex; align-items: center; gap: 1.5rem;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  display: block; font-size: 1.5rem; font-weight: 600;
  color: var(--gold-light);
}
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.stat-divider { color: var(--gold); opacity: 0.3; font-size: 1.5rem; }

/* ── MENU SECTION ───────────────────────────────────────────── */
.menu-section {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--off-white);
  position: relative;
}
/* Subtle background pattern */
.menu-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='%232563a8' stroke-width='0.3' opacity='0.07'%3E%3Cpolygon points='30,3 39,15 54,15 43,26 47,42 30,33 13,42 17,26 6,15 21,15'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 60px 60px;
}

/* Filter tabs */
.menu-filter {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  justify-content: center; margin-bottom: 2rem;
}
.filter-btn {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.55rem 1.3rem; border-radius: 99px;
  border: 1.5px solid var(--border);
  background: white; color: var(--text-mid);
  font-size: 0.85rem; font-weight: 500; cursor: pointer;
  transition: all var(--t-fast);
  font-family: inherit;
}
.filter-btn:hover { border-color: var(--blue-mid); color: var(--blue-mid); }
.filter-btn.active {
  background: var(--blue-deep); color: white;
  border-color: var(--blue-deep);
  box-shadow: 0 4px 16px rgba(26,58,92,0.25);
}
.filter-icon { font-size: 1rem; }

/* Search */
.menu-search-wrap { max-width: 460px; margin: 0 auto 3.5rem; }
.search-box {
  position: relative; display: flex; align-items: center;
}
.search-icon {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: var(--text-light); pointer-events: none;
  left: 1.1rem;
}
[dir="rtl"] .search-icon { left: auto; right: 1.1rem; }
.search-input {
  width: 100%; padding: 0.9rem 3rem;
  border-radius: 99px; border: 1.5px solid var(--border);
  background: white; color: var(--text-dark);
  font-size: 0.9rem; outline: none; font-family: inherit;
  transition: all var(--t-fast);
  box-shadow: var(--shadow-sm);
}
[dir="rtl"] .search-input { padding: 0.9rem 3rem 0.9rem 3rem; }
.search-input:focus { border-color: var(--blue-mid); box-shadow: 0 0 0 3px rgba(37,99,168,0.1); }
.search-input::placeholder { color: var(--text-light); }
.search-clear {
  position: absolute; right: 1rem;
  background: none; border: none; color: var(--text-light);
  cursor: pointer; font-size: 0.9rem; padding: 0.3rem;
  transition: color var(--t-fast);
}
[dir="rtl"] .search-clear { right: auto; left: 1rem; }
.search-clear:hover { color: var(--text-dark); }

/* Category blocks */
.menu-category-block {
  margin-bottom: 4.5rem;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.menu-category-block.visible { opacity: 1; transform: translateY(0); }
.category-header {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 2rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.category-header::after {
  content: ''; position: absolute; bottom: -1px; left: 0;
  width: 60px; height: 2px; background: var(--gold);
}
[dir="rtl"] .category-header::after { left: auto; right: 0; }
.cat-icon { font-size: 1.8rem; line-height: 1; margin-top: 2px; }
.cat-title {
  font-size: clamp(1.4rem, 3vw, 1.9rem); color: var(--blue-deep);
  margin-bottom: 0.15rem;
}
.cat-desc { font-size: 0.9rem; color: var(--text-light); }

/* Dishes grid */
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: 1.5rem;
}

/* Dish Card */
.dish-card {
  background: white; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(37,99,168,0.07);
  overflow: hidden; transition: transform var(--t-mid), box-shadow var(--t-mid);
  display: flex; flex-direction: column;
}
.dish-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(13,33,55,0.14);
}
.dish-img-wrap {
  position: relative; aspect-ratio: 4/3; overflow: hidden; flex-shrink: 0;
}
.dish-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.dish-card:hover .dish-img { transform: scale(1.05); }
.dish-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--blue-ghost), var(--blue-mist));
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
}
.dish-badges {
  position: absolute; top: 0.75rem; left: 0.75rem;
  display: flex; gap: 0.4rem; flex-wrap: wrap;
}
[dir="rtl"] .dish-badges { left: auto; right: 0.75rem; }
.badge {
  display: inline-flex; align-items: center; gap: 0.25rem;
  padding: 0.25rem 0.65rem; border-radius: 99px;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}
.badge-featured { background: rgba(201,168,76,0.95); color: #1a2535; }
.badge-new { background: rgba(37,99,168,0.95); color: white; }
.badge-spicy { background: rgba(220,53,69,0.9); color: white; font-size: 0.85rem; padding: 0.2rem 0.5rem; }
.badge-veg { background: rgba(40,167,69,0.9); color: white; font-size: 0.85rem; padding: 0.2rem 0.5rem; }

.dish-body {
  padding: 1.25rem; display: flex; flex-direction: column; flex: 1;
}
.dish-name {
  font-size: 1.1rem; color: var(--text-dark);
  margin-bottom: 0.5rem; line-height: 1.35;
}
.dish-desc {
  font-size: 0.875rem; color: var(--text-light); line-height: 1.65;
  margin-bottom: 0.75rem; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Ingredients */
.dish-ingredients { margin-bottom: 1rem; }
.ingr-toggle {
  display: flex; align-items: center; gap: 0.4rem;
  background: var(--blue-ghost); border: none;
  color: var(--blue-mid); font-size: 0.78rem; font-weight: 500;
  padding: 0.4rem 0.85rem; border-radius: var(--radius-sm);
  cursor: pointer; font-family: inherit; transition: background var(--t-fast);
}
.ingr-toggle:hover { background: var(--blue-pale); }
.chevron { transition: transform var(--t-fast); }
.ingr-toggle.open .chevron { transform: rotate(180deg); }
.ingr-list {
  display: flex; flex-wrap: wrap; gap: 0.35rem;
  margin-top: 0.65rem;
}
.ingr-tag {
  background: var(--cream); color: var(--text-mid);
  font-size: 0.73rem; padding: 0.2rem 0.6rem;
  border-radius: 99px; border: 1px solid rgba(0,0,0,0.07);
}

/* Dish footer */
.dish-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1rem; border-top: 1px solid var(--border);
  margin-top: auto;
}
.dish-price {
  display: flex; align-items: baseline; gap: 0.25rem;
}
.price-currency {
  font-size: 1rem; color: var(--gold-dark); font-weight: 600;
}
.price-amount {
  font-size: 1.5rem; font-weight: 700; color: var(--blue-deep);
  font-family: 'Cormorant Garamond', 'Amiri', serif;
}
.dish-calories {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.78rem; color: var(--text-light);
  background: var(--blue-ghost); padding: 0.3rem 0.7rem;
  border-radius: 99px;
}

/* No results */
.no-results {
  text-align: center; padding: 5rem 1rem; color: var(--text-light);
}
.no-results-icon { font-size: 3rem; margin-bottom: 1rem; }

/* ── HOURS SECTION ──────────────────────────────────────────── */
.hours-section {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: white;
}
.hours-grid {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 5rem; align-items: center;
}
.hours-text .section-badge { display: block; margin-bottom: 0.75rem; }
.hours-text h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--text-dark); margin-bottom: 1.5rem; }
.hours-ornament { color: var(--blue-mid); }
.hours-list { display: flex; flex-direction: column; gap: 0; }
.hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.85rem 1.25rem; border-radius: var(--radius-sm);
  transition: background var(--t-fast);
  position: relative;
}
.hours-row:hover { background: var(--blue-ghost); }
.hours-row.closed .hours-time { color: var(--text-light); }
.hours-row.today {
  background: var(--gold-muted);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
}
.hours-day {
  display: flex; align-items: center; gap: 0.6rem;
  font-weight: 500; color: var(--text-dark); font-size: 0.95rem;
}
.today-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.4); }
  50%      { box-shadow: 0 0 0 5px rgba(201,168,76,0); }
}
.hours-time { color: var(--text-mid); font-size: 0.9rem; }
.closed-text { color: var(--text-light); font-style: italic; }

/* ── MAP SECTION ────────────────────────────────────────────── */
.map-section { padding-top: clamp(4rem, 7vw, 6rem); background: var(--off-white); }
.map-header { text-align: center; margin-bottom: 2.5rem; }
.map-header h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--text-dark); margin-bottom: 0.5rem; }
.map-header p { color: var(--text-light); margin-bottom: 1.25rem; }
.map-link-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--blue-deep); color: white;
  padding: 0.7rem 1.75rem; border-radius: 99px;
  font-size: 0.85rem; font-weight: 500;
  transition: all var(--t-fast);
}
.map-link-btn:hover { background: var(--blue-mid); transform: translateY(-1px); }
.map-embed { width: 100%; height: 420px; }
.map-embed iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── CONTACT BAR ────────────────────────────────────────────── */
.contact-bar {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background: var(--blue-deepest); color: white;
}
.contact-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.contact-card {
  display: flex; align-items: center; gap: 1rem;
  background: rgba(255,255,255,0.05); border-radius: var(--radius-md);
  padding: 1.5rem; border: 1px solid rgba(255,255,255,0.08);
  transition: all var(--t-fast); color: white;
}
.contact-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.contact-whatsapp { border-color: rgba(37,211,102,0.3); }
.contact-whatsapp:hover { background: rgba(37,211,102,0.12); }
.contact-whatsapp .contact-icon { color: #25d366; }
.contact-icon {
  font-size: 1.6rem; flex-shrink: 0;
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
}
.contact-label { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-bottom: 0.15rem; }
.contact-value { display: block; font-size: 0.95rem; font-weight: 500; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: #080f1a; color: rgba(255,255,255,0.65);
  padding: clamp(3.5rem, 7vw, 5rem) 0 0; position: relative; overflow: hidden;
}
.footer-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='0.5'%3E%3Cpolygon points='40,4 52,20 72,20 60,36 68,56 40,46 12,56 20,36 8,20 28,20'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px; pointer-events: none;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3.5rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo { height: 52px; width: auto; margin-bottom: 0.75rem; }
.footer-logo-text {
  font-family: 'Cormorant Garamond', 'Amiri', serif;
  font-size: 1.6rem; font-weight: 600; color: var(--gold-light);
  margin-bottom: 0.75rem;
}
.footer-desc { font-size: 0.875rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); transition: all var(--t-fast);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--blue-deepest); }
.footer-nav h4, .footer-lang h4 {
  color: white; font-size: 0.85rem; letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 1.25rem;
}
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-nav a {
  color: rgba(255,255,255,0.55); font-size: 0.875rem;
  transition: color var(--t-fast);
}
.footer-nav a:hover { color: var(--gold-light); }
.lang-switch-group { display: flex; flex-direction: column; gap: 0.5rem; }
.lang-option {
  display: inline-flex; padding: 0.45rem 1.1rem; border-radius: 99px;
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.1); transition: all var(--t-fast);
}
.lang-option.active,
.lang-option:hover { color: white; border-color: var(--gold); background: rgba(201,168,76,0.15); }
.footer-bottom {
  text-align: center; padding: 1.5rem 0;
  font-size: 0.8rem; color: rgba(255,255,255,0.3);
}

/* ── BACK TO TOP ────────────────────────────────────────────── */
#back-to-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 50;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--blue-deep); color: white;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(13,33,55,0.3);
  opacity: 0; transform: translateY(12px);
  transition: all var(--t-mid); pointer-events: none;
}
[dir="rtl"] #back-to-top { right: auto; left: 2rem; }
#back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#back-to-top:hover { background: var(--gold); transform: translateY(-2px); }

/* ══ RESPONSIVE ═════════════════════════════════════════════ */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-ornament { display: none; }
  .hours-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 0; right: -100%; bottom: 0;
    width: min(320px, 85vw); background: var(--blue-deepest);
    flex-direction: column; align-items: flex-start;
    padding: 6rem 2rem 2rem; gap: 0.25rem; z-index: 99;
    transition: right var(--t-mid); overflow-y: auto;
  }
  [dir="rtl"] .nav-links { right: auto; left: -100%; }
  .nav-links.open { right: 0; }
  [dir="rtl"] .nav-links.open { left: 0; right: auto; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; font-size: 1rem; padding: 0.85rem 1rem; }
  .nav-links a::after { display: none; }
  .call-btn span:last-child { display: none; }
  .call-btn { padding: 0.5rem; }
  .hamburger { display: flex; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .stat-divider { display: none; }
}
@media (max-width: 480px) {
  .dishes-grid { grid-template-columns: 1fr; }
  .hero-cta { padding: 0.85rem 1.8rem; font-size: 0.8rem; }
}

/* ── UTILITY: REVEAL ON SCROLL ──────────────────────────────── */
[data-reveal] {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ── PRINT STYLES ───────────────────────────────────────────── */
@media print {
  #site-header, #preloader, #back-to-top, .hero-section, .about-strip { display: none; }
  .menu-section { padding-top: 1rem; }
  .dish-card { break-inside: avoid; box-shadow: none; border: 1px solid #ddd; }
}
