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

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

body {
  font-family: 'Nunito', Arial Rounded MT Bold, system-ui, sans-serif;
  background: #FFF8DC;
  color: #1A1A1A;
  line-height: 1.6;
}

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

/* ── Brand Checker Divider ────────────────────────────── */
.checker {
  height: 18px;
  background-image: repeating-linear-gradient(
    90deg,
    #D70832 0px, #D70832 18px,
    #FFF8DC 18px, #FFF8DC 36px
  );
}

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, opacity 0.15s;
  white-space: nowrap;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-whatsapp { background: #25D366; color: #fff; }
.btn-primary  { background: #FAD002; color: #001521; }
.btn-outline  {
  background: transparent;
  color: #FFF8DC;
  border: 2px solid #FFF8DC;
}

/* ── Navigation ───────────────────────────────────────── */
#navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #FFF8DC;
  border-bottom: 3px solid #FAD002;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#navbar .nav-logo { height: 44px; width: auto; }

#nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
#nav-links a {
  font-weight: 700;
  font-size: 0.95rem;
  color: #001521;
  letter-spacing: 0.3px;
}
#nav-links a:hover { color: #D70832; }

#hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
#hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: #001521;
  border-radius: 2px;
  transition: all 0.25s;
}

@media (max-width: 767px) {
  #hamburger { display: flex; }

  #nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #FFF8DC;
    border-bottom: 3px solid #FAD002;
    padding: 0.5rem 0;
  }
  #nav-links.nav-open { display: flex; }
  #nav-links a {
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid #f0e8b0;
  }
  .nav-cta { display: none !important; }
}

/* ── Shared hero typography ───────────────────────────── */
.hero-tagline {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #001521;
  line-height: 1.2;
  margin-bottom: 0.4rem;
}
.hero-tagline em     { font-style: italic; font-weight: 700; }
.hero-tagline strong { color: #D70832; }

.hero-sub {
  font-size: 1rem;
  color: #444;
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Hero A : Carousel ────────────────────────────────── */
.hero-a {
  background: #FFF8DC;
  padding: 3.5rem 1.5rem;
}

.hero-a-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-a-inner {
    grid-template-columns: 1fr;
  }
  .hero-a .hero-ctas { justify-content: center; }
  .hero-a .hero-tagline,
  .hero-a .hero-sub   { text-align: center; }
}

.hero-a-logo {
  height: 80px;
  width: auto;
  margin-bottom: 1.5rem;
  display: block;
}

/* Carousel */
.carousel-outer {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.carousel-viewport { overflow: hidden; }
.carousel-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.carousel-slide {
  position: relative;
  min-width: 100%;
  flex-shrink: 0;
}
.carousel-slide img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}
@media (max-width: 767px) {
  .carousel-slide img { height: 260px; }
}
.slide-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1rem 0.75rem;
  background: linear-gradient(transparent, rgba(0,21,33,0.72));
  color: #FFF8DC;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,248,220,0.92);
  border: none;
  border-radius: 50%;
  width: 42px; height: 42px;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #001521;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  transition: background 0.2s;
  z-index: 2;
}
.carousel-btn:hover { background: #FAD002; }
.carousel-prev { left: 12px; }
.carousel-next { right: 12px; }
.carousel-dots {
  display: flex;
  gap: 7px;
  justify-content: center;
  padding: 10px 12px;
  background: rgba(255,248,220,0.95);
}
.carousel-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.carousel-dot.active { background: #D70832; transform: scale(1.4); }

/* ── Hero B : Collage ─────────────────────────────────── */
.hero-b {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #001521;
}

.collage-bg {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 3px;
  opacity: 0.28;
}
.collage-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,21,33,0.45);
}

.hero-b-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 680px;
}
.hero-b-logo {
  height: 100px;
  width: auto;
  margin-bottom: 1.5rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.4));
}
.hero-b .hero-tagline { color: #FFF8DC; }
.hero-b .hero-tagline strong { color: #FAD002; }
.hero-b .hero-sub { color: rgba(255,248,220,0.75); }
.hero-b .hero-ctas { justify-content: center; }

/* ── Bowl Strip ───────────────────────────────────────── */
#bowl-strip {
  position: relative;
  background: url('assets/bowl.png') center / 300px auto;
  padding: 4rem 1.5rem;
  overflow: hidden;
}
#bowl-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,248,220,0.92);
}

.bowl-strip-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.bowl-strip-inner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: #001521;
  margin-bottom: 0.5rem;
}
.bowl-strip-inner p {
  color: #555;
  margin-bottom: 2.5rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

.step-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  text-align: center;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FAD002;
  color: #001521;
  font-weight: 900;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}
.step-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.step-card h3 { font-size: 1rem; font-weight: 900; color: #001521; margin-bottom: 0.25rem; }
.step-card p  { font-size: 0.85rem; color: #666; }

/* ── Section Shared ───────────────────────────────────── */
section { padding: 4rem 1.5rem; }

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: #001521;
  margin-bottom: 0.4rem;
}
.section-subtitle {
  color: #666;
  margin-bottom: 2.5rem;
}

/* ── Menu Section ─────────────────────────────────────── */
#menu { background: #FFF8DC; }

.lang-tabs,
.menu-cat-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 2rem;
  border-radius: 50px;
  background: #e8dfa0;
  width: fit-content;
  padding: 4px;
  flex-wrap: wrap;
}
.menu-cat-tabs { margin-top: 1.5rem; }

