/* ============================================================
   SUNSETH FESTIVAL 2026 – Shared Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Caveat:wght@500;600;700&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --green-light: #c8e84e;
  --green-mid:   #7ec82a;
  --yellow:      #f5e94a;
  --orange:      #f97316;
  --sunset:      #e8531a;
  --dark:        #131310;
  --dark2:       #1c1c16;
  --dark3:       #232318;
  --cream:       #f0ead6;
  --cream2:      #d4cebc;
  --muted:       #7a7a62;
  --border:      #2a2a20;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--cream);
  overflow-x: hidden;
}

/* ── NAVBAR ──────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  height: 68px;
  background: rgba(19, 19, 16, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200, 232, 78, 0.12);
  transition: background 0.3s;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--green-light);
  line-height: 1;
  flex-shrink: 0;
}
.nav-logo em { color: var(--cream); font-style: normal; }

.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
  list-style: none;
}

.nav-links li a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.14em;
  color: var(--cream2);
  text-decoration: none;
  padding: 0.4rem 0.85rem;
  border-radius: 0.5rem;
  transition: color 0.2s, background 0.2s;
}
.nav-links li a:hover,
.nav-links li a.active { color: var(--green-light); background: rgba(200,232,78,0.08); }

.nav-links .nav-cta a {
  background: var(--green-light);
  color: var(--dark);
  padding: 0.45rem 1.25rem;
  border-radius: 999px;
}
.nav-links .nav-cta a:hover { background: var(--yellow); color: var(--dark); }

.nav-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 4px; flex-direction: column; gap: 5px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--cream); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

@media (max-width: 760px) {
  .nav { padding: 0 1.25rem; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 68px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(15,15,12,0.98);
    transform: translateY(-110%); transition: transform 0.35s cubic-bezier(.4,0,.2,1);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0 1rem;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li a { padding: 0.9rem 2rem; font-size: 1.2rem; border-radius: 0; }
  .nav-links .nav-cta a { margin: 0.5rem 2rem; border-radius: 999px; text-align: center; display: block; }
}

/* ── FOOTER ──────────────────────────────────────────── */
.site-footer {
  background: #0a0a08;
  border-top: 1px solid var(--border);
  padding: 4rem 2rem 2rem;
  text-align: center;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, var(--green-light), var(--yellow), var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.footer-tagline {
  font-family: 'Caveat', cursive;
  font-size: 1.3rem;
  color: var(--muted);
  margin: 0.25rem 0 2rem;
}
.footer-nav {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 0.25rem; list-style: none; margin-bottom: 2.5rem;
}
.footer-nav a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem; letter-spacing: 0.14em;
  color: var(--muted); text-decoration: none;
  padding: 0.3rem 0.75rem;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--green-light); }

.footer-divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--green-light), var(--orange));
  margin: 0 auto 1.5rem; border: none;
}
.footer-copy { font-size: 0.8rem; color: #2e2e24; }
.footer-copy span { color: var(--green-light); }

/* ── REUSABLE HELPERS ────────────────────────────────── */
.section-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.82rem; letter-spacing: 0.38em;
  color: var(--green-light); text-transform: uppercase;
  display: block; margin-bottom: 0.6rem;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 0.95; letter-spacing: 0.02em;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1rem; color: var(--muted);
  line-height: 1.7; max-width: 560px;
  margin: 0 auto 3rem;
}

/* page inner hero */
.page-hero {
  min-height: 45vh;
  background: linear-gradient(155deg, #c8e84e 0%, #f5c842 45%, #f97316 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 9rem 2rem 5rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(255,255,255,0.15) 0%, transparent 60%);
}
.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4.5rem, 16vw, 11rem);
  color: var(--dark); line-height: 0.88;
  text-shadow: 5px 5px 0 rgba(255,255,255,0.18);
  position: relative; z-index: 1;
}
.page-hero p {
  font-family: 'Caveat', cursive;
  font-size: clamp(1.3rem, 3.5vw, 2rem);
  color: rgba(19,19,16,0.65);
  margin-top: 0.75rem; position: relative; z-index: 1;
}

/* wave divider */
.wave-divider { display: block; width: 100%; line-height: 0; overflow: hidden; }
.wave-divider svg { display: block; width: 100%; height: auto; }

/* vibe ticker */
.vibe-strip {
  background: linear-gradient(90deg, #c8e84e 0%, #f5c842 33%, #f97316 66%, #c8e84e 100%);
  background-size: 300% 100%;
  animation: gradShift 8s linear infinite;
  padding: 1rem 0; overflow: hidden; white-space: nowrap;
}
@keyframes gradShift { to { background-position: -300% 50%; } }
.vibe-inner {
  display: inline-flex; gap: 3rem;
  animation: ticker 32s linear infinite;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem; letter-spacing: 0.1em; color: var(--dark);
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.85rem 2rem; border-radius: 999px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem; letter-spacing: 0.1em;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,0.35); }
.btn-lime    { background: var(--green-light); color: var(--dark); }
.btn-lime:hover { background: var(--yellow); }
.btn-dark    { background: var(--dark3); color: var(--cream); border: 1px solid var(--border); }
.btn-dark:hover { border-color: var(--green-light); }
.btn-outline { background: transparent; color: var(--dark); border: 2.5px solid var(--dark); }
.btn-outline:hover { background: var(--dark); color: var(--cream); }
.btn-orange  { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--sunset); }

