/* ============================================================
   FIRINCI NO1 — site.css  (mobile-first)
   Palette: White + Orange
   Fonts: Bebas Neue (display) + Nunito (body)
   ============================================================ */

:root {
  --orange:      #FF6B00;
  --orange-lt:   #FF8C35;
  --orange-bg:   #FFF4EC;
  --orange-dim:  rgba(255,107,0,0.10);
  --white:       #FFFFFF;
  --off:         #FAFAF8;
  --text:        #1A1A1A;
  --muted:       #6B7280;
  --line:        rgba(26,26,26,0.09);
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.06);
  --shadow:      0 8px 32px rgba(0,0,0,0.09);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.12);
  --radius:      14px;
  --radius-lg:   22px;
  --header-h:    60px;
  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-body:    'Nunito', system-ui, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Layout ── */
.wrap {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 22px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .15s, background .15s, box-shadow .15s;
  white-space: nowrap;
  line-height: 1;
}
.btn:active { transform: scale(.97); }
.btn--orange {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  box-shadow: 0 4px 18px rgba(255,107,0,.30);
}
.btn--orange:hover { background: var(--orange-lt); }
.btn--outline {
  background: transparent;
  border-color: rgba(26,26,26,.18);
  color: var(--text);
}
.btn--outline:hover { border-color: var(--orange); color: var(--orange); }
.btn--sm { padding: 8px 16px; font-size: 13px; }

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s;
}
.header.scrolled { box-shadow: var(--shadow); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: .5px;
  color: var(--text);
  flex-shrink: 0;
}
.logo__icon { font-size: 20px; }
.logo__accent { color: var(--orange); }

/* Desktop nav */
.nav {
  display: none;
  gap: 2px;
  align-items: center;
}
.nav__link {
  padding: 7px 13px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  color: var(--muted);
  transition: color .15s, background .15s;
}
.nav__link:hover, .nav__link.active {
  color: var(--orange);
  background: var(--orange-dim);
}

/* Burger */
.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}
.burger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  padding: 10px 16px 18px;
  gap: 2px;
  transform: translateY(-110%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  box-shadow: var(--shadow);
  z-index: 99;
  visibility: hidden;
}
.mobile-nav.open { transform: translateY(0); visibility: visible; }
.mobile-nav__link {
  padding: 12px 14px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  transition: background .15s, color .15s;
}
.mobile-nav__link:hover { background: var(--orange-dim); color: var(--orange); }

/* ══════════════════════════════════════════
   HERO  — CRITICAL FIX: explicit min-height + z-index
══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--white);
}

/* Geo background — sits BEHIND content */
.hero__geo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.geo-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Floating food images */
.hero__food-imgs { position: absolute; inset: 0; z-index: 0; }
.food-float {
  position: absolute;
  border-radius: 50%;
  object-fit: cover;
  pointer-events: none;
  opacity: 0;
  animation: floatFadeIn .8s ease forwards;
}
.food-float--1 { width: 110px; height: 110px; top: 4%;   right: 2%;   filter: blur(1px);   animation-delay: .2s;  animation-name: floatFadeIn, floatBob1; animation-duration: .8s, 7s;  animation-fill-mode: forwards, none; animation-iteration-count: 1, infinite; animation-timing-function: ease, ease-in-out; }
.food-float--2 { width: 95px;  height: 95px;  top: 36%;  right: 1%;   filter: blur(1px);   animation-delay: .5s;  animation-name: floatFadeIn, floatBob2; animation-duration: .8s, 9s;  animation-fill-mode: forwards, none; animation-iteration-count: 1, infinite; animation-timing-function: ease, ease-in-out; }
.food-float--3 { width: 90px;  height: 90px;  bottom: 14%; right: 4%; filter: blur(1.5px); animation-delay: .8s;  animation-name: floatFadeIn, floatBob3; animation-duration: .8s, 11s; animation-fill-mode: forwards, none; animation-iteration-count: 1, infinite; animation-timing-function: ease, ease-in-out; }
.food-float--4 { width: 85px;  height: 85px;  top: 8%;   left: 1%;    filter: blur(1px);   animation-delay: 1.1s; animation-name: floatFadeIn, floatBob4; animation-duration: .8s, 8s;  animation-fill-mode: forwards, none; animation-iteration-count: 1, infinite; animation-timing-function: ease, ease-in-out; }
.food-float--5 { width: 80px;  height: 80px;  top: 52%;  left: 2%;    filter: blur(1.5px); animation-delay: 1.4s; animation-name: floatFadeIn, floatBob5; animation-duration: .8s, 10s; animation-fill-mode: forwards, none; animation-iteration-count: 1, infinite; animation-timing-function: ease, ease-in-out; }
.food-float--6 { width: 70px;  height: 70px;  bottom: 10%; left: 3%;  filter: blur(1px);   animation-delay: 1.7s; animation-name: floatFadeIn, floatBob6; animation-duration: .8s, 6s;  animation-fill-mode: forwards, none; animation-iteration-count: 1, infinite; animation-timing-function: ease, ease-in-out; }

