/* ============================================
   WOODLAND DANCE PROJECT 2026
   Enchanted Forest Festival Theme
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Crimson+Pro:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Bebas+Neue&display=swap');

:root {
  --forest-darkest: #0a1a0a;
  --forest-dark: #0d2b0d;
  --forest-mid: #1a3c1a;
  --forest-accent: #2d5a2d;
  --moss: #3a6b3a;
  --cyan: #ffffff;
  --cyan-glow: #ffffff50;
  --cyan-soft: #e8e4d8;
  --gold: #c8a84e;
  --gold-light: #e8d08e;
  --cream: #f0ead6;
  --white: #ffffff;
  --text-primary: #e8e4d8;
  --text-muted: #a8a290;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Crimson Pro', Georgia, serif;
  background: var(--forest-darkest);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--forest-darkest); }
::-webkit-scrollbar-thumb { background: var(--forest-mid); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--moss); }

/* ---- HEADER ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 2rem;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.4s ease;
}

.site-header.scrolled {
  background: rgba(10,26,10,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
}

.header-logo {
  height: 80px;
  width: auto;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.header-logo:hover {
  transform: scale(1.05);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-btn {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-primary);
  padding: 0.5rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: all 0.3s ease;
  background: transparent;
  cursor: pointer;
}

.nav-btn:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  text-shadow: 0 0 12px rgba(255,255,255,0.3);
}

.nav-btn--primary {
  background: var(--white);
  color: var(--forest-darkest);
  border-color: var(--white);
  font-weight: 700;
}

.nav-btn--primary:hover {
  background: var(--cream);
  color: var(--forest-darkest);
  border-color: var(--cyan-soft);
  box-shadow: 0 0 20px var(--cyan-glow), 0 0 40px rgba(0,212,255,0.2);
  text-shadow: none;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.hero-bg--desktop { display: block; }
.hero-bg--mobile { display: none; }

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center 30%, transparent 0%, rgba(10,26,10,0.3) 60%, rgba(10,26,10,0.8) 100%),
    linear-gradient(to bottom, rgba(10,26,10,0.2) 0%, transparent 30%, transparent 60%, rgba(10,26,10,0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  margin-top: -2rem;
}

.hero-logo {
  width: min(420px, 80vw);
  height: auto;
  filter: drop-shadow(0 4px 30px rgba(0,0,0,0.6));
  animation: floatIn 1.2s ease-out both;
}

@keyframes floatIn {
  0% { opacity: 0; transform: translateY(30px) scale(0.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  letter-spacing: 0.35em;
  color: var(--cyan);
  margin-top: 1.2rem;
  text-shadow: 0 0 20px var(--cyan-glow);
  animation: fadeUp 1s ease-out 0.4s both;
}

.hero-tagline--white {
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-tagline-sub {
  font-family: 'Crimson Pro', serif;
  font-size: clamp(1.1rem, 2.8vw, 1.5rem);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  margin-top: 0.6rem;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 15px rgba(0,0,0,0.5);
  animation: fadeUp 1s ease-out 0.7s both;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeUp 1s ease-out 1s both;
}

.hero-scroll-hint span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  padding-left: 0.3em;
  color: var(--text-muted);
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg);
  animation: bounceArrow 2s infinite;
}

@keyframes bounceArrow {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.6; }
  50% { transform: rotate(45deg) translateY(6px); opacity: 1; }
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ---- SECTIONS ---- */
.section {
  position: relative;
  padding: 5rem 2rem;
}

.section-inner {
  max-width: 960px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.6rem;
  color: var(--cream);
}

.section-subtitle {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.3em;
  text-align: center;
  color: var(--cyan);
  margin-bottom: 3rem;
  text-shadow: 0 0 15px var(--cyan-glow);
}

/* ---- TREELINE DIVIDER ---- */
.treeline-divider {
  width: 100%;
  height: 80px;
  background: url('assets/footerbg.png') repeat-x center bottom;
  background-size: auto 100%;
  margin-top: -1px;
}

/* ---- LINEUP ---- */
.lineup-section {
  background: linear-gradient(180deg, var(--forest-darkest) 0%, var(--forest-dark) 50%, var(--forest-darkest) 100%);
}

.lineup-image-wrapper {
  text-align: center;
  margin-bottom: 2.5rem;
}

.lineup-image {
  max-width: 700px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(0,212,255,0.15));
  border-radius: 8px;
}

.lineup-cta {
  text-align: center;
}