/* card */
.card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: transform 0.25s, border-color 0.25s;
}
.card:hover { transform: translateY(-6px); border-color: var(--green-light); }
.card-icon { font-size: 2.2rem; margin-bottom: 0.75rem; }
.card-head {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem; letter-spacing: 0.06em;
  color: var(--green-light); margin-bottom: 0.5rem;
}
.card-body { font-size: 0.9rem; line-height: 1.65; color: var(--muted); }

/* countdown */
.countdown {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}
.count-block {
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 1rem; padding: 1rem 1.4rem; min-width: 80px; text-align: center;
  backdrop-filter: blur(4px);
}
.count-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem; line-height: 1; color: #fff;
}
.count-lbl { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.6); }

/* FAQ accordion */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; background: none; border: none;
  color: var(--cream); text-align: left;
  font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600;
  padding: 1.25rem 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; transition: color 0.2s;
}
.faq-question:hover { color: var(--green-light); }
.faq-icon {
  flex-shrink: 0; width: 24px; height: 24px;
  background: var(--dark3); border: 1px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; line-height: 1; transition: transform 0.3s, background 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--green-light); color: var(--dark); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-answer-inner { padding: 0 0 1.25rem; font-size: 0.93rem; color: var(--muted); line-height: 1.75; }
.faq-item.open .faq-answer { max-height: 400px; }

/* timeline (programma) */
.timeline { position: relative; max-width: 700px; margin: 0 auto; }
.timeline::before {
  content: '';
  position: absolute; left: 120px; top: 0; bottom: 0;
  width: 2px; background: var(--border);
}
@media (max-width: 540px) {
  .timeline::before { left: 0; }
}
.timeline-item {
  display: grid; grid-template-columns: 120px 1fr;
  gap: 0 2rem; margin-bottom: 0; padding: 1.5rem 0;
  position: relative;
}
@media (max-width: 540px) {
  .timeline-item { grid-template-columns: 1fr; padding-left: 1.5rem; }
}
.timeline-time {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem; letter-spacing: 0.06em;
  color: var(--green-light); text-align: right; padding-top: 0.1rem;
  padding-right: 2rem;
}
@media (max-width: 540px) { .timeline-time { text-align: left; padding-right: 0; } }
.timeline-dot {
  position: absolute; left: 120px; top: 1.85rem;
  width: 14px; height: 14px;
  background: var(--dark); border: 2.5px solid var(--green-light);
  border-radius: 50%; transform: translateX(-50%);
  z-index: 1; transition: background 0.2s;
}
.timeline-item:hover .timeline-dot { background: var(--green-light); }
@media (max-width: 540px) { .timeline-dot { left: 0; } }
.timeline-content {
  background: var(--dark3); border: 1px solid var(--border);
  border-radius: 1rem; padding: 1.25rem 1.5rem;
  transition: border-color 0.25s;
}
.timeline-item:hover .timeline-content { border-color: var(--green-light); }
.timeline-emoji { font-size: 1.4rem; margin-bottom: 0.35rem; }
.timeline-head {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem; letter-spacing: 0.04em;
  color: var(--cream); margin-bottom: 0.25rem;
}
.timeline-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }
.timeline-tag {
  display: inline-block; margin-top: 0.5rem;
  background: rgba(200,232,78,0.12); color: var(--green-light);
  border-radius: 999px; font-size: 0.75rem; padding: 0.2rem 0.75rem;
  font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.08em;
}

/* info highlight bar */
.highlight-bar {
  background: linear-gradient(135deg, rgba(200,232,78,0.08) 0%, rgba(249,115,22,0.08) 100%);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2.5rem; text-align: center;
}

/* ── MOBILE ──────────────────────────────────────────── */
@media (max-width: 600px) {
  .page-hero { padding: 6rem 1.25rem 3rem; }

  .countdown { gap: 0.5rem; }
  .count-block { min-width: 60px; padding: 0.65rem 0.75rem; }
  .count-num { font-size: 2rem; }

  .section-sub { margin-bottom: 2rem; }

  .highlight-bar { padding: 1.75rem 1.25rem; }
}

@media (max-width: 480px) {
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
}
#ol-map {
  width: 100%; height: 480px; border-radius: 1.5rem;
  overflow: hidden; border: 1px solid var(--border);
}
@media (max-width: 600px) { #ol-map { height: 320px; } }

/* ol popup */
.ol-popup {
  position: absolute; background: var(--dark2);
  border: 1px solid var(--green-light); border-radius: 1rem;
  padding: 1rem 1.25rem; min-width: 180px;
  font-family: 'Inter', sans-serif; font-size: 0.85rem;
  pointer-events: none; white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  transform: translate(-50%, calc(-100% - 18px));
}
.ol-popup::after {
  content: '';
  position: absolute; bottom: -8px; left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: var(--green-light);
  border-bottom: 0; margin-left: 0;
}
.ol-popup strong { color: var(--green-light); font-size: 0.9rem; display: block; margin-bottom: 0.25rem; }
.ol-popup span { color: var(--muted); }
