/* ============================================================
   BIG STAR — style.css  →  css/style.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cairo:wght@400;500;600;700&family=DM+Sans:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* ── Variables ── */
:root {
  --gold:     #FFC800;
  --orange:   #F47A20;
  --red:      #C0392B;
  --green:    #25D366;
  --dark:     #111110;
  --dark2:    #1c1c1a;
  --page-bg:  #0e0e0c;
  --card-bg:  #181817;
  --card2-bg: #1f1f1d;
  --border:   rgba(255,200,0,.1);
  --text:     #eeebe2;
  --muted:    #7a7a72;
  --hover:    rgba(255,255,255,.04);
  --pill:     999px;
  --t:        .18s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--page-bg);
  color: var(--text);
  font-family: 'Cairo', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;

   -webkit-user-select: none; /* Chrome, Safari */
   -moz-user-select: none;    /* Firefox */
   -ms-user-select: none;     /* IE/Edge */
   user-select: none;         /* Standard */
}
img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }

::-webkit-scrollbar       { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

/* ── Bilingual helpers ── */
.t-ar     { font-family: 'Cairo', sans-serif; }
.t-fr     { font-family: 'DM Sans', sans-serif; }
.t-sep    { color: var(--gold); opacity: .5; margin: 0 6px; }
.t-sep-sm { color: var(--muted); margin: 0 4px; font-size: .85em; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--dark2);
  position: relative;
  overflow: hidden;
  padding: clamp(24px,6vw,52px) 16px clamp(20px,5vw,40px);
  text-align: center;
  border-bottom: 2px solid var(--gold);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -55deg, transparent, transparent 22px,
    rgba(255,200,0,.03) 22px, rgba(255,200,0,.03) 44px
  );
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,200,0,.12) 0%, transparent 68%);
  top: -100px; left: 50%; transform: translateX(-50%);
  pointer-events: none;
}
.hero-logo {
  width: clamp(84px,22vw,128px);
  height: clamp(84px,22vw,128px);
  object-fit: contain;
  margin: 0 auto 16px;
  position: relative;
  filter: drop-shadow(0 4px 24px rgba(255,200,0,.38));
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px,13vw,80px);
  letter-spacing: clamp(4px,1.8vw,10px);
  color: #fff;
  line-height: 1;
  position: relative;
}
.hero-title span { color: var(--orange); }

.hero-tagline {
  margin-top: 12px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  font-size: clamp(12px,3vw,14px);
  color: var(--muted);
}

/* ============================================================
   CONTACT BAR
   ============================================================ */
.contact-bar {
  background: var(--gold);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px,3vw,24px);
  padding: 10px 16px;
  flex-wrap: wrap;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  font-size: clamp(12px,3vw,14px);
  color: var(--dark);
  white-space: nowrap;
}
/* phone numbers always LTR */
.ci-num {
  direction: ltr;
  unicode-bidi: embed;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  letter-spacing: .5px;
}
.ci-icon { font-size: 15px; }

.ci-delivery {
  font-size: clamp(11px,2.8vw,13px);
  font-weight: 600;
  gap: 4px;
}
.ci-delivery .t-ar { font-size: clamp(11px,2.8vw,13px); }
.ci-delivery .t-fr { font-size: clamp(10px,2.6vw,12px); font-style: italic; }

