/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --white: #ffffff;
  --orange: #ff914d;
  --orange-soft: #fff4eb;
  --orange-dark: #e06b20;
  --sky-blue: #5ec8f2;
  --sky-blue-soft: #e8f7fd;
  --sky-blue-dark: #2a9fd4;
  --light-green: #8ee4a8;
  --light-green-soft: #edfbf2;
  --light-green-dark: #3dab5e;
  --bg: #ffffff;
  --bg-soft: #f9fcfe;
  --bg-card: #ffffff;
  --bg-card-hover: #f5fbff;
  --text: #1a3347;
  --text-muted: #5a7a8f;
  --border: rgba(94, 200, 242, 0.28);
  --shadow: 0 4px 24px rgba(94, 200, 242, 0.12);
  --shadow-hover: 0 8px 32px rgba(255, 145, 77, 0.18);
  --gradient-brand: linear-gradient(135deg, var(--sky-blue), var(--light-green), var(--orange));
  --font-display: 'Syne', sans-serif;
  --font-body: 'Outfit', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ── Background Effects ── */
.aurora {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 70% 50% at 10% 0%, rgba(142, 228, 168, 0.22), transparent),
    radial-gradient(ellipse 60% 45% at 90% 10%, rgba(94, 200, 242, 0.2), transparent),
    radial-gradient(ellipse 55% 40% at 50% 100%, rgba(255, 145, 77, 0.12), transparent),
    var(--white);
}

.stars {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    radial-gradient(6px 6px at 12% 18%, rgba(94, 200, 242, 0.35), transparent),
    radial-gradient(5px 5px at 28% 62%, rgba(142, 228, 168, 0.3), transparent),
    radial-gradient(4px 4px at 52% 8%, rgba(255, 145, 77, 0.25), transparent),
    radial-gradient(5px 5px at 72% 38%, rgba(94, 200, 242, 0.28), transparent),
    radial-gradient(4px 4px at 88% 72%, rgba(142, 228, 168, 0.25), transparent),
    radial-gradient(6px 6px at 18% 88%, rgba(255, 145, 77, 0.2), transparent),
    radial-gradient(4px 4px at 82% 14%, rgba(94, 200, 242, 0.22), transparent),
    radial-gradient(7px 7px at 46% 48%, rgba(142, 228, 168, 0.35), transparent);
  animation: twinkle 8s ease-in-out infinite alternate;
}

@keyframes twinkle {
  from { opacity: 0.7; }
  to { opacity: 1; }
}

/* ── Header ── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(94, 200, 242, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.nav-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.footer-logo {
  height: 72px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--orange-dark);
}

/* ── Hero ── */
.hero {
  position: relative;
  padding: 5rem 0 6rem;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: var(--light-green-soft);
  border: 1px solid rgba(142, 228, 168, 0.5);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--light-green-dark);
  margin-bottom: 1.5rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--light-green-dark);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  color: var(--text);
}

.highlight {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  max-width: 620px;
  margin: 0 auto 2rem;
  font-size: 1.125rem;
  color: var(--text-muted);
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
}

