/* ═══════════════════════════════════════════════════════
   RAWABI RESTAURANT — LUXURY DARK GOLD THEME
   Phase 1 — Core Cinematic Frontend
   ═══════════════════════════════════════════════════════ */

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

/* ═══════════════════════════════════════════════
   DIRECTION — Controlled by HTML lang attribute
   Set by inline script before any render
═══════════════════════════════════════════════ */
:root { direction: ltr; }
html[dir="rtl"] { direction: rtl; }
html[dir="ltr"] { direction: ltr; }

html[dir="rtl"] body {
  direction: rtl;
  font-family: var(--ff-arabic, 'IBM Plex Sans Arabic', sans-serif);
}
html[dir="ltr"] body {
  direction: ltr;
  font-family: var(--ff-body, 'Inter', sans-serif);
}



/* ── CSS Variables ── */
:root {
  --bg-deep:       #0d0800;
  --bg-primary:    #1a0e00;
  --bg-secondary:  #231200;
  --bg-card:       #1e1100;
  --bg-overlay:    rgba(13,8,0,0.85);

  --gold-dark:     #8b6010;
  --gold-primary:  #c8922a;
  --gold-mid:      #d4a043;
  --gold-soft:     #f0c060;
  --gold-light:    #f8d98a;
  --gold-shine:    #fff0b3;

  --text-primary:  #f5f1e8;
  --text-secondary:#c8b898;
  --text-muted:    #b09a7a;
  --text-dim:      #8a7a60;

  --border-gold:   rgba(200,146,42,0.25);
  --border-subtle: rgba(200,146,42,0.12);

  --ff-arabic:     'IBM Plex Sans Arabic', sans-serif;
  --ff-display:    'Playfair Display', serif;
  --ff-elegant:    'Cormorant Garamond', serif;
  --ff-body:       'Inter', sans-serif;

  --radius-sm:     4px;
  --radius-md:     8px;
  --radius-lg:     16px;
  --radius-xl:     32px;

  --transition:    0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  --transition-fast: 0.2s ease;

  --shadow-gold:   0 4px 32px rgba(200,146,42,0.15);
  --shadow-deep:   0 20px 60px rgba(0,0,0,0.6);
  --shadow-card:   0 8px 40px rgba(0,0,0,0.4);
}

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

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

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--ff-body);
  
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Arabic direction */
:root:lang(ar) body,
body.rtl,
html[lang="ar"] body {
  
  font-family: var(--ff-arabic);
}

html[lang="en"] body,
body.ltr {
  
  font-family: var(--ff-body);
}

body.ltr {
  
  font-family: var(--ff-body);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 2px; }

/* ── Selection ── */
::selection { background: rgba(200,146,42,0.3); color: var(--gold-light); }

/* ══════════════════════════════
   SCROLL PROGRESS BAR
══════════════════════════════ */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-soft), var(--gold-shine));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2.5rem;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(13,8,0,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-gold), 0 8px 32px rgba(0,0,0,0.5);
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.navbar-logo img {
  height: 48px;
  width: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(200,146,42,0.4));
}

.navbar-logo .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.navbar-logo .brand-name {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-soft);
  letter-spacing: 0.02em;
}

.navbar-logo .brand-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.navbar-nav a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  letter-spacing: 0.03em;
  transition: color var(--transition-fast), background var(--transition-fast);
  position: relative;
}

.navbar-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; right: 50%;
  height: 1px;
  background: var(--gold-primary);
  transition: left var(--transition), right var(--transition);
}

.navbar-nav a:hover,
.navbar-nav a.active {
  color: var(--gold-soft);
}

.navbar-nav a:hover::after,
.navbar-nav a.active::after {
  left: 1rem; right: 1rem;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-lang {
  font-size: 0.8rem;
  color: var(--text-muted);
  border: 1px solid var(--border-gold);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-xl);
  letter-spacing: 0.08em;
  transition: all var(--transition-fast);
}

.btn-lang:hover {
  color: var(--gold-soft);
  border-color: var(--gold-primary);
  background: rgba(200,146,42,0.08);
}

.btn-reserve {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--bg-deep);
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-soft));
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-xl);
  letter-spacing: 0.06em;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 16px rgba(200,146,42,0.3);
}

