:root {
  --brand: #87CEEB;
  --secondary: #FF69B4;
  --bg: #0A0A0A;
  --fg: #FFFFFF;
  --display-font: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --body-font: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--body-font);
  background: var(--bg);
  color: var(--fg);
}

.font-display {
  font-family: var(--display-font);
  letter-spacing: -0.02em;
}

#hero-canvas { pointer-events: none; }

::selection {
  background: var(--secondary);
  color: #fff;
}

.bg-bg { background-color: var(--bg); }
.text-fg { color: var(--fg); }
.text-fg\/40 { color: color-mix(in srgb, var(--fg) 40%, transparent); }
.text-fg\/50 { color: color-mix(in srgb, var(--fg) 50%, transparent); }
.text-fg\/70 { color: color-mix(in srgb, var(--fg) 70%, transparent); }
.text-fg\/75 { color: color-mix(in srgb, var(--fg) 75%, transparent); }

body[data-theme="light"] [class*="border-white/"] { border-color: rgba(0,0,0,0.08) !important; }
body[data-theme="light"] [class*="bg-white/"] { background-color: rgba(0,0,0,0.025) !important; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

[data-bind] {
  animation: fade-up 0.8s ease-out backwards;
}

.service-card { animation: fade-up 0.8s ease-out backwards; }
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

/* Flavor cards */
.flavor-card {
  animation: fade-up 0.7s ease-out backwards;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.flavor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.flavor-card:nth-child(1) { animation-delay: 0.1s; }
.flavor-card:nth-child(2) { animation-delay: 0.18s; }
.flavor-card:nth-child(3) { animation-delay: 0.26s; }
.flavor-card:nth-child(4) { animation-delay: 0.34s; }
.flavor-card:nth-child(5) { animation-delay: 0.42s; }
.flavor-card:nth-child(6) { animation-delay: 0.50s; }

/* Event type cards */
.event-type-card {
  animation: fade-up 0.7s ease-out backwards;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.event-type-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}
.event-type-card:nth-child(1) { animation-delay: 0.1s; }
.event-type-card:nth-child(2) { animation-delay: 0.18s; }
.event-type-card:nth-child(3) { animation-delay: 0.26s; }
.event-type-card:nth-child(4) { animation-delay: 0.34s; }

/* Step circles */
.step-circle {
  transition: transform 0.25s ease;
  animation: float 4s ease-in-out infinite;
}
.step-circle:nth-child(1) { animation-delay: 0s; }
.step-circle:nth-child(2) { animation-delay: 1.3s; }
.step-circle:nth-child(3) { animation-delay: 2.6s; }
.step-circle:hover {
  transform: scale(1.1);
}

/* Candy gradient text */
.candy-gradient {
  background: linear-gradient(135deg, var(--brand) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Divider candy stripe */
.candy-divider {
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--secondary), var(--brand));
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
  border-radius: 2px;
}
