/* ===== TOKENS ===== */
:root {
  --cream:    #FFF8E7;
  --red:      #D9321E;
  --red-dark: #A8200F;
  --yellow:   #F5C518;
  --yellow-dk:#D4A000;
  --teal:     #1A7A6E;
  --teal-lt:  #23A693;
  --dark:     #1C1207;
  --ink:      #2D1F0A;
  --muted:    #7A6548;
  --card-bg:  #FFFDF5;
  --checker1: #D9321E;
  --checker2: #FFF8E7;

  --font-display: 'Fredoka One', cursive;
  --font-fun:     'Boogaloo', cursive;
  --font-body:    'Nunito', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: hidden;
}

/* ===== CHECKER BARS ===== */
.checker-bar {
  height: 18px;
  background-image: repeating-linear-gradient(
    90deg,
    var(--checker1) 0px, var(--checker1) 18px,
    var(--checker2) 18px, var(--checker2) 36px
  );
}
.checker-bar.bottom {
  background-image: repeating-linear-gradient(
    90deg,
    var(--checker2) 0px, var(--checker2) 18px,
    var(--checker1) 18px, var(--checker1) 36px
  );
}

/* ===== HEADER ===== */
.header {
  background: var(--dark);
  padding: 28px 24px 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(245,197,24,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.header-inner { position: relative; z-index: 1; }
.logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.logo-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--red);
  border: 3px solid var(--yellow);
  border-radius: 12px;
  padding: 8px 20px 8px 12px;
}
.logo-icon { font-size: 2.2rem; }
.logo-name {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: 1px;
}
.logo-sub {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.65rem;
  color: var(--cream);
  letter-spacing: 5px;
  margin-top: 2px;
}
.neon-tag {
  background: var(--yellow);
  color: var(--dark);
  font-family: var(--font-fun);
  font-size: 1rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 6px;
  letter-spacing: 2px;
  animation: pulse-tag 2s ease-in-out infinite;
}
@keyframes pulse-tag {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,197,24,0.6); }
  50%       { box-shadow: 0 0 0 8px rgba(245,197,24,0); }
}
.header-tagline {
  font-family: var(--font-fun);
  font-size: 1.15rem;
  color: var(--muted);
  letter-spacing: 1.5px;
}

/* ===== HERO ===== */
.hero {
  background: var(--dark);
  padding: 60px 24px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-bg-text {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(120px, 30vw, 280px);
  color: rgba(245,197,24,0.04);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.hero-content { position: relative; z-index: 1; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 5rem);
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 20px;
}
.hero-title span { color: var(--yellow); }
.hero-desc {
  font-size: 1.05rem;
  color: #B8A88A;
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.hero-hint {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 18px;
  font-style: italic;
}

/* ===== ORDER BUTTON ===== */
.btn-order {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.3rem;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  border: 3px solid #1aad54;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 6px 0 #1aad54;
}
.btn-order:hover {
  transform: translateY(-3px);
  box-shadow: 0 9px 0 #1aad54;
}
.btn-order:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #1aad54;
}
.btn-order.large { font-size: 1.4rem; padding: 18px 42px; }
.btn-icon { font-size: 1.3em; }

/* ===== FOOD STRIP ===== */
.hero-food-strip {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  padding: 0 12px 0;
  flex-wrap: wrap;
}
.food-float {
  font-size: clamp(3rem, 7vw, 5rem);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(70px, 12vw, 110px);
  height: clamp(70px, 12vw, 110px);
  background: rgba(255,255,255,0.04);
  border: 2px solid rgba(245,197,24,0.15);
  border-radius: 20px;
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
  animation: float-bob 3s ease-in-out infinite;
  position: relative;
}
.food-float:nth-child(1) { animation-delay: 0s; }
.food-float:nth-child(2) { animation-delay: 0.4s; }
.food-float:nth-child(3) { animation-delay: 0.8s; }
.food-float:nth-child(4) { animation-delay: 1.2s; }
.food-float:nth-child(5) { animation-delay: 1.6s; }
.food-float:nth-child(6) { animation-delay: 2.0s; }

@keyframes float-bob {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
.food-float:hover {
  background: rgba(245,197,24,0.12);
  border-color: var(--yellow);
  transform: translateY(-16px) scale(1.15);
  animation-play-state: paused;
}
.food-float::after {
  content: attr(title);
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--yellow);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s;
}
.food-float:hover::after { opacity: 1; }

/* ===== FOOD POPUP ===== */
.food-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,6,2,0.8);
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px);
}
.food-popup.active { display: flex; }
.popup-card {
  background: var(--cream);
  border-radius: 24px;
  padding: 40px 36px;
  text-align: center;
  max-width: 380px;
  width: 100%;
  border: 4px solid var(--yellow);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  animation: pop-in 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes pop-in {
  from { transform: scale(0.7); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.popup-emoji {
  font-size: 5rem;
  margin-bottom: 12px;
  animation: spin-once 0.5s ease-out;
}
@keyframes spin-once {
  from { transform: rotate(-20deg) scale(0.5); }
  to   { transform: rotate(0deg) scale(1); }
}
.popup-name {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--red);
  margin-bottom: 10px;
}
.popup-desc {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
}
.popup-order {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  border: 3px solid #1aad54;
  box-shadow: 0 4px 0 #1aad54;
  transition: transform 0.1s, box-shadow 0.1s;
  margin-bottom: 14px;
  display: block;
}
.popup-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #1aad54;
}
.popup-close {
  background: none;
  border: 2px solid var(--muted);
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 8px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  margin-top: 6px;
}
.popup-close:hover { background: var(--muted); color: #fff; }

/* ===== VIBES ===== */
.vibes {
  background: var(--red);
  padding: 48px 24px;
}
.vibes-inner {
  display: flex;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.vibe-card {
  flex: 1 1 220px;
  text-align: center;
  color: var(--cream);
  padding: 12px 8px;
}
.vibe-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 10px;
}
.vibe-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--yellow);
}
.vibe-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  opacity: 0.88;
}