.btn-reserve:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(200,146,42,0.45);
  background: linear-gradient(135deg, var(--gold-mid), var(--gold-light));
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--gold-soft);
  transition: all var(--transition-fast);
  border-radius: 1px;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0; bottom: 0;
  background: rgba(13,8,0,0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--ff-display);
  font-size: 2rem;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  transition: color var(--transition-fast);
}

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

/* ══════════════════════════════
   HERO SECTION
══════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  transform: scale(1.05);
  transition: opacity 1.2s ease, transform 8s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,8,0,0.3) 0%,
    rgba(13,8,0,0.5) 40%,
    rgba(13,8,0,0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-primary);
  border: 1px solid var(--border-gold);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-xl);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-badge::before,
.hero-badge::after {
  content: '✦';
  font-size: 0.5rem;
  color: var(--gold-primary);
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-soft);
}

.hero-subtitle {
  font-family: var(--ff-elegant);
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bg-deep);
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-soft));
  padding: 0.875rem 2rem;
  border-radius: var(--radius-xl);
  letter-spacing: 0.06em;
  transition: all var(--transition-fast);
  box-shadow: 0 6px 24px rgba(200,146,42,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(200,146,42,0.5);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gold-soft);
  border: 1px solid var(--border-gold);
  padding: 0.875rem 2rem;
  border-radius: var(--radius-xl);
  letter-spacing: 0.06em;
  transition: all var(--transition-fast);
}

.btn-outline:hover {
  background: rgba(200,146,42,0.1);
  border-color: var(--gold-primary);
  transform: translateY(-2px);
}

/* Hero Indicators */
.hero-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}

.hero-dot {
  width: 24px;
  height: 2px;
  background: rgba(200,146,42,0.3);
  border-radius: 1px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.hero-dot.active {
  width: 40px;
  background: var(--gold-primary);
}

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-lr;
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold-primary), transparent);
  animation: scrollLine 1.5s ease infinite;
}

/* ══════════════════════════════
   DIVIDER ORNAMENT
══════════════════════════════ */
.divider-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.5rem 0;
}

.divider-ornament::before,
.divider-ornament::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-gold));
}

.divider-ornament::after {
  background: linear-gradient(to left, transparent, var(--border-gold));
}

.divider-ornament .ornament-icon {
  font-size: 1rem;
  color: var(--gold-primary);
}

/* ══════════════════════════════
   SECTION HEADERS
══════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold-soft);
}

.section-subtitle {
  font-family: var(--ff-elegant);
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-style: italic;
  max-width: 500px;
  margin: 0 auto;
}

/* ══════════════════════════════
   FEATURED DISHES
══════════════════════════════ */
.featured-section {
  padding: 7rem 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.featured-section::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse, rgba(200,146,42,0.04), transparent 70%);
  pointer-events: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.dishes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.dish-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}

.dish-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold), var(--shadow-card);
  border-color: var(--border-gold);
}

.dish-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.dish-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.dish-card:hover .dish-card-image img {
  transform: scale(1.08);
}

.dish-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg-deep);
  background: var(--gold-primary);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-xl);
  font-weight: 600;
}

.dish-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,8,0,0.8), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.dish-card:hover .dish-card-overlay { opacity: 1; }

.dish-card-body {
  padding: 1.5rem;
}

.dish-category {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

.dish-name {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.dish-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.dish-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dish-price {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold-soft);
}

.dish-price span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: var(--ff-body);
}

.btn-add-dish {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.25rem;
  line-height: 1;
  transition: all var(--transition-fast);
}

.btn-add-dish:hover {
  background: var(--gold-primary);
  color: var(--bg-deep);
  border-color: var(--gold-primary);
}

/* ══════════════════════════════
   STORY / ABOUT SECTION
══════════════════════════════ */
.story-section {
  padding: 8rem 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.story-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 0% 50%, rgba(200,146,42,0.04), transparent 60%),
    radial-gradient(ellipse at 100% 50%, rgba(200,146,42,0.04), transparent 60%);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.story-images {
  position: relative;
}

.story-img-main {
  width: 75%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-deep);
  border: 1px solid var(--border-gold);
}

.story-img-secondary {
  position: absolute;
  bottom: -3rem;
  left: -2rem;
  width: 55%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-deep);
  border: 2px solid var(--bg-secondary);
}

.story-img-badge {
  position: absolute;
  top: 2rem;
  left: 0;
  background: var(--bg-deep);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.story-img-badge .years {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-soft);
  line-height: 1;
  display: block;
}

.story-img-badge .years-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.story-content {}

