/* ═══════════════════════════════════════════════════════════════════════════
   Chapati Website — Shared Stylesheet
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── RESET ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Heebo', sans-serif;
  direction: rtl;
  text-align: right;
  background: #0f0800;
  color: #fff;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ─── VARIABLES ───────────────────────────────────────────────────────────── */
:root {
  --saffron:    #FF6B00;
  --saffron-lt: #FF8C38;
  --gold:       #F0B429;
  --green:      #2E7D32;
  --green-lt:   #43A047;
  --dark:       #0f0800;
  --dark2:      #1c1005;
  --text-muted: #a08060;
  --border:     rgba(240,180,41,0.18);
}

/* ─── SCROLLBAR ───────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--saffron); border-radius: 3px; }

/* ─── UTILITIES ───────────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
}
.section-title span { color: var(--saffron); }

/* ─── BUTTONS ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.8rem 1.9rem;
  border-radius: 50px;
  font-family: 'Heebo', sans-serif;
  font-size: 0.93rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.28s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--saffron); color: #fff; }
.btn-primary:hover { background: var(--saffron-lt); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,107,0,0.38); }
.btn-outline  { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.35); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-gold  { background: var(--gold); color: #1a0a00; }
.btn-gold:hover { background: #f5c842; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(240,180,41,0.38); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-lt); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(46,125,50,0.38); }

/* ─── ANIMATIONS ──────────────────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-d1 { transition-delay: 0.1s; }
.fade-up-d2 { transition-delay: 0.2s; }
.fade-up-d3 { transition-delay: 0.3s; }
.fade-up-d4 { transition-delay: 0.4s; }
.fade-up-d5 { transition-delay: 0.5s; }
.fade-up-d6 { transition-delay: 0.6s; }

/* ─── HEADER (components.js) ─────────────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,8,0,0.97);
  z-index: 1001;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  text-align: center;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 1.6rem; font-weight: 700; color: #fff; transition: color 0.3s; }
.mobile-nav a:hover { color: var(--saffron); }
.mobile-close {
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  font-size: 2.2rem;
  cursor: pointer;
  color: rgba(255,255,255,0.5);
  line-height: 1;
  transition: color 0.3s;
}
.mobile-close:hover { color: #fff; }

#header {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: all 0.35s ease;
}
#header.scrolled {
  background: rgba(15,8,0,0.96);
  backdrop-filter: blur(18px);
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
}

/* Light-background pages (e.g. chef.html): dark nav before scroll */
.light-header-page #header:not(.scrolled) nav a {
  color: rgba(20, 10, 0, 0.82);
}
.light-header-page #header:not(.scrolled) nav a:hover,
.light-header-page #header:not(.scrolled) nav a.active {
  color: #1a0a00;
}
.light-header-page #header:not(.scrolled) .phone-badge {
  color: rgba(20, 10, 0, 0.75);
  border-color: rgba(20, 10, 0, 0.2);
}
.light-header-page #header:not(.scrolled) .hamburger span {
  background: #1a0a00;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo { flex-shrink: 0; }
.logo img { height: 54px; width: auto; }
nav { display: flex; align-items: center; gap: 1.8rem; flex: 1; justify-content: center; }
nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  position: relative;
  transition: color 0.3s;
}
nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0; left: 0;
  height: 2px;
  background: var(--saffron);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
