/* ============================
   CHINDO – Chicken N Dori
   styles.css
   ============================ */

/* ---- TOKENS ---- */
:root {
  --red: #E31E24;
  --red-dark: #b5181d;
  --yellow: #FFC72C;
  --yellow-dark: #e6a800;
  --black: #1E1E1E;
  --white: #FFFFFF;
  --gray: #F5F5F5;
  --gray2: #e8e8e8;
  --text: #333333;
  --text-light: #666666;
  --green-brand: #1A4731;
  --green-light: #7BC44F;
  --font: 'Outfit', sans-serif;
  --bebas: 'Bebas Neue', sans-serif;
  --radius: 16px;
  --shadow: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-hover: 0 16px 48px rgba(0,0,0,0.2);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font); color: var(--text); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
select, input, textarea { font-family: var(--font); }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ---- SHARED COMPONENTS ---- */
.section-badge {
  display: inline-block;
  background: var(--red);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.section-title {
  font-family: var(--bebas);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 10px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(227,30,36,0.35);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(227,30,36,0.45);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--black);
  font-weight: 600;
  font-size: 1rem;
  padding: 13px 28px;
  border-radius: 100px;
  border: 2px solid var(--black);
  cursor: pointer;
  transition: var(--transition);
}
.btn-secondary:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.hidden { display: none !important; }

/* ========================
   SPIN WHEEL POPUP
   ======================== */
