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

:root {
  --bg: #EEE5DB;
  --green-500: #71EB4E;
  --green-600: #74C95C;
  --green-800: #255119;
  --green-900: #1B3B11;
  --blue-500: #8E9CE9;
  --blue-600: #7481C8;
  --blue-800: #273063;
  --blue-900: #0D1542;
  --grey-800: #2F2E2E;
  --grey-900: #171717;
  --neutral-600: #55636F;
  --surface: rgba(255, 255, 255, 0.45);
  --surface-border: rgba(47, 46, 46, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  background: var(--bg);
  color: var(--grey-900);
  min-height: 100dvh;
  position: relative;
}

/* Floating festival confetti / dots */
.confetti {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.confetti span {
  position: absolute;
  border-radius: 50%;
  opacity: 0.35;
  animation: float linear infinite;
}

@keyframes float {
  0% {
    transform: translateY(110vh) rotate(0deg) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 0.35;
  }
  90% {
    opacity: 0.35;
  }
  100% {
    transform: translateY(-10vh) rotate(720deg) scale(0.5);
    opacity: 0;
  }
}

/* Subtle stage glow at the bottom */
.stage-glow {
  position: fixed;
  bottom: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: 60%;
  background: radial-gradient(
    ellipse at center,
    rgba(142, 156, 233, 0.12) 0%,
    rgba(113, 235, 78, 0.06) 40%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.site-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 0;
}

.site-logo {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--grey-900);
  text-decoration: none;
}

.site-logo:hover {
  color: var(--green-800);
}

.site-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--neutral-600);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--grey-900);
}

.site-footer {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.5rem 2.5rem;
  text-align: center;
}

.site-footer a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--neutral-600);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: var(--grey-900);
}