/* ============================================================
   NAV TABS
   ============================================================ */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark2);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,.5);
}
.nav-tabs {
  display: flex;
  gap: 6px;
  padding: 10px 12px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.nav-tabs::-webkit-scrollbar { display: none; }

.nav-tab {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 15px;
  border-radius: var(--pill);
  border: 1.5px solid rgba(255,200,0,.18);
  background: transparent;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--t);
  line-height: 1.3;
}
.nav-tab .tab-emoji { font-size: 14px; line-height: 1; }
/* bilingual tab label */
.tab-labels {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.tab-ar {
  font-family: 'Cairo', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  direction: rtl;
}
.tab-fr {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  opacity: .7;
  line-height: 1.2;
  direction: ltr;
}
.nav-tab.active {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.nav-tab.active .tab-fr { opacity: .6; }
.nav-tab:hover:not(.active) { border-color: rgba(255,200,0,.45); color: var(--text); }

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding-bottom: 1.8rem;
  scroll-margin-top: 58px;
}

/* ── Section header ── */
.sec-header {
  display: flex;
  align-items: stretch;
}
.sec-img-wrap {
  width: clamp(110px,27vw,210px);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  min-height: 110px;
}
.sec-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.6);
  transition: filter .3s;
}
.sec-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 0%, rgba(14,14,12,.7) 100%);
}
.sec-info {
  flex: 1;
  background: var(--card-bg);
  padding: clamp(12px,3vw,24px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 2px solid var(--border);
}

/* bilingual title block */
.sec-titles {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.sec-title-ar {
  font-family: 'Cairo', sans-serif;
  font-size: clamp(20px,5.5vw,32px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
  direction: rtl;
}
.sec-title-fr {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(19px,3vw,22px);
  font-weight: 500;
  color: var(--yellow);
  letter-spacing: 1px;
  text-transform: uppercase;
  direction: ltr;
}
.sec-note {
  margin-top: 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--orange);
  display: flex;
  gap: 4px;
  align-items: center;
  flex-wrap: wrap;
}
.sec-unavail {
  margin-top: 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--red);
  background: rgba(192,57,43,.13);
  padding: 4px 10px;
  border-radius: var(--pill);
  width: fit-content;
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

/* ── Pizza note ── */
.pizza-note {
  background: var(--card2-bg);
  border-bottom: 1px solid var(--border);
  padding: 6px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  flex-wrap: wrap;
}
.pn-g { color: var(--gold);   font-weight: 700; font-family: 'DM Sans', sans-serif; }
.pn-p { color: var(--orange); font-weight: 700; font-family: 'DM Sans', sans-serif; }
.pn-s { color: var(--muted); }

/* ── Items list ── */
.items-list { background: var(--card2-bg); }
.section.unavailable .items-list { opacity: .38; pointer-events: none; }

.item-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,.035);
  gap: 8px;
  transition: background var(--t);
}
.item-row:hover      { background: var(--hover); }
.item-row:last-child { border-bottom: none; }

/* Arabic name — right aligned */
.item-ar {
  font-family: 'Cairo', sans-serif;
  font-size: clamp(14px,3vw,16px);
  font-weight: 600;
  color: var(--text);
  text-align: right;
  direction: rtl;
}
/* French name — left aligned */
.item-fr {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(14px,2.6vw,16px);
  font-weight: 400;
  color: var(--yellow);
  text-align: left;
  direction: ltr;
}
.item-price-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
}
.price-tag {
  background: var(--gold);
  color: var(--dark);
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(14px,2.6vw,16px);
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--pill);
  white-space: nowrap;
  direction: ltr;
}
.price-tag.petite {
  background: var(--orange);
  font-size: clamp(13px,2.4vw,14px);
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 22px;
  left: 22px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--dark2);
  border: 1.5px solid rgba(37,211,102,.3);
  padding: 10px 16px 10px 12px;
  border-radius: var(--pill);
  box-shadow: 0 4px 22px rgba(0,0,0,.45);
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t);
  text-decoration: none;
}
.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,.25);
}
.wa-float svg { flex-shrink: 0; }
.wa-label {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.2;
}
.wa-label .t-ar {
  font-family: 'Cairo', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  direction: rtl;
}
.wa-label .t-fr {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: var(--muted);
  direction: ltr;
}
.wa-label .t-sep-sm { display: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark2);
  border-top: 2px solid var(--gold);
  padding: clamp(28px,6vw,52px) 16px clamp(80px,18vw,100px);
  text-align: center;
}
.footer-logo {
  width: 70px;
  margin: 0 auto 14px;
  opacity: .85;
  filter: drop-shadow(0 2px 10px rgba(255,200,0,.2));
}
.footer-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 5px;
  color: var(--orange);
}
.footer-phones {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  direction: ltr;
}
.footer-phones a { color: var(--gold); }
.footer-phones span { color: var(--muted); }
.footer-copy {
  margin-top: 10px;
  font-size: 11px;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.7;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.section { animation: fadeUp .3s ease both; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 380px) {
  .item-row      { padding: 9px 10px; gap: 5px; }
  .sec-img-wrap  { width: 95px; }
  .wa-float      { bottom: 14px; left: 14px; padding: 8px 12px 8px 10px; }
}
@media (min-width: 680px) {
  .nav-tabs      { justify-content: center; flex-wrap: wrap; }
  .items-list    { display: grid; grid-template-columns: 1fr 1fr; }
  .item-row      { border-left: 1px solid rgba(255,255,255,.035); }
  .sec-img-wrap  { width: 230px; }
}
@media (min-width: 1024px) {
  .sec-img-wrap  { width: 280px; }
}