.spin-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.spin-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.spin-overlay.hidden { display: none !important; }
.spin-modal {
  background: white;
  border-radius: 24px;
  padding: 36px 32px;
  max-width: 380px;
  width: 92vw;
  text-align: center;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
  transform: scale(0.92);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.spin-overlay.open .spin-modal {
  transform: scale(1);
  opacity: 1;
}
@keyframes popUp { from { transform: scale(0.7); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.spin-close {
  position: absolute; top: 14px; right: 16px;
  font-size: 1.2rem; color: #999; cursor: pointer;
  transition: color 0.2s;
}
.spin-close:hover { color: var(--red); }
.spin-emoji { font-size: 2.5rem; }
.spin-modal h2 { font-size: 1.4rem; font-weight: 800; margin: 8px 0 6px; }
.spin-modal p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 20px; }
.wheel-container { position: relative; display: inline-block; margin-bottom: 16px; }
.wheel-pointer {
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  font-size: 1.8rem; color: var(--red); z-index: 2; text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
#spin-wheel { border-radius: 50%; box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
.btn-spin {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white; font-weight: 800; font-size: 1rem;
  padding: 14px 36px; border-radius: 100px; border: none; cursor: pointer;
  width: 100%; transition: var(--transition);
  box-shadow: 0 4px 20px rgba(227,30,36,0.4);
}
.btn-spin:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(227,30,36,0.5); }
.btn-spin:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.spin-result { margin-top: 14px; font-size: 1.1rem; font-weight: 700; min-height: 32px; color: var(--red); }
.spin-note { font-size: 0.75rem; color: #aaa; margin-top: 10px; }

/* ========================
   NAVBAR
   ======================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}
.navbar.scrolled {
  background: white;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
  padding: 10px 0;
}
.nav-container {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; gap: 24px;
}
.nav-logo { flex-shrink: 0; }
.logo-img { height: 44px; width: auto; }
.nav-menu {
  display: flex; align-items: center; gap: 4px;
  margin-left: auto;
}
.nav-link {
  font-size: 0.88rem; font-weight: 600;
  padding: 8px 12px; border-radius: 8px;
  color: white; transition: var(--transition);
}
.navbar.scrolled .nav-link { color: var(--black); }
.nav-link:hover, .nav-link.active { background: rgba(255,255,255,0.2); }
.navbar.scrolled .nav-link:hover { background: var(--gray); }
.btn-order-now {
  background: var(--red); color: white;
  font-weight: 700; font-size: 0.88rem;
  padding: 10px 22px; border-radius: 100px;
  transition: var(--transition); white-space: nowrap; flex-shrink: 0;
}
.btn-order-now:hover { background: var(--red-dark); transform: translateY(-1px); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; margin-left: auto; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: var(--transition); }
.navbar.scrolled .nav-toggle span { background: var(--black); }

/* ========================
   HERO SECTION
   ======================== */
.hero-section {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1A4731 0%, #0d2a1d 40%, #1E1E1E 100%);
}
.hero-parallax-bg {
  position: absolute; inset: -20%; z-index: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(255,199,44,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 60%, rgba(227,30,36,0.12) 0%, transparent 60%);
  will-change: transform;
}
.hero-img-layer {
  position: absolute; right: -5%; top: 0; bottom: 0;
  width: 55%; z-index: 1; will-change: transform;
  display: flex; align-items: center;
}
.hero-food-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  mask-image: linear-gradient(to left, rgba(0,0,0,0.9) 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.9) 60%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 3;
  padding: 120px 24px 80px;
  max-width: 1200px; margin: 0 auto; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,199,44,0.2); border: 1px solid rgba(255,199,44,0.4);
  color: var(--yellow); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; padding: 6px 14px; border-radius: 100px;
  margin-bottom: 20px; text-transform: uppercase;
}
.hero-title {
  display: flex; flex-direction: column;
  gap: 0;
}
.title-chindo {
  font-family: var(--bebas);
  font-size: clamp(4rem, 12vw, 9rem);
  letter-spacing: 0.05em;
  line-height: 0.9;
  background: linear-gradient(135deg, var(--yellow) 0%, #ff9900 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.title-sub {
  font-family: var(--bebas);
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 10px;
}
.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700; color: white;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero-desc {
  font-size: 1rem; color: rgba(255,255,255,0.75);
  max-width: 440px; margin-bottom: 32px; line-height: 1.6;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-btns .btn-secondary { color: white; border-color: rgba(255,255,255,0.5); }
.hero-btns .btn-secondary:hover { background: white; color: var(--black); }
.hero-stats {
  display: flex; align-items: center; gap: 24px;
}
.stat-item { display: flex; flex-direction: column; }
.stat-num { font-size: 1.5rem; font-weight: 800; color: var(--yellow); }
.stat-lbl { font-size: 0.78rem; color: rgba(255,255,255,0.6); }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.2); }
.crumbs-container { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.crumb {
  position: absolute;
  font-size: 1.2rem; will-change: transform;
  animation: crumbFall linear infinite;
  opacity: 0.7;
}
@keyframes crumbFall {
  0% { transform: translateY(-60px) rotate(0deg); opacity: 0.8; }
  100% { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}
.sauce-drop {
  position: absolute; top: 15%; right: 8%; z-index: 4;
  width: 80px; height: 120px;
  background: radial-gradient(ellipse at 50% 0%, var(--red) 0%, transparent 70%);
  border-radius: 0 0 50% 50%;
  animation: sauceDrip 3s ease-in-out infinite;
  opacity: 0.7;
}
@keyframes sauceDrip {
  0%,100% { transform: scaleY(1) translateY(0); }
  50% { transform: scaleY(1.15) translateY(8px); }
}
.scroll-indicator {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 0.75rem; letter-spacing: 0.1em;
  z-index: 5; animation: bounceScroll 2s infinite;
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid rgba(255,255,255,0.4);
  border-bottom: 2px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
}
@keyframes bounceScroll {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ========================
   MENU SECTION
   ======================== */
.menu-section {
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--white) 0%, #fffbf0 100%);
}
.menu-tabs {
  display: flex; justify-content: center; gap: 12px;
  flex-wrap: wrap; margin-bottom: 40px;
}
.tab-btn {
  background: var(--gray); color: var(--text);
  font-weight: 600; font-size: 0.9rem;
  padding: 12px 24px; border-radius: 100px;
  transition: var(--transition); border: 2px solid transparent;
}
.tab-btn:hover { border-color: var(--yellow); }
.tab-btn.active { background: var(--red); color: white; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1200px; margin: 0 auto;
  align-items: stretch;
}
.menu-card {
  background: white; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.menu-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.menu-card-img { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.menu-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.menu-card:hover .menu-card-img img { transform: scale(1.08); }
.menu-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.menu-card:hover .menu-overlay { opacity: 1; }
.btn-detail {
  background: white; color: var(--black);
  font-weight: 700; font-size: 0.9rem;
  padding: 10px 22px; border-radius: 100px;
  transition: var(--transition);
}
.btn-detail:hover { background: var(--yellow); }
.menu-badge-hot {
  position: absolute; top: 12px; left: 12px;
  background: var(--red); color: white;
  font-size: 0.7rem; font-weight: 700;
  padding: 4px 10px; border-radius: 100px;
}
.menu-card-info {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.menu-card-info h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.menu-card-info p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.5;
  min-height: 64px;
}
.menu-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.menu-cal { font-size: 0.78rem; color: #999; background: #f5f5f5; padding: 3px 8px; border-radius: 6px; }
.menu-price { font-size: 1.1rem; font-weight: 800; color: var(--red); }
.btn-add-cart {
  width: 100%; background: var(--yellow); color: var(--black);
  font-weight: 700; font-size: 0.9rem; padding: 10px;
  border-radius: 10px; transition: var(--transition);
  margin-top: auto;
}
.btn-add-cart:hover { background: var(--yellow-dark); transform: scale(1.02); }
.btn-add-cart.shake { animation: cartShake 0.4s ease; }
@keyframes cartShake {
  0%,100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

/* ========================
   GALLERY SECTION
   ======================== */
.gallery-section {
  padding: 96px 24px 70px;
  background:
    radial-gradient(circle at 12% 16%, rgba(255,199,44,0.22) 0%, transparent 34%),
    radial-gradient(circle at 86% 84%, rgba(227,30,36,0.16) 0%, transparent 38%),
    linear-gradient(180deg, #fff5df 0%, #fff 100%);
}
.gallery-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 24px;
}
.gallery-hero {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 460px;
  box-shadow: 0 18px 46px rgba(0,0,0,0.16);
}
.gallery-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.08) 38%, rgba(0,0,0,0.52) 100%);
}
.gallery-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-hero-badge {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 2;
  background: rgba(0,0,0,0.54);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.38);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: 0 12px 34px rgba(0,0,0,0.13);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 24px 12px 11px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  letter-spacing: 0.03em;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.76) 100%);
}
.gallery-marquee {
  max-width: 1200px;
  margin: 22px auto 0;
  overflow: hidden;
  background: var(--black);
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  white-space: nowrap;
  padding: 12px 0;
  min-width: 100%;
  animation: galleryMarquee 24s linear infinite;
}
.marquee-track span {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@keyframes galleryMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 1024px) {
  .gallery-inner { grid-template-columns: 1fr; }
  .gallery-hero { min-height: 380px; }
}
@media (max-width: 768px) {
  .gallery-section { padding: 80px 16px 56px; }
  .gallery-grid { gap: 12px; }
  .gallery-hero { min-height: 280px; border-radius: 18px; }
  .gallery-item { border-radius: 14px; }
  .marquee-track span { font-size: 0.74rem; }
  .menu-tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: thin;
  }
  .tab-btn {
    flex: 0 0 auto;
    white-space: nowrap;
  }
  .popup-modal {
    width: 100%;
    padding: 24px 18px;
  }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .menu-card-info p { min-height: 0; }
}