/* ---- SIGNUP SECTION ---- */
.signup-section {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0,212,255,0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(0,212,255,0.04) 0%, transparent 50%),
    linear-gradient(180deg, var(--forest-darkest) 0%, var(--forest-dark) 100%);
  margin-bottom: 0;
  padding-bottom: 5rem;
}

.signup-form-wrapper {
  max-width: 520px;
  margin: 0 auto;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  backdrop-filter: blur(14px);
  box-shadow:
    0 8px 50px rgba(0,0,0,0.4),
    0 0 80px rgba(0,212,255,0.05),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-label {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.form-input {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: 'Crimson Pro', serif;
  font-size: 1.05rem;
  color: var(--cream);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  outline: none;
  transition: all 0.3s ease;
}

.form-input::placeholder {
  color: rgba(168,162,144,0.5);
}

.form-input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.1), 0 0 20px rgba(0,212,255,0.08);
}

.form-input:hover {
  border-color: rgba(255,255,255,0.15);
}

/* ---- INTL TEL INPUT OVERRIDES ---- */
.iti {
  width: 100%;
}

.iti__tel-input {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: 'Crimson Pro', serif;
  font-size: 1.05rem;
  color: var(--cream);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  outline: none;
  transition: all 0.3s ease;
}

.iti__tel-input::placeholder {
  color: rgba(168,162,144,0.5);
}

.iti__tel-input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.1), 0 0 20px rgba(0,212,255,0.08);
}

.iti__tel-input:hover {
  border-color: rgba(255,255,255,0.15);
}

.iti__selected-dial-code {
  color: var(--cyan) !important;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.iti__arrow {
  border-top-color: var(--text-muted) !important;
}

.iti__arrow--up {
  border-bottom-color: var(--text-muted) !important;
}

.iti__country-container {
  border-radius: 6px 0 0 6px;
}

.iti__dropdown-content {
  background: var(--forest-dark) !important;
  border: 1px solid rgba(0,212,255,0.15) !important;
  border-radius: 8px !important;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5) !important;
}

.iti__search-input {
  background: rgba(10,26,10,0.9) !important;
  color: var(--cream) !important;
  border-color: rgba(255,255,255,0.1) !important;
  font-family: 'Crimson Pro', serif !important;
}

.iti__search-input::placeholder {
  color: rgba(168,162,144,0.5) !important;
}

.iti__country {
  color: var(--text-primary) !important;
  transition: background 0.15s ease;
}

.iti__country:hover,
.iti__country--highlight {
  background: rgba(0,212,255,0.1) !important;
}

.iti__dial-code {
  color: var(--cyan) !important;
}

.iti__country-name {
  color: var(--text-primary) !important;
}

.iti__divider {
  border-color: rgba(255,255,255,0.06) !important;
}

/* ---- CHECKBOX ---- */
.form-group--checkbox {
  margin-bottom: 1.6rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  cursor: pointer;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox-custom {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  background: rgba(255,255,255,0.1);
  margin-top: 2px;
  position: relative;
  transition: all 0.25s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
  background: var(--cyan);
  border-color: var(--cyan);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 6px;
  width: 5px;
  height: 10px;
  border: solid var(--forest-darkest);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-label input[type="checkbox"]:focus-visible + .checkbox-custom {
  box-shadow: 0 0 0 3px rgba(0,212,255,0.2);
}

.checkbox-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.form-link {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,212,255,0.3);
  transition: border-color 0.3s ease;
}

.form-link:hover {
  border-color: var(--cyan);
}

.form-error {
  font-size: 0.95rem;
  color: #ff6b6b;
  text-align: center;
  margin-top: 1rem;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 2.5rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn--cyan {
  background: var(--cyan);
  color: var(--forest-darkest);
  font-weight: 700;
}

.btn--cyan:hover {
  background: var(--cyan-soft);
  box-shadow: 0 0 25px var(--cyan-glow), 0 0 50px rgba(0,212,255,0.2);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--cyan);
  border: 1px solid var(--cyan);
}

.btn--outline:hover {
  background: rgba(0,212,255,0.08);
  box-shadow: 0 0 20px var(--cyan-glow);
  transform: translateY(-2px);
}

.btn--full {
  width: 100%;
}

/* ---- FOOTER ---- */
.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--forest-dark);
}

.footer-treeline {
  width: 100%;
  height: 80px;
  background: url('assets/footerbg.png') repeat-x center top;
  background-size: auto 100%;
  margin-top: -1px;
  position: relative;
  z-index: 1;
}

.footer-body {
  background: var(--forest-dark);
  padding: 2.5rem 2rem 1.5rem;
  text-align: center;
}