nav a:hover, nav a.active { color: #fff; }
nav a:hover::after, nav a.active::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 0.7rem; flex-shrink: 0; }
.phone-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 0.38rem 0.75rem;
  border-radius: 50px;
  transition: all 0.3s;
}
.phone-badge:hover { border-color: var(--gold); background: rgba(240,180,41,0.08); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 0.4rem; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.28s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ─── FOOTER (components.js) ─────────────────────────────────────────────── */
#footer {
  background: #080500;
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-logo { height: 48px; margin-bottom: 1rem; }
.footer-tagline { font-size: 0.86rem; color: var(--text-muted); line-height: 1.7; max-width: 230px; margin-bottom: 1.4rem; }
.social-links { display: flex; gap: 0.65rem; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all 0.3s;
}
.social-btn:hover { background: rgba(255,107,0,0.14); border-color: rgba(255,107,0,0.3); color: #fff; transform: translateY(-2px); }
.footer-col-title { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a { font-size: 0.86rem; color: var(--text-muted); transition: color 0.3s; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.28); }
.footer-legal { display: flex; gap: 1.4rem; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.28); transition: color 0.3s; }
.footer-legal a:hover { color: rgba(255,255,255,0.55); }

/* ─── HERO ────────────────────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,8,0,0.88) 0%,
    rgba(15,8,0,0.72) 50%,
    rgba(15,8,0,0.55) 100%
  );
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,107,0,0.05) 1px, transparent 0);
  background-size: 38px 38px;
  pointer-events: none;
}
.hero-floats {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  z-index: 2;
}
.hero-float-item {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.15);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  animation: floatAnim 4s ease-in-out infinite;
}
.hero-float-item img { width: 100%; height: 100%; object-fit: cover; }
.hero-float-sm { width: 66px; height: 66px; animation-delay: 1.4s; }
.hero-float-item:last-child { animation-delay: 2.8s; }
@keyframes floatAnim {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 660px;
  padding-top: 5rem;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.3rem;
}
.hero-eyebrow::before { content: ''; display: inline-block; width: 30px; height: 2px; background: var(--gold); }
.hero-title {
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 900;
  line-height: 1.06;
  color: #fff;
  margin-bottom: 1.2rem;
}
.hero-title-accent {
  display: block;
  color: var(--saffron);
  text-shadow: 0 0 50px rgba(255,107,0,0.28);
}
.hero-subtitle {
  font-size: 1.08rem;
  font-weight: 400;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
  margin-bottom: 2.2rem;
  max-width: 460px;
}
.hero-cta { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2.2rem;
  border-top: 1px solid rgba(240,180,41,0.18);
}
.stat-num { font-size: 2rem; font-weight: 900; color: var(--saffron); line-height: 1; }
.stat-label { font-size: 0.76rem; color: var(--text-muted); margin-top: 0.3rem; }

/* ─── ABOUT ───────────────────────────────────────────────────────────────── */
#about {
  background: var(--dark2);
  padding: 7rem 0;
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-visual {
  position: relative;
  height: 500px;
}
.about-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.about-badge {
  position: absolute;
  bottom: -1.2rem;
  left: -1.2rem;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--saffron);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  box-shadow: 0 16px 36px rgba(255,107,0,0.35);
}
.about-badge-num  { font-size: 1.7rem; font-weight: 900; line-height: 1; }
.about-badge-label{ font-size: 0.62rem; font-weight: 600; }
.about-spice-card {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  width: 130px; height: 130px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.45);
  border: 3px solid var(--dark2);
}
.about-spice-card img { width: 100%; height: 100%; object-fit: cover; }
.about-description {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.85;
  margin: 1.4rem 0 1.8rem;
}
.about-features { display: flex; flex-direction: column; gap: 0.85rem; }
.feature-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.93rem;
  color: rgba(255,255,255,0.72);
}
.feature-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--saffron);
  flex-shrink: 0;
}

