@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&family=Poppins:wght@300;400;600;700;900&display=swap');

:root {
  --purple: #8b5cf6;
  --purple-dark: #6d28d9;
  --purple-light: #a78bfa;
  --neon-purple: #c084fc;
  --neon-pink: #e879f9;
  --neon-magenta: #d946ef;
  --gold: #fbbf24;
  --red: #ef4444;
  --bg-dark: #0a0a0f;
  --bg-card: #111118;
  --bg-card-hover: #1a1a25;
  --text: #f0f0f5;
  --text-dim: #9ca3af;
  --glow: 0 0 10px var(--neon-purple), 0 0 40px rgba(139,92,246,0.3);
  --glow-strong: 0 0 10px var(--neon-purple), 0 0 40px var(--neon-purple), 0 0 80px rgba(139,92,246,0.4);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
}

/* ---- Particle canvas ---- */
#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ---- Smoke overlay ---- */
.smoke-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(139,92,246,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(168,85,247,0.04) 0%, transparent 50%);
  animation: smokeShift 12s ease-in-out infinite alternate;
}
@keyframes smokeShift {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

/* ---- Header / Nav ---- */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(139,92,246,0.15);
  transition: box-shadow 0.3s;
}
header.scrolled {
  box-shadow: 0 4px 30px rgba(139,92,246,0.15);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.8rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: 'Permanent Marker', cursive;
  font-size: 1.6rem;
  color: var(--neon-purple);
  text-shadow: var(--glow);
  text-decoration: none;
  letter-spacing: 1px;
}
.nav-brand span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s, text-shadow 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--neon-purple);
  box-shadow: 0 0 8px var(--neon-purple);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--text); text-shadow: 0 0 8px rgba(192,132,252,0.4); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
}

.hero-logo {
  width: min(380px, 80vw);
  height: auto;
  border-radius: 50%;
  border: 3px solid var(--purple);
  box-shadow: var(--glow-strong);
  animation: logoPulse 4s ease-in-out infinite, logoFloat 6s ease-in-out infinite;
  margin-bottom: 2rem;
}
@keyframes logoPulse {
  0%, 100% { box-shadow: 0 0 10px var(--neon-purple), 0 0 40px rgba(139,92,246,0.3); }
  50% { box-shadow: 0 0 20px var(--neon-purple), 0 0 60px var(--neon-purple), 0 0 100px rgba(139,92,246,0.3); }
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero h1 {
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  color: var(--neon-purple);
  text-shadow: var(--glow-strong);
  margin-bottom: 0.5rem;
  animation: fadeInUp 1s 0.3s both;
}

.hero .tagline {
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: var(--neon-pink);
  text-shadow: 0 0 15px rgba(232,121,249,0.5);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 0.5rem;
  animation: fadeInUp 1s 0.5s both;
}

.hero .sub {
  font-size: 1rem;
  color: var(--text-dim);
  margin-bottom: 2rem;
  animation: fadeInUp 1s 0.7s both;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 1s 0.9s both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.25s, box-shadow 0.25s;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--neon-magenta));
  color: #fff;
  box-shadow: 0 4px 25px rgba(139,92,246,0.4);
}
.btn-primary:hover { box-shadow: 0 6px 35px rgba(139,92,246,0.6); }

.btn-outline {
  background: transparent;
  color: var(--neon-purple);
  border: 2px solid var(--purple);
  box-shadow: 0 0 15px rgba(139,92,246,0.15);
}
.btn-outline:hover {
  background: rgba(139,92,246,0.1);
  box-shadow: 0 0 25px rgba(139,92,246,0.3);
}

/* ---- Section titles ---- */
.section {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.section-title {
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--neon-purple);
  text-shadow: var(--glow);
}