.footer-info-img {
  max-width: 700px;
  width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(168,162,144,0.5);
  margin-top: 1rem;
}

.footer-built {
  font-size: 0.75rem;
  color: rgba(168,162,144,0.4);
  margin-top: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.footer-built a {
  display: inline-flex;
  align-items: center;
  transition: opacity 0.3s ease;
}

.footer-built a:hover {
  opacity: 0.8;
}

/* ---- FAQ PAGE ---- */
.faq-hero {
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
  min-height: 40vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: var(--forest-darkest);
}

.faq-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.faq-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
  opacity: 0.45;
}

.faq-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(10,26,10,0.6) 0%, rgba(10,26,10,0.3) 40%, rgba(13,43,13,0.95) 90%, var(--forest-dark) 100%);
}

.faq-hero .section-inner {
  position: relative;
  z-index: 2;
  padding: 10rem 2rem 3rem;
}

.faq-hero .section-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 0.8rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}

.faq-hero .section-subtitle {
  font-size: 1.2rem;
  letter-spacing: 0.4em;
  margin-bottom: 0;
}

/* FAQ NAV PILLS */
.faq-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  padding: 2rem 2rem 0;
  background: var(--forest-dark);
  position: sticky;
  top: 70px;
  z-index: 90;
}

.faq-nav::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  height: 20px;
  background: linear-gradient(to bottom, var(--forest-dark), transparent);
  pointer-events: none;
}

.faq-nav-pill {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-decoration: none;
  color: var(--text-muted);
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.faq-nav-pill:hover,
.faq-nav-pill.active {
  color: var(--cyan);
  border-color: var(--cyan);
  background: rgba(0,212,255,0.06);
  text-shadow: 0 0 10px var(--cyan-glow);
}

.faq-section {
  padding: 2.5rem 2rem 5rem;
  background: var(--forest-dark);
}

.faq-category {
  max-width: 860px;
  margin: 0 auto 3.5rem;
  scroll-margin-top: 140px;
}

.faq-category-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid rgba(0,212,255,0.2);
  position: relative;
}

.faq-category-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan-glow);
}

.faq-item {
  margin-bottom: 0.6rem;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: rgba(10,26,10,0.3);
}

.faq-item:hover {
  border-color: rgba(0,212,255,0.18);
  background: rgba(10,26,10,0.5);
}

.faq-item.active {
  border-color: rgba(0,212,255,0.25);
  background: rgba(10,26,10,0.6);
  box-shadow: 0 4px 25px rgba(0,0,0,0.2), 0 0 30px rgba(0,212,255,0.04);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Crimson Pro', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  transition: all 0.3s ease;
  line-height: 1.4;
}

.faq-item.active .faq-question {
  color: var(--cyan-soft);
}

.faq-question:hover {
  background: rgba(0,212,255,0.03);
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-left: 1.2rem;
  position: relative;
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
  background: rgba(0,212,255,0.1);
  border-color: var(--cyan);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--cyan);
  border-radius: 1px;
}

.faq-icon::before {
  top: 50%;
  left: 6px;
  right: 6px;
  height: 2px;
  transform: translateY(-50%);
}

.faq-icon::after {
  left: 50%;
  top: 6px;
  bottom: 6px;
  width: 2px;
  transform: translateX(-50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-item.active .faq-icon::after {
  transform: translateX(-50%) scaleY(0);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0.2rem 1.5rem 1.5rem 1.5rem;
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-primary);
}

.faq-answer-inner a {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,212,255,0.3);
  transition: border-color 0.3s ease;
}

.faq-answer-inner a:hover {
  border-color: var(--cyan);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* FAQ CTA banner */
.faq-cta {
  max-width: 860px;
  margin: 1rem auto 0;
  text-align: center;
  padding: 2.5rem 2rem;
  background: rgba(0,212,255,0.04);
  border: 1px solid rgba(0,212,255,0.12);
  border-radius: 12px;
}

.faq-cta p {
  font-family: 'Crimson Pro', serif;
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.faq-cta p a {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,212,255,0.3);
}

.faq-cta p a:hover {
  border-color: var(--cyan);
}

@media (max-width: 768px) {
  .faq-hero .section-inner {
    padding: 8rem 1.2rem 2.5rem;
  }

  .faq-nav {
    gap: 0.4rem;
    padding: 1.2rem 1rem 0;
    top: 70px;
  }

  .faq-nav-pill {
    font-size: 0.8rem;
    padding: 0.4rem 0.9rem;
  }

  .faq-section {
    padding: 2rem 1rem 4rem;
  }

  .faq-question {
    font-size: 1.1rem;
    padding: 1.1rem 1.2rem;
  }

  .faq-answer-inner {
    font-size: 1.05rem;
    padding: 0.2rem 1.2rem 1.3rem;
  }
}

/* ---- PARTICLES / AMBIENT ---- */
.fireflies {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  overflow: hidden;
}

.firefly {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--cyan), 0 0 12px var(--cyan-glow);
  animation: fireflyFloat linear infinite;
  opacity: 0;
}