.story-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.story-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.story-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.story-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.story-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.story-feature-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold-primary);
  flex-shrink: 0;
  background: rgba(200,146,42,0.06);
}

.story-feature-text h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.story-feature-text p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ══════════════════════════════
   BRANCHES / STATS
══════════════════════════════ */
.stats-section {
  padding: 5rem 0;
  background: var(--bg-deep);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  border-right: 1px solid var(--border-subtle);
  position: relative;
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold-soft);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-number span { color: var(--gold-primary); }

.stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ══════════════════════════════
   MENU PREVIEW SECTION
══════════════════════════════ */
.menu-preview-section {
  padding: 8rem 0;
  background: var(--bg-primary);
  position: relative;
}

.menu-cats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.menu-cat-btn {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-xl);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.menu-cat-btn:hover,
.menu-cat-btn.active {
  color: var(--gold-soft);
  border-color: var(--gold-primary);
  background: rgba(200,146,42,0.1);
}

.menu-view-all {
  text-align: center;
  margin-top: 3.5rem;
}

/* ══════════════════════════════
   GALLERY PREVIEW
══════════════════════════════ */
.gallery-section {
  padding: 8rem 0;
  background: var(--bg-secondary);
}

.gallery-masonry {
  columns: 4;
  column-gap: 1rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,8,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay .zoom-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(200,146,42,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-soft);
  font-size: 1.2rem;
  transform: scale(0.8);
  transition: transform var(--transition);
}

.gallery-item:hover .zoom-icon { transform: scale(1); }

/* ══════════════════════════════
   LIGHTBOX
══════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-deep);
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(200,146,42,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-soft);
  font-size: 1.25rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lightbox-close:hover {
  background: rgba(200,146,42,0.15);
}

/* ══════════════════════════════
   EVENTS SECTION
══════════════════════════════ */
.events-section {
  padding: 8rem 0;
  background: var(--bg-primary);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.event-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}

.event-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
}

.event-card-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.event-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.event-card:hover .event-card-img img { transform: scale(1.06); }

.event-date-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: var(--bg-deep);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 0.5rem 0.75rem;
  text-align: center;
}

.event-date-badge .day {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-soft);
  line-height: 1;
  display: block;
}

.event-date-badge .month {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.event-card-body {
  padding: 1.5rem;
}

.event-title {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.event-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.event-cta {
  font-size: 0.8rem;
  color: var(--gold-primary);
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition-fast);
}

.event-card:hover .event-cta { gap: 0.7rem; }

/* ══════════════════════════════
   CONTACT / BRANCHES
══════════════════════════════ */
.contact-section {
  padding: 8rem 0;
  background: var(--bg-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.contact-item:last-child { border-bottom: none; }

.contact-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold-primary);
  flex-shrink: 0;
  background: rgba(200,146,42,0.06);
}

.contact-item-content h4 {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-item-content p, .contact-item-content a {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.contact-item-content a:hover { color: var(--gold-soft); }

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.6) sepia(0.3) saturate(0.8);
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-subtle);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-brand .footer-logo img {
  height: 44px;
  width: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(200,146,42,0.3));
}

.footer-brand .footer-logo .brand-name {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  color: var(--gold-soft);
}

.footer-tagline {
  font-family: var(--ff-elegant);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.social-link:hover {
  border-color: var(--gold-primary);
  color: var(--gold-soft);
  background: rgba(200,146,42,0.08);
}

.footer-col h4 {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; }

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-col ul li a:hover { color: var(--text-secondary); }

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-copy a {
  color: var(--gold-dark);
}

/* ══════════════════════════════
   FLOATING WHATSAPP
══════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.whatsapp-btn {
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.whatsapp-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}

.whatsapp-btn svg {
  width: 26px;
  height: 26px;
  fill: white;
}

.whatsapp-tooltip {
  background: var(--bg-deep);
  border: 1px solid var(--border-gold);
  color: var(--text-secondary);
  font-size: 0.8rem;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-md);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-8px);
  transition: all var(--transition-fast);
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ══════════════════════════════
   MENU PAGE SPECIFIC
══════════════════════════════ */
.menu-page-hero {
  padding-top: 120px;
  padding-bottom: 4rem;
  text-align: center;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-subtle);
}

.menu-sticky-cats {
  position: sticky;
  top: 80px;
  z-index: 50;
  background: rgba(26,14,0,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0 2.5rem;
}

.menu-cats-inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  max-width: 1280px;
  margin: 0 auto;
}