/* ===== MENU TEASER ===== */
.menu-teaser {
  padding: 72px 24px;
  text-align: center;
  background: var(--cream);
}
.section-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 4px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-label.light { color: var(--yellow); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--ink);
  margin-bottom: 40px;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}
.menu-item {
  background: var(--card-bg);
  border: 2px solid #E8DCC8;
  border-radius: 20px;
  padding: 28px 16px 20px;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.menu-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--yellow);
  opacity: 0;
  transition: opacity 0.2s;
  border-radius: 18px;
}
.menu-item:hover {
  transform: translateY(-6px) rotate(-1deg);
  border-color: var(--yellow);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}
.menu-item:hover::before { opacity: 0.06; }
.menu-emoji {
  font-size: 3rem;
  margin-bottom: 10px;
  display: block;
  position: relative;
  transition: transform 0.2s;
}
.menu-item:hover .menu-emoji { transform: scale(1.25) rotate(8deg); }
.menu-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.menu-hint {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
}

/* ===== HOW IT WORKS ===== */
.how {
  background: #FFF0D0;
  padding: 72px 24px;
  text-align: center;
  border-top: 3px dashed #E8DCC8;
  border-bottom: 3px dashed #E8DCC8;
}
.how .section-title { margin-bottom: 50px; }
.how-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.how-step {
  flex: 1 1 180px;
  max-width: 220px;
  text-align: center;
  padding: 16px 12px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--red);
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.step-icon {
  font-size: 2.8rem;
  margin-bottom: 12px;
  display: block;
}
.how-step h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.how-step p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}
.how-divider {
  font-size: 1.8rem;
  color: var(--yellow-dk);
  font-weight: 900;
  align-self: center;
  padding: 0 8px;
  margin-top: -20px;
}

/* ===== CTA + QR ===== */
.cta-section {
  background: var(--dark);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '🍔🍕🍟🥪🍝🍰';
  position: absolute;
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
  font-size: 8rem;
  opacity: 0.04;
  letter-spacing: -10px;
  pointer-events: none;
}
.cta-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.cta-text { text-align: left; flex: 1 1 300px; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4rem);
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 16px;
}
.cta-desc {
  color: #B8A88A;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 340px;
}

/* ===== QR ===== */
.qr-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.qr-frame {
  background: var(--cream);
  border: 4px solid var(--yellow);
  border-radius: 20px;
  padding: 18px 18px 14px;
  text-align: center;
  box-shadow: 0 0 40px rgba(245,197,24,0.2);
}
.qr-label-top {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: var(--red);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.qr-box {
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qr-box svg {
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
.qr-label-bottom {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 10px;
  font-weight: 600;
}
.qr-arrow {
  font-family: var(--font-fun);
  font-size: 1.1rem;
  color: var(--yellow);
  animation: bounce-left 1.5s ease-in-out infinite;
}
@keyframes bounce-left {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(-8px); }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--ink);
  padding: 40px 24px;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--yellow);
  margin-bottom: 8px;
}
.footer-text {
  color: #A89070;
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.footer-small {
  color: #5A4830;
  font-size: 0.78rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .cta-text { text-align: center; }
  .cta-desc { margin: 0 auto 28px; }
  .how-divider { display: none; }
  .how-steps { gap: 20px; }
  .hero-food-strip { gap: 8px; }
  .food-float { width: 60px; height: 60px; font-size: 2.2rem; border-radius: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .food-float, .neon-tag, .qr-arrow { animation: none; }
}
.custom-logo img{
    width: 500px;
    max-width:60vw;
    height:auto;
    display:block;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 14px 0;
}
.footer-links a {
  color: #C9B289;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover {
  color: var(--yellow);
  text-decoration: underline;
}
.footer-dot {
  color: #5A4830;
  font-size: 0.7rem;
}

/* ===== POLICY PAGES ===== */
.policy-page {
  background: var(--cream);
  min-height: 100vh;
}
.policy-header {
  background: var(--dark);
  padding: 36px 24px;
  text-align: center;
}
.policy-header a.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--yellow);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 16px;
}
.policy-header a.back-link:hover { text-decoration: underline; }
.policy-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  color: var(--yellow);
}
.policy-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  line-height: 1.8;
  color: var(--ink);
}
.policy-content h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--red);
  margin: 32px 0 12px;
}
.policy-content h2:first-child { margin-top: 0; }
.policy-content p, .policy-content li {
  font-size: 0.96rem;
  color: var(--muted);
  margin-bottom: 10px;
}
.policy-content ul, .policy-content ol {
  padding-left: 22px;
  margin-bottom: 16px;
}
.policy-content strong { color: var(--ink); }
.policy-content a { color: var(--teal-lt); }
.policy-updated {
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 28px;
}
.contact-card {
  background: var(--card-bg);
  border: 2px solid #E8DCC8;
  border-radius: 16px;
  padding: 24px;
  margin: 20px 0;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.contact-row:last-child { margin-bottom: 0; }
.contact-icon { font-size: 1.3rem; flex-shrink: 0; }
.contact-row a { color: var(--ink); text-decoration: none; font-weight: 600; }
.contact-row a:hover { color: var(--red); }