@keyframes floatFadeIn {
  from { opacity: 0; transform: scale(.92); }
  to   { opacity: .13; transform: scale(1); }
}
@keyframes floatBob1 {
  0%, 100% { transform: translateX(0px); }
  50%       { transform: translateX(-38px); }
}
@keyframes floatBob2 {
  0%, 100% { transform: translateX(0px); }
  50%       { transform: translateX(-32px); }
}
@keyframes floatBob3 {
  0%, 100% { transform: translateX(0px); }
  50%       { transform: translateX(-36px); }
}
@keyframes floatBob4 {
  0%, 100% { transform: translateX(0px); }
  50%       { transform: translateX(40px); }
}
@keyframes floatBob5 {
  0%, 100% { transform: translateX(0px); }
  50%       { transform: translateX(34px); }
}
@keyframes floatBob6 {
  0%, 100% { transform: translateX(0px); }
  50%       { transform: translateX(30px); }
}

/* Content — sits ON TOP */
.hero__content {
  position: relative;
  z-index: 2;
  padding: 20px 0 40px;
  width: 100%;
  align-self: flex-start;
  margin-top: clamp(24px, 5vh, 48px);
}

.hero__eyebrow {
  display: inline-block;
  background: var(--orange-dim);
  color: var(--orange);
  border: 1px solid rgba(255,107,0,.20);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  animation: fadeUp .5s ease both;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(64px, 20vw, 160px);
  line-height: .92;
  letter-spacing: 1px;
  animation: fadeUp .6s .08s ease both;
}
.hero__title-line1 { display: block; color: var(--text); }
.hero__title-line2 { display: block; color: var(--orange); }
.hero__sub {
  font-size: 16px;
  color: var(--muted);
  margin: 16px 0 28px;
  max-width: 38ch;
  animation: fadeUp .6s .16s ease both;
}
.hero__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  animation: fadeUp .6s .24s ease both;
}

/* ══════════════════════════════════════════
   TICKER
══════════════════════════════════════════ */
.ticker {
  background: var(--orange);
  color: #fff;
  overflow: hidden;
  padding: 13px 0;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 1.5px;
  user-select: none;
}
.ticker__track {
  display: inline-flex;
  gap: 24px;
  animation: ticker 22s linear infinite;
}
.ticker__dot { opacity: .55; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════
   SECTIONS
══════════════════════════════════════════ */
.section { padding: 56px 0; }
.section--contact { background: var(--off); }
.section__head { margin-bottom: 28px; }
.section__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 7vw, 52px);
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.section__sub { color: var(--muted); font-size: 15px; }

/* ── Menu CTA ── */
.menu-cta__card {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  transition: transform .3s;
}
.menu-cta__card:active { transform: scale(.99); }
.menu-cta__img-wrap {
  position: relative;
  height: clamp(200px, 45vw, 460px);
}
.menu-cta__img { width: 100%; height: 100%; object-fit: cover; }
.menu-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.58) 0%, rgba(0,0,0,.12) 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
}
.menu-cta__label {
  font-family: var(--font-display);
  font-size: clamp(22px, 6vw, 52px);
  color: #fff;
  letter-spacing: 1px;
}
.menu-cta__arrow {
  font-size: clamp(28px, 7vw, 60px);
  color: var(--orange);
  font-family: var(--font-display);
  transition: transform .2s;
}

/* ── Contact ── */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.contact__card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
}
.contact__icon { font-size: 28px; margin-bottom: 12px; }
.contact__card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: .5px;
  margin-bottom: 8px;
}
.contact__card p { color: var(--muted); font-size: 14px; margin-bottom: 4px; }
.contact__card .btn { margin-top: 12px; }

/* ══════════════════════════════════════════
   MENU PAGE
══════════════════════════════════════════ */
.menu-hero {
  background: var(--orange);
  color: #fff;
  padding: 36px 0 30px;
}
.menu-hero__inner { position: relative; }
.menu-hero__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 12vw, 96px);
  letter-spacing: 2px;
  margin-bottom: 4px;
  margin-top: 10px;
}
.menu-hero__sub { font-size: 15px; opacity: .85; }

/* Back button */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.18);
  color: #fff;
  border: 1px solid rgba(255,255,255,.30);
  border-radius: 999px;
  padding: 7px 16px;
  font-weight: 800;
  font-size: 13px;
  transition: background .15s;
}
.back-btn:hover { background: rgba(255,255,255,.28); }