.section-subtitle {
  text-align: center;
  color: var(--text-dim);
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

/* ---- Neon divider ---- */
.neon-divider {
  height: 2px;
  max-width: 200px;
  margin: 0 auto 3rem;
  background: linear-gradient(90deg, transparent, var(--neon-purple), transparent);
  box-shadow: 0 0 12px var(--neon-purple);
  border: none;
}

/* ---- Menu grid ---- */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.menu-card {
  background: var(--bg-card);
  border: 1px solid rgba(139,92,246,0.12);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
  position: relative;
  overflow: hidden;
}
.menu-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(circle at top right, rgba(139,92,246,0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 40px rgba(139,92,246,0.2);
  border-color: rgba(139,92,246,0.3);
}
.menu-card:hover::before { opacity: 1; }

.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.menu-card h3 {
  font-family: 'Permanent Marker', cursive;
  font-size: 1.4rem;
  color: var(--text);
}

.menu-price {
  font-family: 'Permanent Marker', cursive;
  font-size: 1.6rem;
  color: var(--gold);
  text-shadow: 0 0 10px rgba(251,191,36,0.3);
}

.menu-card p {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.menu-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-free {
  background: rgba(139,92,246,0.15);
  color: var(--neon-purple);
  border: 1px solid rgba(139,92,246,0.3);
}

/* ---- Flavor pills ---- */
.flavors {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.flavor-pill {
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(139,92,246,0.25);
  background: rgba(139,92,246,0.08);
  color: var(--text);
  transition: all 0.3s;
}
.flavor-pill:hover {
  background: rgba(139,92,246,0.2);
  border-color: var(--neon-purple);
  box-shadow: 0 0 15px rgba(139,92,246,0.2);
  transform: scale(1.05);
}
.flavor-pill .emoji { margin-right: 0.3rem; }

/* ---- Info cards ---- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid rgba(139,92,246,0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 30px rgba(139,92,246,0.15);
}

.info-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.info-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.info-card p {
  color: var(--text-dim);
  font-size: 0.95rem;
}

.info-card a {
  color: var(--neon-purple);
  text-decoration: none;
  transition: color 0.3s;
}
.info-card a:hover { color: var(--neon-pink); }

/* ---- Floating Za Sauce banner ---- */
.sauce-banner {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, rgba(139,92,246,0.15), rgba(217,70,239,0.1));
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
  animation: bannerGlow 3s ease-in-out infinite alternate;
}
@keyframes bannerGlow {
  0% { box-shadow: 0 0 20px rgba(139,92,246,0.1); }
  100% { box-shadow: 0 0 40px rgba(139,92,246,0.25); }
}

.sauce-banner h3 {
  font-family: 'Permanent Marker', cursive;
  font-size: 1.5rem;
  color: var(--gold);
  text-shadow: 0 0 10px rgba(251,191,36,0.3);
  margin-bottom: 0.5rem;
}
.sauce-banner p { color: var(--text-dim); }

/* ---- Footer ---- */
footer {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem 1.5rem;
  border-top: 1px solid rgba(139,92,246,0.1);
  color: var(--text-dim);
  font-size: 0.85rem;
}
footer a {
  color: var(--neon-purple);
  text-decoration: none;
}

/* ---- Scroll animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s, transform 0.8s;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Drinks row ---- */
.drinks-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.drink-tag {
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  background: rgba(251,191,36,0.1);
  border: 1px solid rgba(251,191,36,0.25);
  color: var(--gold);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10,10,15,0.97);
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(139,92,246,0.15);
  }
  .nav-toggle { display: block; }
  .menu-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 5rem; }
  .hero-logo { width: min(280px, 70vw); }
}

/* ---- Weekly menu badge ---- */
.weekly-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(239,68,68,0.15);
  color: var(--red);
  border: 1px solid rgba(239,68,68,0.3);
  animation: badgePulse 2s ease-in-out infinite;
  margin-bottom: 1rem;
}
@keyframes badgePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* ---- Crescent moon ---- */
.moon {
  position: absolute;
  top: 8%;
  right: 10%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow:
    inset -15px -2px 0 0 #fbbf24,
    0 0 20px rgba(251,191,36,0.3),
    0 0 60px rgba(251,191,36,0.1);
  animation: moonGlow 5s ease-in-out infinite alternate;
  z-index: 1;
}
@keyframes moonGlow {
  0% { box-shadow: inset -15px -2px 0 0 #fbbf24, 0 0 20px rgba(251,191,36,0.3), 0 0 60px rgba(251,191,36,0.1); }
  100% { box-shadow: inset -15px -2px 0 0 #fde68a, 0 0 35px rgba(251,191,36,0.5), 0 0 80px rgba(251,191,36,0.2); }
}

/* ---- Delivery banner ---- */
.delivery-banner {
  background: linear-gradient(135deg, var(--purple-dark), var(--neon-magenta));
  border-radius: 16px;
  padding: 1.5rem 2rem;
  text-align: center;
  max-width: 500px;
  margin: 2rem auto 0;
  box-shadow: 0 4px 30px rgba(139,92,246,0.3);
}
.delivery-banner p {
  font-size: 1.2rem;
  font-weight: 700;
}
.delivery-banner .price {
  font-family: 'Permanent Marker', cursive;
  font-size: 2rem;
  color: var(--gold);
  text-shadow: 0 0 10px rgba(251,191,36,0.5);
}

/* ---- Loading screen ---- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.6s, visibility 0.6s;
}
.loader.hidden {
  opacity: 0;
  visibility: hidden;
}
.loader-text {
  font-family: 'Permanent Marker', cursive;
  font-size: 2rem;
  color: var(--neon-purple);
  text-shadow: var(--glow-strong);
  animation: loaderPulse 1.5s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%, 100% { opacity: 0.5; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1); }
}