/* ─── MENU ────────────────────────────────────────────────────────────────── */
#menu {
  background: #120900;
  padding: 7rem 0;
}
.menu-header { text-align: center; margin-bottom: 3.2rem; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.dish-card {
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  transition: all 0.38s ease;
  cursor: pointer;
}
.dish-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255,107,0,0.28);
  box-shadow: 0 18px 44px rgba(255,107,0,0.1);
}
.dish-img {
  height: 200px;
  overflow: hidden;
}
.dish-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.dish-card:hover .dish-img img { transform: scale(1.06); }
.dish-body { padding: 1.2rem 1.2rem 1.4rem; }
.dish-name { font-size: 1.08rem; font-weight: 700; color: #fff; margin-bottom: 0.35rem; }
.dish-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }
.dish-tag {
  display: inline-block;
  margin-top: 0.7rem;
  padding: 0.18rem 0.65rem;
  border-radius: 20px;
  font-size: 0.71rem;
  font-weight: 600;
}
.tag-veg   { background: rgba(46,125,50,0.18); color: #66bb6a; border: 1px solid rgba(46,125,50,0.28); }
.tag-meat  { background: rgba(255,107,0,0.13); color: #ff8a50; border: 1px solid rgba(255,107,0,0.22); }
.tag-drink { background: rgba(240,180,41,0.13); color: #ffd54f; border: 1px solid rgba(240,180,41,0.22); }
.menu-footer { text-align: center; margin-top: 2.4rem; }

/* ─── LOCATIONS ───────────────────────────────────────────────────────────── */
#locations {
  background: var(--dark2);
  padding: 7rem 0;
}
.locations-header { margin-bottom: 2.8rem; }
.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}
.location-card {
  display: block;
  border-radius: 18px;
  padding: 1.8rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  transition: all 0.32s ease;
  position: relative;
  overflow: hidden;
}
.location-card:hover {
  border-color: rgba(255,107,0,0.32);
  background: rgba(255,107,0,0.04);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}
.loc-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--saffron);
  margin-bottom: 1.1rem;
}
.loc-city  { font-size: 1.25rem; font-weight: 800; color: #fff; margin-bottom: 0.28rem; }
.loc-address { font-size: 0.86rem; color: var(--text-muted); margin-bottom: 0.9rem; line-height: 1.5; }
.loc-meta  { display: flex; gap: 1.4rem; font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.loc-meta span { display: flex; align-items: center; gap: 0.35rem; }
.loc-link  {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--saffron);
  margin-top: 1.1rem;
  transition: gap 0.28s;
}
.location-card:hover .loc-link { gap: 0.65rem; }

/* ─── EVENTS ──────────────────────────────────────────────────────────────── */
#events {
  background: var(--dark);
  padding: 7rem 0;
}
.events-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.events-visual {
  border-radius: 20px;
  overflow: hidden;
  height: 440px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.events-visual img { width: 100%; height: 100%; object-fit: cover; }
.events-features { display: flex; flex-direction: column; gap: 0.75rem; margin: 1.4rem 0 1.8rem; }
.event-feature { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.event-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(46,125,50,0.18);
  border: 1px solid rgba(46,125,50,0.38);
  display: flex; align-items: center; justify-content: center;
  color: #66bb6a;
  flex-shrink: 0;
}

/* ─── MEMBERS ─────────────────────────────────────────────────────────────── */
#members {
  background: linear-gradient(135deg, #1c1005 0%, #0f1a0f 100%);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}
.members-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 20% 50%, rgba(240,180,41,0.05), transparent 50%),
    radial-gradient(ellipse 40% 60% at 80% 50%, rgba(46,125,50,0.05), transparent 50%);
}
.members-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.members-perks {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin: 2.2rem 0 2.8rem;
  flex-wrap: wrap;
}
.perk-card {
  padding: 1.4rem 1.2rem;
  border-radius: 15px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  min-width: 150px;
  text-align: center;
  transition: all 0.3s;
}
.perk-card:hover {
  border-color: rgba(240,180,41,0.38);
  background: rgba(240,180,41,0.06);
  transform: translateY(-4px);
}
.perk-icon { display: flex; justify-content: center; margin-bottom: 0.55rem; color: var(--gold); }
.perk-title { font-size: 0.84rem; font-weight: 700; color: #fff; margin-bottom: 0.28rem; }
.perk-desc  { font-size: 0.73rem; color: var(--text-muted); }

/* ─── ACTIONS ─────────────────────────────────────────────────────────────── */
#actions {
  background: #120900;
  padding: 5rem 0;
}
.actions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  max-width: 800px;
  margin: 0 auto;
}
.action-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
  padding: 2.4rem 1.8rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.32s ease;
  position: relative;
  overflow: hidden;
}
.action-card:hover { transform: translateY(-6px); }
.action-1 { background: linear-gradient(135deg, rgba(255,107,0,0.1), rgba(255,107,0,0.04)); border: 1px solid rgba(255,107,0,0.22); }
.action-1:hover { border-color: rgba(255,107,0,0.4); box-shadow: 0 20px 48px rgba(255,107,0,0.1); }
.action-2 { background: linear-gradient(135deg, rgba(37,211,102,0.1), rgba(37,211,102,0.04)); border: 1px solid rgba(37,211,102,0.22); }
.action-2:hover { border-color: rgba(37,211,102,0.4); box-shadow: 0 20px 48px rgba(37,211,102,0.1); }
.action-icon { margin-bottom: 1rem; color: var(--saffron); }
.action-2 .action-icon { color: #25D366; }
.action-title { font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: 0.45rem; }
.action-sub { font-size: 0.83rem; color: var(--text-muted); margin-bottom: 1.4rem; line-height: 1.55; }
.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 0.58rem 1.4rem;
  border-radius: 50px;
  transition: all 0.3s;
  background: var(--saffron);
  color: #fff;
}
.action-2 .action-btn { background: #25D366; color: #fff; }
.action-card:hover .action-btn { transform: scale(1.05); }

/* action-card-wrap: wraps the card + fallback link */
.action-card-wrap { display: flex; flex-direction: column; align-items: center; gap: 0; }
.action-card-wrap .action-card { width: 100%; }

/* WhatsApp fallback link */
.whatsapp-fallback {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0.65rem 0 0;
  text-align: center;
}
.whatsapp-fallback a {
  color: #25D366;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.whatsapp-fallback a:hover { opacity: 0.8; }

/* ─── GALLERY ─────────────────────────────────────────────────────────────── */
#gallery {
  background: var(--dark2);
  padding: 3.5rem 0;
  overflow: hidden;
}
.marquee-track { overflow: hidden; }
.marquee-wrapper {
  display: flex;
  gap: 1.2rem;
  animation: marqueeScroll 75s linear infinite;
  width: max-content;
  will-change: transform;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.gallery-item {
  width: 210px; height: 155px;
  border-radius: 14px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item span {
  position: absolute;
  bottom: 0; right: 0; left: 0;
  padding: 0.6rem 0.8rem 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
}

/* ─── PAGE BANNER (for inner pages) ─────────────────────────────────────── */
.page-banner {
  padding: 8rem 0 4rem;
  background: var(--dark2);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(255,107,0,0.07), transparent 60%);
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; color: #fff; }
.page-banner h1 span { color: var(--saffron); }
.page-banner p { font-size: 1rem; color: var(--text-muted); margin-top: 0.75rem; max-width: 480px; }

/* ─── FORM STYLES ─────────────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.3rem; }
.form-label { display: block; font-size: 0.84rem; font-weight: 600; color: rgba(255,255,255,0.75); margin-bottom: 0.45rem; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.78rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  font-family: 'Heebo', sans-serif;
  font-size: 0.93rem;
  color: #fff;
  direction: rtl;
  transition: border-color 0.3s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--saffron);
  background: rgba(255,107,0,0.04);
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.28); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { cursor: pointer; appearance: none; }
.form-select option { background: #1c1005; color: #fff; }

/* ─── RESPONSIVE ──────────────────────────────────────────────────────────── */

/* ── Tablet: ≤1024px ── */
@media (max-width: 1024px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .header-actions .btn { display: none; }
  .header-actions { order: -1; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { height: 340px; order: -1; }
  .about-spice-card { width: 100px; height: 100px; top: -1rem; left: -1rem; }
  .about-badge { width: 90px; height: 90px; bottom: -1rem; left: -1rem; }

  /* Events */
  .events-inner { grid-template-columns: 1fr; gap: 3rem; }
  .events-visual { height: 280px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* ── Mobile: ≤768px ── */
@media (max-width: 768px) {
  /* Container */
  .container { padding: 0 1.25rem; }

  /* Header — keep phone badge, hide WhatsApp btn */
  .header-actions .phone-badge { font-size: 0.78rem; padding: 0.32rem 0.6rem; }

  /* Mobile nav — bigger tap targets */
  .mobile-nav { gap: 0; padding: 6rem 2rem 2rem; justify-content: flex-start; align-items: flex-start; }
  .mobile-nav a {
    font-size: 1.45rem;
    width: 100%;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .mobile-nav a:last-child { border-bottom: none; }
  .mobile-close {
    top: 1.8rem;
    left: auto;
    right: 1.5rem;
    font-size: 2rem;
    color: rgba(255,255,255,0.7);
  }

  /* Hero */
  .hero-floats { display: none; }
  #hero { min-height: 100svh; }
  .hero-content { padding-top: 6rem; padding-bottom: 3rem; max-width: 100%; }
  .hero-cta { flex-direction: column; gap: 0.7rem; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 1.5rem; margin-top: 2.5rem; padding-top: 1.6rem; flex-wrap: wrap; }
  .stat-num { font-size: 1.6rem; }
  .stat-label { font-size: 0.7rem; }

  /* About */
  #about { padding: 4.5rem 0; }
  .about-visual { height: 260px; }
  .about-badge { width: 80px; height: 80px; }
  .about-badge-num { font-size: 1.4rem; }
  .about-badge-label { font-size: 0.55rem; }
  .about-spice-card { display: none; }

  /* Menu section */
  #menu { padding: 4.5rem 0; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .dish-img { height: 160px; }

  /* Locations / How to order */
  #locations { padding: 4.5rem 0; }
  .locations-grid { grid-template-columns: 1fr; }

  /* Events */
  #events { padding: 4.5rem 0; }

  /* Members / WhatsApp */
  #members { padding: 4.5rem 0; }
  .members-perks { flex-direction: column; align-items: center; }

  /* Action cards */
  #actions { padding: 3.5rem 0; }
  .actions-grid { grid-template-columns: 1fr; max-width: 420px; }
  .action-card { padding: 2rem 1.4rem; }

  /* Gallery */
  .gallery-item { width: 160px; height: 120px; }

  /* Page banner */
  .page-banner { padding: 6.5rem 0 3rem; }
  .page-banner h1 { font-size: clamp(1.8rem, 7vw, 2.8rem); }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 1.8rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.6rem; }
  .footer-legal { justify-content: center; }
  #footer { padding: 3rem 0 1.5rem; }
  .footer-tagline { max-width: 100%; }
  .social-links { justify-content: flex-start; }
}

/* ── Small mobile: ≤480px ── */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }

  /* Hero */
  .hero-title { font-size: 2.2rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .hero-eyebrow { font-size: 0.68rem; }
  .hero-stats { gap: 1.1rem; }
  .stat-num { font-size: 1.4rem; }

  /* Section titles */
  .section-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }

  /* Menu grid: single column on very small */
  .menu-grid { grid-template-columns: 1fr; }
  .dish-img { height: 200px; }

  /* Action cards full padding */
  .action-card { padding: 1.8rem 1.2rem; }
  .action-title { font-size: 1.08rem; }

  /* Gallery items smaller */
  .gallery-item { width: 140px; height: 105px; }

  /* Page banner */
  .page-banner { padding: 5.5rem 0 2.5rem; }

  /* Members section */
  .members-perks { flex-direction: column; align-items: center; }
  .perk-card { min-width: 100%; }
}

/* ── Tiny screens: ≤360px ── */
@media (max-width: 360px) {
  .hero-title { font-size: 1.9rem; }
  .hero-cta .btn { font-size: 0.85rem; padding: 0.7rem 1.4rem; }
  .stat-num { font-size: 1.2rem; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   ACCESSIBILITY WIDGET — כפתור נגישות
   ═══════════════════════════════════════════════════════════════════════════ */

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100%;
  right: 1rem;
  background: var(--saffron);
  color: #fff;
  padding: 0.55rem 1.1rem;
  border-radius: 0 0 10px 10px;
  z-index: 10000;
  font-family: 'Heebo', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: top 0.2s ease;
  white-space: nowrap;
}
.skip-link:focus { top: 0; outline: 3px solid #fff; outline-offset: 2px; }

/* Floating toggle button */
#a11y-toggle-btn {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 9999;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--saffron);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(255, 107, 0, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#a11y-toggle-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 26px rgba(255, 107, 0, 0.6);
}
#a11y-toggle-btn:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
  transform: scale(1.08);
}

/* Panel */
#a11y-panel {
  position: fixed;
  bottom: 5.8rem;
  left: 1.5rem;
  z-index: 9998;
  width: 272px;
  background: #1c1005;
  border: 1px solid rgba(255, 107, 0, 0.28);
  border-radius: 18px;
  padding: 1.2rem 1.1rem;
  box-shadow: 0 14px 48px rgba(0, 0, 0, 0.75);
  direction: rtl;
  font-family: 'Heebo', sans-serif;
}
#a11y-panel[hidden] { display: none; }

.a11y-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.9rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.a11y-panel-header h2 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.a11y-close-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.3rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.15rem 0.4rem;
  border-radius: 6px;
  transition: color 0.2s;
}
.a11y-close-btn:hover { color: #fff; }
.a11y-close-btn:focus-visible { outline: 2px solid var(--saffron); }

/* Controls list */
.a11y-controls {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
}
.a11y-controls button[role="switch"] {
  width: 100%;
  text-align: right;
  padding: 0.62rem 0.85rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  font-family: 'Heebo', sans-serif;
  font-size: 0.88rem;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.a11y-controls button[role="switch"]:hover {
  background: rgba(255, 107, 0, 0.1);
  color: #fff;
}
.a11y-controls button[role="switch"][aria-checked="true"] {
  background: rgba(255, 107, 0, 0.2);
  border-color: rgba(255, 107, 0, 0.45);
  color: #fff;
}
.a11y-controls button:focus-visible {
  outline: 2px solid var(--saffron);
  outline-offset: 2px;
}

/* Font size row */
.a11y-font-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.35rem 0.85rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}
.a11y-font-row > div { display: flex; gap: 0.35rem; }
.a11y-font-row button {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  font-family: 'Heebo', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  transition: background 0.2s;
}
.a11y-font-row button:hover { background: rgba(255, 107, 0, 0.15); color: #fff; }

/* Reset button */
.a11y-reset-btn {
  width: 100%;
  padding: 0.55rem 0.85rem;
  border-radius: 10px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  font-family: 'Heebo', sans-serif;
  font-size: 0.82rem;
  text-align: right;
  transition: color 0.2s, border-color 0.2s;
}
.a11y-reset-btn:hover { color: #fff; border-color: rgba(255, 255, 255, 0.3); }

/* Panel footer */
.a11y-panel-footer {
  margin-top: 0.8rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}
.a11y-panel-footer a {
  font-size: 0.78rem;
  color: rgba(255, 107, 0, 0.75);
  text-decoration: none;
}
.a11y-panel-footer a:hover { color: var(--saffron); }

/* ── Feature Overrides ───────────────────────────────────────────────────── */

/* High Contrast */
.a11y-high-contrast {
  --dark:       #000000;
  --dark2:      #0a0a0a;
  --text-muted: #e0e0e0;
  --border:     rgba(255, 255, 255, 0.45);
  --saffron:    #FFB347;
  --saffron-lt: #FFC875;
  --gold:       #FFE566;
}
.a11y-high-contrast body { color: #fff; }
.a11y-high-contrast #header.scrolled {
  background: #000 !important;
  border-bottom: 1px solid #fff;
}
.a11y-high-contrast .hero-overlay { background: rgba(0,0,0,0.92) !important; }
.a11y-high-contrast .dish-card,
.a11y-high-contrast .location-card,
.a11y-high-contrast .action-card { border-color: rgba(255,255,255,0.3) !important; }

/* Highlight Links */
.a11y-highlight-links a:not(#a11y-toggle-btn):not(#a11y-panel a) {
  text-decoration: underline !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 3px !important;
}
.a11y-highlight-links a:not(.btn):not(#a11y-toggle-btn):not(#a11y-panel a) {
  outline: 1px dashed var(--saffron) !important;
  outline-offset: 2px !important;
}

/* No Animations */
.a11y-no-animations *,
.a11y-no-animations *::before,
.a11y-no-animations *::after {
  animation-duration: 0.001ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.001ms !important;
}
.a11y-no-animations .marquee-wrapper { animation: none !important; }
.a11y-no-animations .hero-bg-img { animation: none !important; transform: scale(1.05); }
.a11y-no-animations html { scroll-behavior: auto !important; }

/* Focus Highlight */
.a11y-focus-visible *:focus {
  outline: 3px solid var(--saffron) !important;
  outline-offset: 3px !important;
  box-shadow: 0 0 0 6px rgba(255, 107, 0, 0.22) !important;
}