.menu-cats-inner::-webkit-scrollbar { display: none; }

.menu-cat-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.1rem 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.menu-cat-tab:hover,
.menu-cat-tab.active {
  color: var(--gold-soft);
  border-bottom-color: var(--gold-primary);
}

.menu-search-wrap {
  padding: 2rem 0;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

.menu-search {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 0.875rem 1.25rem 0.875rem 3rem;
  color: var(--text-primary);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.menu-search:focus {
  border-color: var(--gold-primary);
}

.menu-search-icon {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1rem;
  pointer-events: none;
}

.menu-section {
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.menu-section-title {
  font-family: var(--ff-display);
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-subtle);
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.menu-item {
  background: var(--bg-card);
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: background var(--transition-fast);
}

.menu-item:hover { background: rgba(200,146,42,0.04); }

.menu-item-img {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--border-subtle);
}

.menu-item-content { flex: 1; min-width: 0; }

.menu-item-name {
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.menu-item-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0.5rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.menu-item-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.menu-tag {
  font-size: 0.65rem;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
  background: rgba(200,146,42,0.1);
  color: var(--gold-primary);
  letter-spacing: 0.05em;
  border: 1px solid var(--border-subtle);
}

.menu-item-price {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  color: var(--gold-soft);
  white-space: nowrap;
  font-weight: 500;
  flex-shrink: 0;
  align-self: center;
}

/* ══════════════════════════════
   RESERVATION MODAL
══════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  padding: 2rem;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 3rem;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform var(--transition);
  box-shadow: var(--shadow-deep), var(--shadow-gold);
  position: relative;
}

.modal-overlay.open .modal-card { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.modal-close:hover {
  border-color: var(--gold-primary);
  color: var(--gold-soft);
}

.modal-title {
  font-family: var(--ff-display);
  font-size: 1.75rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  text-align: center;
}

.modal-subtitle {
  font-family: var(--ff-elegant);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.875rem 1rem;
  color: var(--text-primary);
  font-size: 0.9rem;
  font-family: var(--ff-arabic);
  outline: none;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold-primary);
  background: rgba(200,146,42,0.05);
}

.form-select { cursor: pointer; }

.form-textarea { resize: vertical; min-height: 100px; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-soft));
  color: var(--bg-deep);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 1rem;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  letter-spacing: 0.08em;
  transition: all var(--transition-fast);
  box-shadow: 0 6px 24px rgba(200,146,42,0.3);
  font-family: var(--ff-arabic);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(200,146,42,0.45);
}

/* ══════════════════════════════
   REVEAL ANIMATIONS
══════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollLine {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ══════════════════════════════
   PRINT STYLES
══════════════════════════════ */
@media print {
  .navbar, .whatsapp-float, .modal-overlay,
  .hero-scroll, #scroll-progress { display: none !important; }
  body { background: white; color: black; }
  .dish-card, .menu-item { break-inside: avoid; }
}

/* ══════════════════════════════
   RESPONSIVE — TABLET
══════════════════════════════ */
@media (max-width: 1024px) {
  .dishes-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: 1fr; gap: 3rem; }
  .story-images { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { columns: 3; }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════
   RESPONSIVE — MOBILE
══════════════════════════════ */
@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }
  .navbar { padding: 0 1.25rem; height: 68px; }
  .navbar-nav { display: none; }
  .hamburger { display: flex; }

  .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }

  .dishes-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border-subtle); padding: 1.5rem; }
  .gallery-masonry { columns: 2; }
  .events-grid { grid-template-columns: 1fr; }
  .menu-items-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .modal-card { padding: 2rem 1.5rem; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-scroll { display: none; }
}

/* ══════════════════════════════
   LANGUAGE DIRECTION OVERRIDES
══════════════════════════════ */
body.ltr {
  
  font-family: var(--ff-body);
}

body.ltr .navbar-logo .brand-text { direction: ltr; }
body.ltr .mobile-nav { direction: ltr; }

/* ══════════════════════════════
   MOBILE NAV — ENHANCED
══════════════════════════════ */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(13,8,0,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 998;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding-top: 80px;
}

.mobile-nav.open {
  display: flex !important;
  animation: fadeInNav 0.3s ease;
}