.lang-tab,
.menu-cat-tab {
  padding: 8px 24px;
  border-radius: 50px;
  border: none;
  background: transparent;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  color: #555;
  transition: all 0.2s;
}
.lang-tab.active,
.menu-cat-tab.active {
  background: #FAD002;
  color: #001521;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.menu-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.menu-card-header {
  background: #001521;
  color: #FAD002;
  padding: 0.75rem 1.25rem;
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.menu-card-body { padding: 1rem 1.25rem; }

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.55rem 0;
  border-bottom: 1px dashed #f0e8b0;
  gap: 0.5rem;
}
.menu-item:last-child { border-bottom: none; }
.menu-item-name { font-weight: 700; font-size: 0.95rem; }
.menu-item-note { font-size: 0.78rem; color: #888; font-style: italic; }
.menu-item-price {
  font-weight: 900;
  color: #D70832;
  font-size: 0.95rem;
  white-space: nowrap;
}

.menu-sizes {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.2rem;
}
.size-badge {
  background: #FFF8DC;
  border: 1px solid #FAD002;
  border-radius: 50px;
  padding: 2px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #001521;
}

.menu-img-wrap {
  margin-top: 2.5rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.menu-img-wrap img { width: 100%; height: auto; }

.pdf-downloads {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* Arabic tab */
.ar-menu-wrap { text-align: center; }
.ar-menu-wrap p { margin-bottom: 1.5rem; font-size: 1rem; color: #555; }
.ar-menu-wrap .pdf-downloads { justify-content: center; }

/* ── Specials ─────────────────────────────────────────── */
#specials { background: #001521; }
#specials .section-title { color: #FAD002; }
#specials .section-subtitle { color: #aaa; }

.specials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.special-card {
  border-radius: 20px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.special-card.gold  { background: #FAD002; color: #001521; }
.special-card.red   { background: #D70832; color: #fff; }
.special-card.dark  { background: #0d2a3a; color: #FFF8DC; border: 1px solid #1e4a66; }

.special-emoji { font-size: 2.5rem; }
.special-price { font-size: 2.2rem; font-weight: 900; line-height: 1; }
.special-name  { font-size: 1.2rem; font-weight: 900; }
.special-desc  { font-size: 0.9rem; opacity: 0.85; line-height: 1.5; }
.special-note  { font-size: 0.8rem; font-weight: 700; opacity: 0.7; }

/* ── About ────────────────────────────────────────────── */
#about { background: #FFF8DC; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 767px) {
  .about-grid { grid-template-columns: 1fr; }
}

.about-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.about-img img { width: 100%; height: auto; object-fit: contain; }

.about-text h2 { margin-bottom: 1rem; }
.about-text p  { color: #444; margin-bottom: 1.25rem; line-height: 1.7; }

.about-tagline {
  font-size: 1.4rem;
  font-weight: 900;
  color: #D70832;
  font-style: italic;
  margin-bottom: 1.5rem !important;
  line-height: 1.3;
}

.momo-box {
  background: #001521;
  color: #FFF8DC;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.momo-box .momo-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; color: #aaa; }
.momo-box .momo-code  { font-size: 1.8rem; font-weight: 900; color: #FAD002; letter-spacing: 2px; }
.momo-box .momo-name  { font-size: 0.85rem; color: #ccc; }

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: #001521;
  font-size: 1rem;
}
.instagram-link:hover { color: #D70832; }

/* ── Find Us ──────────────────────────────────────────── */
#find-us { background: #f5e9a0; }

.find-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 767px) {
  .find-grid { grid-template-columns: 1fr; }
}

.contact-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0e8b0;
}
.contact-item:last-of-type { border-bottom: none; margin-bottom: 1.5rem; }
.contact-icon { font-size: 1.2rem; line-height: 1.6; flex-shrink: 0; }
.contact-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.5px; color: #888; }
.contact-value { font-weight: 700; font-size: 0.95rem; color: #001521; }

.map-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.1);
  height: 380px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ── Footer ───────────────────────────────────────────── */
footer {
  background: #001521;
  color: #FFF8DC;
  padding: 3rem 1.5rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
}
@media (max-width: 767px) {
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
}

.footer-brand img { height: 48px; width: auto; margin-bottom: 0.75rem; }
.footer-brand p   { font-size: 0.9rem; color: #aaa; max-width: 280px; line-height: 1.6; }

.footer-col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #FAD002;
  margin-bottom: 0.75rem;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 0.88rem;
  color: #bbb;
  margin-bottom: 0.4rem;
  line-height: 1.5;
}
.footer-col a:hover { color: #FAD002; }

.footer-bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid #1e3a50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #666;
}
.footer-disclaimer { font-size: 0.75rem; color: #555; font-style: italic; }

/* ── Utilities ────────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