.firefly--gold {
  background: var(--gold);
  box-shadow: 0 0 6px var(--gold), 0 0 14px rgba(200,168,78,0.4);
}

.firefly--green {
  background: #6fdb6f;
  box-shadow: 0 0 6px #6fdb6f, 0 0 14px rgba(111,219,111,0.3);
}

@keyframes fireflyFloat {
  0% { opacity: 0; transform: translateY(0) translateX(0); }
  15% { opacity: 0.8; }
  50% { opacity: 0.3; }
  85% { opacity: 0.7; }
  100% { opacity: 0; transform: translateY(-100vh) translateX(40px); }
}

@keyframes fireflyDrift {
  0% { opacity: 0; transform: translate(0, 0) scale(1); }
  20% { opacity: 0.6; }
  50% { opacity: 0.9; transform: translate(60px, -30vh) scale(1.2); }
  80% { opacity: 0.4; }
  100% { opacity: 0; transform: translate(-30px, -70vh) scale(0.8); }
}

@keyframes fireflyWander {
  0% { opacity: 0; transform: translate(0, 0); }
  10% { opacity: 0.7; }
  25% { transform: translate(30px, -15vh); }
  50% { opacity: 0.3; transform: translate(-20px, -35vh); }
  75% { opacity: 0.8; transform: translate(40px, -55vh); }
  100% { opacity: 0; transform: translate(-10px, -80vh); }
}

/* ---- LIGHT RAYS ---- */
.light-rays {
  position: fixed;
  inset: 0;
  z-index: 49;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.4;
}

.light-ray {
  position: absolute;
  top: -20%;
  width: 2px;
  height: 120%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(255,255,255,0.03) 20%,
    rgba(255,255,255,0.06) 40%,
    rgba(255,255,255,0.03) 60%,
    transparent 100%
  );
  transform-origin: top center;
  animation: rayPulse ease-in-out infinite;
}

@keyframes rayPulse {
  0%, 100% { opacity: 0.3; transform: rotate(var(--ray-angle)) scaleX(1); }
  50% { opacity: 0.8; transform: rotate(var(--ray-angle)) scaleX(1.8); }
}

/* ---- MIST / FOG ---- */
.mist {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40vh;
  z-index: 48;
  pointer-events: none;
  overflow: hidden;
}

.mist-layer {
  position: absolute;
  bottom: 0;
  width: 200%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.04) 0%, transparent 70%);
  animation: mistDrift linear infinite;
}

.mist-layer:nth-child(2) {
  animation-direction: reverse;
  animation-duration: 40s;
  opacity: 0.6;
  bottom: -10%;
}

@keyframes mistDrift {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- FLOATING SPORES ---- */
.spore {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  animation: sporeDrift linear infinite;
  opacity: 0;
  pointer-events: none;
}

@keyframes sporeDrift {
  0% { opacity: 0; transform: translateY(0) translateX(0) scale(0.5); }
  15% { opacity: 0.5; }
  40% { transform: translateY(-30vh) translateX(20px) scale(1); }
  70% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-80vh) translateX(-15px) scale(0.7); }
}

/* ---- SUCCESS MESSAGE ---- */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}

.form-success.show {
  display: block;
  animation: fadeUp 0.5s ease-out;
}

.form-success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.form-success h3 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .site-header {
    padding: 0 1rem;
    height: 60px;
  }

  .header-logo {
    height: 40px;
  }

  .nav-btn {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }

  .hero-bg--desktop { display: none; }
  .hero-bg--mobile { display: block; }

  .hero-logo {
    width: min(300px, 75vw);
  }

  .section {
    padding: 3.5rem 1.2rem;
  }

  .signup-form-wrapper {
    padding: 2rem 1.5rem;
  }

  .footer-links {
    gap: 1.2rem;
  }

  .faq-question {
    font-size: 0.95rem;
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-tagline {
    letter-spacing: 0.2em;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .btn {
    padding: 0.75rem 1.8rem;
    font-size: 1rem;
  }
}