@keyframes fadeInNav {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Mobile nav links */
.mobile-nav a,
.mobile-nav li a {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  transition: color 0.2s;
  display: block;
  text-align: center;
  padding: 0.5rem 2rem;
}

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

/* Close button in mobile nav area */
.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-size: 1.5rem;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
}

/* ══════════════════════════════
   HAMBURGER — ENHANCED
══════════════════════════════ */
.hamburger,
#mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
}

.hamburger span,
#mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold-soft);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

@media (max-width: 768px) {
  .hamburger,
  #mobile-menu-btn { display: flex; }
  .navbar-nav { display: none; }
}

/* ══════════════════════════════
   NAVBAR ACTIONS — MOBILE FIX
══════════════════════════════ */
@media (max-width: 768px) {
  .navbar-actions { gap: 0.5rem; }
  .btn-reserve { 
    font-size: 0.72rem;
    padding: 0.4rem 0.8rem;
  }
  .btn-lang,
  .lang-switcher {
    font-size: 0.72rem;
    padding: 0.3rem 0.6rem;
  }
}

/* ══════════════════════════════
   FIX: CONTAINER OVERFLOW MOBILE
══════════════════════════════ */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero-title { font-size: 2.2rem !important; }
  .section-heading { font-size: 1.8rem; }
}

/* ══════════════════════════════
   SMALL MOBILE — 480px & below
══════════════════════════════ */
@media (max-width: 480px) {
  .navbar { padding: 0 1rem; height: 60px; }
  .navbar-logo img { height: 36px; width: 36px; }
  .navbar-logo .brand-name { font-size: 1rem; }
  .navbar-logo .brand-sub { display: none; }
  .btn-reserve { display: none; }

  .hero-content { padding: 0 1.25rem; }
  .hero-title { font-size: clamp(2rem, 12vw, 3rem) !important; }
  .hero-subtitle { font-size: 0.9rem; }
  .hero-badge { font-size: 0.6rem; padding: 0.35rem 0.85rem; }
  .hero-cta { flex-direction: column; gap: 0.75rem; width: 100%; padding: 0 1rem; }
  .hero-cta .btn-primary, .hero-cta .btn-outline { width: 100%; justify-content: center; }

  .section-title { font-size: 1.6rem; }
  .section-subtitle { font-size: 0.85rem; }

  .stat-item { padding: 1.25rem 1rem; }
  .stat-number { font-size: 2rem; }

  .dishes-grid { grid-template-columns: 1fr; gap: 1rem; }
  .dish-card-body { padding: 1rem; }

  .story-section .container { padding: 0 1rem; }

  .events-grid { grid-template-columns: 1fr !important; }
  .event-card { margin: 0 0.5rem; }

  .footer-grid { grid-template-columns: 1fr !important; gap: 1.5rem; }
  .footer-col:last-child { border: none; }

  .modal-card { margin: 1rem; padding: 1.5rem 1rem; }
}

/* ══════════════════════════════
   RTL specific overrides
══════════════════════════════ */
html[lang="ar"] .navbar-actions { flex-direction: row-reverse; }
html[lang="ar"] .mobile-nav { direction: rtl; }
html[lang="ar"] .hero-cta { flex-direction: row-reverse; }
html[lang="ar"] .btn-primary, html[lang="ar"] .btn-outline { 
  flex-direction: row-reverse; 
}

/* ══════════════════════════════════════════════
   UNIFIED NAVBAR — Final Fix
══════════════════════════════════════════════ */

/* Lang button — unified style */
.btn-lang {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  border: 1px solid var(--border-gold);
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-xl);
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn-lang:hover {
  color: var(--gold-soft);
  border-color: var(--gold-primary);
  background: rgba(200,146,42,0.08);
}

.btn-lang .lang-sep {
  color: var(--border-gold);
  font-size: 0.7rem;
}

/* Mobile nav — complete restyle */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,8,0,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 998;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 5rem 2rem 2rem;
  overflow-y: auto;
}

.mobile-nav.open {
  display: flex;
  animation: mobileNavIn 0.25s ease;
}

@keyframes mobileNavIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.mobile-nav a {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  transition: color 0.2s;
  text-align: center;
  padding: 0.6rem 2rem;
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 280px;
  display: block;
}

.mobile-nav a:hover,
.mobile-nav a.active { color: var(--gold-soft); }

.mobile-nav-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.1rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.mobile-nav-close:hover {
  color: var(--gold-soft);
  border-color: var(--gold-primary);
}

