/* ─────────────────────────────────────
   HOLLOW FESTIVAL — hollow.css
   Shared styles for all pages
───────────────────────────────────── */

:root {
  --bg:     #060a07;
  --bg2:    #0b1009;
  --bg3:    #121a10;
  --forest: #1c3622;
  --moss:   #2c5c34;
  --sage:   #527a58;
  --leaf:   #7aaa80;
  --cream:  #ccd8c0;
  --cream2: #7a9478;
  --bark:   #382e20;
  --nav-h:  72px;
}

*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: 'Crimson Pro', serif;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ─── NAV ─── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  transition: background 0.5s, border-color 0.5s;
  border-bottom: 1px solid transparent;
}
#nav.scrolled,
#nav.solid {
  background: rgba(6,10,7,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: rgba(82,122,88,0.2);
}
.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: var(--leaf);
  text-decoration: none;
  text-transform: uppercase;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--cream2);
  text-decoration: none;
  font-family: 'DM Mono', monospace;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--leaf); }
.nav-ticket {
  border: 1px solid var(--sage);
  padding: 7px 18px;
  color: var(--leaf) !important;
  transition: background 0.25s, color 0.25s !important;
}
.nav-ticket:hover { background: var(--moss); color: var(--cream) !important; border-color: var(--moss) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
}
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(6,10,7,0.97);
  border-bottom: 1px solid var(--bark);
  z-index: 199;
  padding: 24px 32px 32px;
  flex-direction: column;
  gap: 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--cream2);
  text-decoration: none;
  font-family: 'DM Mono', monospace;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.mobile-nav a.active { color: var(--leaf); }

/* ─── PAGE HEADER (inner pages) ─── */
.page-header {
  padding: calc(var(--nav-h) + 72px) 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(44,92,52,0.2) 0%, transparent 65%);
  pointer-events: none;
}
.page-header-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--leaf);
  display: block;
  margin-bottom: 14px;
}
.page-header-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--cream);
  line-height: 1;
}
.page-header-title em {
  font-family: 'Crimson Pro', serif;
  font-style: italic;
  font-weight: 300;
  color: var(--leaf);
  font-size: 1.08em;
  letter-spacing: 0;
}
.page-header-rule {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--sage), transparent);
  margin: 28px auto 0;
}

/* ─── LAYOUT ─── */
.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 56px;
}

/* ─── TYPOGRAPHY HELPERS ─── */
.eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--leaf);
  margin-bottom: 14px;
  display: block;
}
.sec-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--cream);
}
.sec-title em {
  font-family: 'Crimson Pro', serif;
  font-style: italic;
  font-weight: 300;
  color: var(--leaf);
  font-size: 1.1em;
  letter-spacing: 0;
}
.sec-rule {
  width: 40px; height: 1px;
  background: linear-gradient(to right, var(--sage), transparent);
  margin: 22px 0 44px;
}

/* ─── BUTTONS ─── */
.btn-outline {
  display: inline-block;
  padding: 13px 36px;
  border: 1px solid var(--sage);
  color: var(--leaf);
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.btn-outline:hover { background: var(--moss); color: var(--cream); border-color: var(--moss); }
.btn-solid {
  display: inline-block;
  padding: 13px 36px;
  background: var(--moss);
  color: var(--cream);
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s;
}
.btn-solid:hover { background: var(--sage); }

/* ─── FOOTER ─── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--bark);
  padding: 64px 56px 48px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(56,46,32,0.4);
  margin-bottom: 32px;
}
.footer-logo {
  font-family: 'Cinzel', serif;
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: var(--leaf);
  line-height: 1;
}
.footer-tagline {
  font-family: 'Crimson Pro', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--cream2);
  margin-top: 8px;
  font-weight: 300;
}
.footer-cols { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col-title {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a {
  font-family: 'Crimson Pro', serif;
  font-size: 0.95rem;
  color: var(--cream2);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--leaf); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--bark);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  color: var(--bark);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--cream2); }

/* ─── ANIMATIONS ─── */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%,100% { opacity: 0.3; }
  50%      { opacity: 1; }
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  #nav, footer { padding-left: 24px; padding-right: 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .wrap { padding: 0 24px; }
  .footer-top { flex-direction: column; }
  .footer-cols { gap: 36px; }
}
@media (max-width: 600px) {
  .footer-cols { gap: 28px; }
}