/* ── Category sticky nav ── */
.cat-nav {
  position: sticky;
  top: var(--header-h);
  z-index: 50;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--orange);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.cat-nav::-webkit-scrollbar { display: none; }
.cat-nav__inner {
  display: flex;
  gap: 4px;
  padding: 8px 12px;
  width: max-content;
  min-width: 100%;
}
.cat-nav__btn {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--muted);
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.cat-nav__btn:hover { background: var(--orange-dim); color: var(--orange); }
.cat-nav__btn.active { background: var(--orange); color: #fff; }

/* ── Menu sections ── */
.menu-sections {
  padding: 36px 0 64px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.menu-section__head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.menu-section__img-wrap {
  width: 80px;
  height: 80px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: var(--shadow);
}
.menu-section__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.menu-section:hover .menu-section__img-wrap img { transform: scale(1.08); }
.menu-section__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 5vw, 32px);
  letter-spacing: .3px;
  color: var(--text);
  margin-bottom: 4px;
}
.menu-section__desc { color: var(--muted); font-size: 13px; }

/* Menu items */
.menu-items {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  gap: 10px;
  transition: background .12s;
}
.menu-item:last-child { border-bottom: none; }
.menu-item:hover { background: var(--orange-bg); }

.menu-item__name { font-weight: 700; font-size: 14px; display: block; }
.menu-item__sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
  line-height: 1.4;
}
.menu-item__price {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--orange);
  letter-spacing: .3px;
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 2px;
}

/* Set/group items */
.menu-item--set {
  flex-direction: column;
  align-items: flex-start;
  background: var(--orange-bg);
}
.menu-item--set .menu-item__price { align-self: flex-end; }
.menu-item__set-name {
  font-weight: 900;
  font-size: 15px;
  color: var(--orange);
  margin-bottom: 4px;
}
.menu-item__set-desc { font-size: 12px; color: var(--muted); line-height: 1.5; margin-bottom: 6px; }

/* Pizza special layout */
.menu-item.pizza-item {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.pizza-info { width: 100%; }
.pizza-prices {
  display: flex;
  gap: 8px;
  align-self: flex-end;
  margin-left: auto;
}
.pizza-prices span {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--orange);
  background: var(--orange-dim);
  border-radius: 8px;
  padding: 3px 8px;
  min-width: 36px;
  text-align: center;
}
.pizza-size-legend {
  display: flex;
  gap: 8px;
  padding: 10px 16px;
  background: var(--off);
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}
.pizza-size-legend span {
  min-width: 36px;
  text-align: center;
}
.pizza-size-legend small { margin-left: auto; }

/* ══════════════════════════════════════════
   WHATSAPP FAB
══════════════════════════════════════════ */
.wa-fab {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  z-index: 200;
  transition: transform .2s;
}
.wa-fab:active { transform: scale(.93); }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--line);
  background: var(--off);
  padding: 20px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: .5px;
}
.footer__copy { font-size: 12px; color: var(--muted); }

/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════
   RESPONSIVE — TABLET+
══════════════════════════════════════════ */
@media (min-width: 600px) {
  :root { --header-h: 68px; }

  .nav { display: flex; }
  .burger { display: none; }

  .food-float--1 { width: 200px; height: 200px; top: 6%;   right: 4%;  }
  .food-float--2 { width: 140px; height: 140px; top: 42%;  right: 8%;  }
  .food-float--3 { width: 120px; height: 120px; bottom: 10%; right: 2%; }
  .food-float--4 { width: 170px; height: 170px; top: 8%;   left: 3%;   }
  .food-float--5 { width: 130px; height: 130px; top: 48%;  left: 2%;   }
  .food-float--6 { width: 100px; height: 100px; bottom: 12%; left: 6%; }

  .contact__grid { grid-template-columns: 1fr 1fr; }

  .menu-section__img-wrap { width: 110px; height: 110px; }
  .menu-section__title { font-size: clamp(22px, 4vw, 34px); }

  .menu-item__name { font-size: 15px; }
  .menu-item__price { font-size: 20px; }

  .menu-item.pizza-item { flex-direction: row; align-items: center; }
  .pizza-info { flex: 1; }
  .pizza-prices { align-self: center; }
}

@media (min-width: 900px) {
  .contact__grid { grid-template-columns: repeat(3, 1fr); }

  .menu-section__head { gap: 22px; }
  .menu-section__img-wrap { width: 130px; height: 130px; }

  .menu-item { padding: 15px 22px; }
  .menu-item__name { font-size: 15px; }
}