/* Hamburger button */
.hamburger, button.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold-soft);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Navbar actions row */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .navbar { padding: 0 1rem; height: 64px; }
  .navbar-nav { display: none; }
  .hamburger { display: flex; }
  .navbar-actions { gap: 0.5rem; }
  .btn-reserve { font-size: 0.7rem; padding: 0.4rem 0.75rem; }
  .btn-lang { font-size: 0.7rem; padding: 0.3rem 0.55rem; }
}

@media (max-width: 390px) {
  .navbar-logo .brand-sub { display: none; }
  .btn-reserve { display: none; }
  .navbar { padding: 0 0.75rem; }
}

/* ══════════════════════════════════════════════
   MOBILE RESPONSIVE — Full Audit Fixes
══════════════════════════════════════════════ */

/* Menu page mobile */
@media (max-width: 768px) {
  .menu-cats-inner {
    padding: 0.6rem 1rem;
    gap: 0.35rem;
  }
  .menu-cat-tab {
    font-size: 0.75rem;
    padding: 0.4rem 0.85rem;
    flex-shrink: 0;
  }
  .menu-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding: 1rem 0;
  }
  .menu-search-wrap { max-width: none; }
  .menu-items-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .menu-item { padding: 0.85rem; }
  .menu-item-img-wrap { width: 68px; height: 68px; }
}

/* Gallery mobile */
@media (max-width: 768px) {
  .gallery-masonry { columns: 2; gap: 0.5rem; }
}
@media (max-width: 480px) {
  .gallery-masonry { columns: 1; }
}

/* Events mobile */
@media (max-width: 768px) {
  .event-featured-card { grid-template-columns: 1fr !important; }
  .event-featured-image { min-height: 240px; }
  .events-grid { grid-template-columns: 1fr; }
}

/* Contact mobile */
@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-strip .container { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .contact-strip .container { grid-template-columns: 1fr; }
}

/* Story mobile */
@media (max-width: 768px) {
  .timeline-item { grid-template-columns: 1fr; gap: 0; }
  .timeline-item .timeline-content,
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    grid-column: 1;
    text-align: right;
    padding: 1rem 0 0;
  }
  .timeline-center { display: none; }
  .timeline-item .timeline-empty { display: none; }
}

/* Footer mobile */
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Modal mobile */
@media (max-width: 480px) {
  .modal-card {
    width: 95vw;
    padding: 1.5rem 1.25rem;
    max-height: 90vh;
    overflow-y: auto;
  }
}

/* ═══════════════════════════════════════════════
   LANG BUTTON — Dual display EN | ع
═══════════════════════════════════════════════ */
.btn-lang {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(200,146,42,0.06);
  border: 1px solid rgba(200,146,42,0.3);
  border-radius: 100px;
  padding: 0.3rem 0.2rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}

.btn-lang:hover {
  background: rgba(200,146,42,0.12);
  border-color: rgba(200,146,42,0.5);
}

.lang-opt {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  padding: 0.15rem 0.55rem;
  border-radius: 100px;
  transition: all 0.15s ease;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.4;
  white-space: nowrap;
}

.lang-divider {
  font-size: 0.6rem;
  color: rgba(200,146,42,0.3);
  pointer-events: none;
  padding: 0 0.05rem;
}

@media (max-width: 480px) {
  .lang-opt { padding: 0.12rem 0.4rem; font-size: 0.65rem; }
}

/* ═══════════════════════════════════════════════
   SOCIAL ICONS — Official SVG logos
═══════════════════════════════════════════════ */
.social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-muted);
  transition: all 0.2s ease;
  text-decoration: none;
}
.social-icon-link svg { width: 18px; height: 18px; }
.social-icon-link:hover {
  background: var(--social-color, var(--gold-primary));
  border-color: transparent;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}
.social-icon-link:hover svg { fill: white; }

.social-full-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  text-decoration: none;
  color: var(--text-secondary);
  transition: all 0.2s;
  background: var(--bg-card);
}
.social-full-link:hover {
  border-color: var(--border-gold);
  background: rgba(200,146,42,0.05);
  transform: translateX(-2px);
}
.social-full-icon { width: 20px; height: 20px; flex-shrink: 0; }
.social-full-icon svg { width: 20px; height: 20px; }
.social-full-label { font-size: 0.82rem; font-weight: 500; }

/* Contact page specifics */
.contact-social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

/* Social icon row (footer / compact) */
.social-icons-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