.btn-primary {
  background: var(--gradient-brand);
  color: var(--white);
  border: none;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-ghost {
  background: var(--white);
  color: var(--sky-blue-dark);
  border: 2px solid var(--sky-blue);
}

.btn-ghost:hover {
  border-color: var(--orange);
  background: var(--orange-soft);
  color: var(--orange-dark);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.75rem 1.25rem;
  border-radius: 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.stat-icon {
  font-size: 1.75rem;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Waveform animation */
.waveform {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  height: 40px;
  margin-top: 3rem;
  opacity: 0.65;
}

.waveform span {
  display: block;
  width: 4px;
  border-radius: 2px;
  background: var(--gradient-brand);
  animation: wave 1.2s ease-in-out infinite;
}

.waveform span:nth-child(1)  { height: 12px; animation-delay: 0s; }
.waveform span:nth-child(2)  { height: 22px; animation-delay: 0.1s; }
.waveform span:nth-child(3)  { height: 16px; animation-delay: 0.2s; }
.waveform span:nth-child(4)  { height: 30px; animation-delay: 0.3s; }
.waveform span:nth-child(5)  { height: 18px; animation-delay: 0.4s; }
.waveform span:nth-child(6)  { height: 36px; animation-delay: 0.15s; }
.waveform span:nth-child(7)  { height: 24px; animation-delay: 0.25s; }
.waveform span:nth-child(8)  { height: 14px; animation-delay: 0.35s; }
.waveform span:nth-child(9)  { height: 28px; animation-delay: 0.05s; }
.waveform span:nth-child(10) { height: 20px; animation-delay: 0.45s; }
.waveform span:nth-child(11) { height: 32px; animation-delay: 0.2s; }
.waveform span:nth-child(12) { height: 16px; animation-delay: 0.3s; }
.waveform span:nth-child(13) { height: 26px; animation-delay: 0.1s; }
.waveform span:nth-child(14) { height: 18px; animation-delay: 0.4s; }
.waveform span:nth-child(15) { height: 12px; animation-delay: 0.5s; }

@keyframes wave {
  0%, 100% { transform: scaleY(0.5); }
  50% { transform: scaleY(1.4); }
}

/* ── Section Shared ── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sky-blue-dark);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.section-header p {
  color: var(--text-muted);
  font-weight: 300;
}

/* ── Services ── */
.services {
  padding: 5rem 0;
  background: var(--sky-blue-soft);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.service-card {
  padding: 2rem 1.75rem;
  border-radius: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.25s, background 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.service-card:hover {
  transform: translateY(-4px);
  background: var(--bg-card-hover);
  border-color: rgba(255, 145, 77, 0.4);
  box-shadow: var(--shadow-hover);
}

.service-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.service-icon.tents { background: var(--light-green-soft); }
.service-icon.food { background: var(--orange-soft); }
.service-icon.transport { background: var(--sky-blue-soft); }
.service-icon.activities { background: linear-gradient(135deg, var(--sky-blue-soft), var(--light-green-soft)); }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* ── Festivals ── */
.festivals {
  padding: 5rem 0;
  background: var(--white);
}

.festival-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.festival-card {
  position: relative;
  padding: 2.25rem 2rem;
  border-radius: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.festival-card.active {
  cursor: pointer;
  border-color: rgba(142, 228, 168, 0.6);
  background: linear-gradient(160deg, var(--white) 60%, var(--light-green-soft));
}

.festival-card.active:hover {
  transform: translateY(-6px);
  border-color: var(--light-green);
  box-shadow: 0 12px 40px rgba(142, 228, 168, 0.25);
}

.festival-glow {
  position: absolute;
  top: -40%;
  right: -30%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(142, 228, 168, 0.3), transparent 70%);
  pointer-events: none;
}

.festival-card.disabled {
  opacity: 0.55;
  cursor: not-allowed;
  filter: grayscale(0.25);
  user-select: none;
  background: var(--bg-soft);
}

.festival-status {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.festival-status.live {
  background: var(--light-green-soft);
  color: var(--light-green-dark);
  border: 1px solid rgba(142, 228, 168, 0.6);
}

.festival-status.soon {
  background: var(--orange-soft);
  color: var(--orange-dark);
  border: 1px solid rgba(255, 145, 77, 0.35);
}

.festival-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.festival-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.festival-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.festival-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--light-green-dark);
}

.festival-card.disabled .festival-link {
  color: var(--text-muted);
}

/* ── Vibe Quote ── */
.vibe {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--orange-soft), var(--sky-blue-soft), var(--light-green-soft));
}

.vibe-inner {
  text-align: center;
}

.vibe blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  font-style: italic;
  color: var(--text);
  max-width: 720px;
  margin: 0 auto 2rem;
  line-height: 1.5;
}

.vibe-tags {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.vibe-tags span {
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(94, 200, 242, 0.1);
}

.vibe-tags span:nth-child(odd) {
  border-color: rgba(255, 145, 77, 0.35);
}

.vibe-tags span:nth-child(even) {
  border-color: rgba(142, 228, 168, 0.45);
}

/* ── Contact ── */
.contact {
  padding: 5rem 0;
  background: var(--white);
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 2.5rem 3rem;
  border-radius: 1.25rem;
  background: var(--white);
  border: 2px solid var(--sky-blue);
  box-shadow: var(--shadow);
  max-width: 640px;
  margin: 0 auto;
}

.contact-item {
  text-align: center;
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange-dark);
  margin-bottom: 0.35rem;
}

.contact-item a {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--sky-blue-dark);
  transition: color 0.2s;
}

.contact-item a:hover {
  color: var(--orange-dark);
}

.contact-divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--sky-blue), var(--light-green), var(--orange));
}

/* ── Footer ── */
.footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border);
  background: var(--light-green-soft);
  text-align: center;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 1rem;
  font-weight: 300;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .nav-links {
    gap: 1rem;
  }

  .nav-logo {
    height: 44px;
  }

  .footer-logo {
    height: 56px;
  }

  .hero {
    padding: 3rem 0 4rem;
  }

  .hero-stats {
    gap: 1rem;
  }

  .stat {
    padding: 0.5rem 0.85rem;
  }

  .contact-card {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }

  .contact-divider {
    width: 48px;
    height: 2px;
    background: linear-gradient(to right, var(--sky-blue), var(--light-green), var(--orange));
  }
}