/* ========================
   POPUP / CART
   ======================== */
.popup-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  z-index: 2000; display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.popup-overlay.open { display: flex; }
.popup-modal {
  background: white; border-radius: 20px;
  max-width: 480px; width: 90vw;
  padding: 32px; position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
  animation: popUp 0.3s ease;
  max-height: min(86vh, 700px);
  overflow-y: auto;
}
.popup-close {
  position: absolute; top: 14px; right: 16px;
  font-size: 1.3rem; color: #999; cursor: pointer;
}
.popup-close:hover { color: var(--red); }
.popup-content img { border-radius: 12px; margin-bottom: 16px; aspect-ratio: 4/3; object-fit: cover; }
.popup-content h2 { font-size: 1.4rem; font-weight: 800; margin-bottom: 8px; }
.popup-content .popup-price { font-size: 1.8rem; font-weight: 900; color: var(--red); margin-bottom: 8px; }
.popup-content p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 20px; line-height: 1.6; }

.cart-sidebar {
  position: fixed; top: 0; right: calc(-1 * min(380px, 92vw)); width: min(380px, 92vw); height: 100vh;
  background: white; z-index: 3000;
  box-shadow: -8px 0 32px rgba(0,0,0,0.15);
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
}
.cart-sidebar.open { right: 0; }
.cart-header {
  padding: 20px 24px; display: flex;
  align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--gray2);
}
.cart-header h3 { font-size: 1.1rem; font-weight: 700; }
.cart-close { font-size: 1.3rem; color: #999; cursor: pointer; }
.cart-close:hover { color: var(--red); }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty { text-align: center; color: #ccc; padding: 40px 0; font-size: 1.1rem; }
.cart-item { display: flex; gap: 12px; align-items: center; padding: 12px 0; border-bottom: 1px solid #f0f0f0; }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; font-size: 0.9rem; }
.cart-item-price { font-size: 0.85rem; color: var(--red); font-weight: 700; }
.cart-item-qty { display: flex; align-items: center; gap: 8px; }
.qty-btn { width: 28px; height: 28px; border-radius: 50%; background: var(--gray); font-size: 1rem; font-weight: 700; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); }
.qty-btn:hover { background: var(--red); color: white; }
.cart-footer { padding: 20px 24px; border-top: 1px solid var(--gray2); }
.cart-total { display: flex; justify-content: space-between; font-size: 1.1rem; font-weight: 700; margin-bottom: 14px; }
#cart-total-price { color: var(--red); }
.btn-checkout { width: 100%; background: var(--red); color: white; font-weight: 700; font-size: 1rem; padding: 14px; border-radius: 12px; transition: var(--transition); }
.btn-checkout:hover { background: var(--red-dark); }
.cart-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 2999; display: none; }
.cart-backdrop.open { display: block; }
.cart-fab {
  position: fixed; bottom: 84px; right: 20px; z-index: 1500;
  background: var(--red); color: white;
  font-size: 1.4rem; width: 56px; height: 56px;
  border-radius: 50%; border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(227,30,36,0.45);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.cart-fab:hover { transform: scale(1.1); }
.cart-fab.bounce { animation: cartFabBounce 0.4s ease; }
@keyframes cartFabBounce {
  0%,100% { transform: scale(1); }
  40% { transform: scale(1.25); }
  70% { transform: scale(0.92); }
}
.cart-badge {
  position: absolute; top: 6px; right: 6px;
  background: var(--yellow); color: var(--black);
  font-size: 0.7rem; font-weight: 800;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ========================
   POLISH OVERRIDES
   ======================== */
:root {
  --shadow: 0 12px 40px rgba(18, 18, 18, 0.14);
  --shadow-hover: 0 22px 56px rgba(18, 18, 18, 0.22);
  --radius: 18px;
}

body {
  background: linear-gradient(180deg, #fff7e6 0%, #ffffff 24%, #ffffff 100%);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.section-header {
  margin-bottom: 56px;
}

.navbar {
  background: linear-gradient(180deg, rgba(10, 18, 14, 0.72), rgba(10, 18, 14, 0));
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.nav-link {
  letter-spacing: 0.02em;
}
.nav-link:hover,
.nav-link.active {
  background: rgba(255, 199, 44, 0.2);
  color: #fff;
}
.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  background: rgba(255, 199, 44, 0.35);
  color: var(--black);
}
.btn-order-now {
  box-shadow: 0 10px 24px rgba(227, 30, 36, 0.35);
}

.hero-section::before,
.hero-section::after {
  content: '';
  position: absolute;
  z-index: 0;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(0px);
  opacity: 0.45;
  pointer-events: none;
}
.hero-section::before {
  left: -120px;
  top: 10%;
  background: radial-gradient(circle, rgba(255, 199, 44, 0.35) 0%, rgba(255, 199, 44, 0) 70%);
}
.hero-section::after {
  right: -160px;
  bottom: 5%;
  background: radial-gradient(circle, rgba(227, 30, 36, 0.3) 0%, rgba(227, 30, 36, 0) 70%);
}
.hero-content {
  padding-top: 140px;
  opacity: 1;
  transform: none;
}
.hero-desc {
  font-size: 1.05rem;
}
.hero-stats {
  gap: 16px;
  background: rgba(10, 18, 14, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 18px;
  border-radius: 14px;
  max-width: 520px;
}
.stat-divider {
  height: 44px;
}

.menu-section {
  background: linear-gradient(180deg, #fff7e6 0%, #fffdf7 100%);
}
.menu-tabs {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 8px;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}
.tab-btn {
  border-radius: 999px;
  background: transparent;
}
.tab-btn.active {
  background: linear-gradient(135deg, var(--red), #ff4a4a);
  color: #fff;
  box-shadow: 0 10px 24px rgba(227, 30, 36, 0.35);
}
.menu-card {
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.menu-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.28) 100%);
  opacity: 0.6;
  pointer-events: none;
}
.menu-badge-hot {
  background: rgba(227, 30, 36, 0.95);
  box-shadow: 0 8px 18px rgba(227, 30, 36, 0.25);
}
.btn-add-cart {
  border-radius: 12px;
}

.gallery-section {
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 199, 44, 0.28) 0%, transparent 38%),
    radial-gradient(circle at 88% 85%, rgba(227, 30, 36, 0.2) 0%, transparent 40%),
    linear-gradient(180deg, #fff3d2 0%, #fff 100%);
}
.gallery-hero-badge {
  text-transform: uppercase;
}

.kids-section {
  background: linear-gradient(180deg, #fff7e6 0%, #fff2f5 100%);
}
.kids-feature {
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.birthday-box {
  box-shadow: 0 16px 44px rgba(255, 153, 0, 0.2);
}

.event-section {
  background: #111;
}
.event-overlay {
  background: linear-gradient(135deg, rgba(227, 30, 36, 0.8) 0%, rgba(20, 20, 20, 0.9) 100%);
}
.event-services h3 {
  letter-spacing: 0.02em;
}
.event-pkg {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.06);
}

.order-section {
  background: linear-gradient(180deg, #ffffff 0%, #fff7e6 100%);
}
.order-step {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.payment-item {
  background: #fff;
}

.join-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 199, 44, 0.16) 0%, transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 42%);
  z-index: 0;
  pointer-events: none;
}
.join-container {
  position: relative;
  z-index: 1;
}
.franchise-card {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.about-section {
  background: linear-gradient(180deg, #fff 0%, #fff7e6 100%);
}
.timeline-content {
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.footer {
  background: linear-gradient(180deg, #141414 0%, #0b0b0b 100%);
}
.footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.12);
}

@media (max-width: 1024px) {
  .hero-content {
    padding-top: 120px;
  }
  .hero-stats {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-section::before,
  .hero-section::after {
    width: 280px;
    height: 280px;
  }
  .hero-content {
    padding-top: 110px;
  }
  .menu-tabs {
    box-shadow: none;
  }
  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
  }
  .stat-divider {
    width: 100%;
    height: 1px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
