/*!*****************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[3]!./src/app/landing.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************/
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@1&family=Barlow+Condensed:wght@300;400;700&display=swap');

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body { background: #000; color: #fffefe; -webkit-font-smoothing: antialiased; }
html, body { scrollbar-width: none; -ms-overflow-style: none; }
html::-webkit-scrollbar, body::-webkit-scrollbar { display: none; }
::-moz-selection { background: #000; color: #fff; }
::selection { background: #000; color: #fff; }

/* ────── HEADER ────── */
.hdr {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 2rem;
}
.hdr-logo {
  font-family: 'Instrument Serif', serif; font-style: italic;
  font-size: 1.6rem; color: #fffefe; letter-spacing: -0.02em;
}
.hdr-date {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 300;
  font-size: 1.5rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: #fffefe;
}
.hdr-enter {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 1.5rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: #fffefe; background: none; border: none; cursor: pointer;
  transition: opacity .2s;
}
.hdr-enter:hover { opacity: .55; }

/* ────── HERO ────── */
.hero {
  position: relative; overflow: hidden;
  background: #1e0538;
  min-height: 100svh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
}
.hero::after {
  content: ''; position: absolute; bottom: -1px; left: 0;
  width: 100%; height: 3px; background: #000; z-index: 20;
}
.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 65% 65% at 50% 40%, rgba(0,0,0,.35), transparent);
  z-index: 1;
}
.hero-dots {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 36px 36px;
}
.hero-body {
  position: relative; z-index: 2; text-align: center;
  transition: opacity .9s ease, transform .9s ease;
}
.hero-eyebrow {
  display: block;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 300;
  font-size: .8rem; letter-spacing: .4em; text-transform: uppercase;
  color: rgba(255,254,254,.7); margin-bottom: 1rem;
}
.hero-title {
  font-family: 'Instrument Serif', serif; font-style: italic;
  font-size: clamp(6rem, 18vw, 14rem);
  line-height: .9; letter-spacing: -.03em;
  color: #fffefe; -webkit-user-select: none; -moz-user-select: none; user-select: none;
}
.hero-tagline {
  margin-top: 1.5rem;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 300;
  font-size: 1rem; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,254,254,.65);
}

/* magnetic btn */
.hero-ticket {
  position: absolute; bottom: 8.5rem; left: 50%;
  transform: translateX(-50%); z-index: 10;
}
.hero-ticket button {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: .95rem; letter-spacing: .18em; text-transform: uppercase;
  color: #fffefe;
  background: rgba(0,0,0,.25); border: 1.5px solid rgba(255,254,254,.3);
  border-radius: 99em; padding: .85em 2.6em;
  cursor: pointer; backdrop-filter: blur(10px);
  transition: background .25s, border-color .25s;
}
.hero-ticket button:hover {
  background: rgba(255,255,255,.14); border-color: rgba(255,254,254,.75);
}

/* scroll button */
.hero-scroll-btn {
  position: absolute; bottom: 2.2rem; left: 50%;
  transform: translateX(-50%); z-index: 10;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,254,254,.25);
  border-radius: 999px;
  padding: .45rem 1.4rem;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 300;
  font-size: .65rem; letter-spacing: .45em; text-transform: uppercase;
  color: rgba(255,254,254,.55);
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s, opacity .6s;
  animation: scrollbounce 2.2s ease-in-out infinite;
}
.hero-scroll-btn:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,254,254,.6);
  color: rgba(255,254,254,.9);
}
@keyframes scrollbounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ────── FEATURE STRIP ────── */
.feature-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 3px solid #110106;
  position: relative; z-index: 25;
  height: 100svh; min-height: 600px;
}
.feature-item {
  position: relative; overflow: hidden;
  height: 100%; cursor: pointer;
  border-right: 3px solid #110106;
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity .75s cubic-bezier(.16,1,.3,1),
    transform .75s cubic-bezier(.16,1,.3,1);
}
.feature-item:nth-child(1) { transition-delay: 0ms; }
.feature-item:nth-child(2) { transition-delay: 130ms; }
.feature-item:nth-child(3) { transition-delay: 260ms; }
.feature-item.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}
.feature-item:last-child { border-right: none; }
.feature-item img {
  width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; display: block;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94), filter .4s;
  filter: brightness(.55) saturate(.7);
}
.feature-item:hover img {
  transform: scale(1.06);
  filter: brightness(.75) saturate(.9);
}
.feature-label {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 1.1rem; letter-spacing: .18em; text-transform: uppercase;
  color: #fffefe;
}
.feature-num {
  position: absolute; top: 1.2rem; right: 1.2rem;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 300;
  font-size: .7rem; letter-spacing: .35em;
  color: rgba(255,254,254,.4);
}
@media (max-width: 600px) {
  .feature-strip { grid-template-columns: 1fr; height: auto; min-height: auto; }
  .feature-item { border-right: none; border-bottom: 3px solid #110106; height: 60vw; min-height: 200px; }
}

/* ────── EVENT ROWS ────── */
.events {
  position: relative; z-index: 30;
  border-top: 3px solid #110106;
  height: 100svh;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.ev-row {
  display: flex; align-items: center; width: 100%;
  flex: 1; min-height: 0;
  border-bottom: 3px solid #2e1065;
  background: #4c1d95;
  color: #fffefe; cursor: pointer;
  transition: background .15s;
}
.ev-row:hover { background: #3b0764; }
.ev-row:hover .ev-name  { color: #fde68a; }
.ev-row:hover .ev-genre { color: #fde68a; }

.ev-time {
  width: 14%; min-width: 130px; flex-shrink: 0;
  padding: 2rem 1.5rem; text-align: center;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 300;
  font-size: 1.1rem; letter-spacing: .04em;
  color: rgba(255,254,254,.5);
}
.ev-name {
  flex: 1; padding: 2rem 1.5rem;
  border-left: 3px solid #2e1065; border-right: 3px solid #2e1065;
  font-family: 'Instrument Serif', serif; font-style: italic;
  font-size: clamp(2rem, 3.75vw, 4rem);
  line-height: 1; letter-spacing: -.01em;
  color: #fffefe; transition: color .1s;
}
.ev-genre {
  width: 20%; min-width: 110px; flex-shrink: 0;
  padding: 2rem 1.5rem; text-align: center;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 400;
  font-size: 1.35rem; letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,254,254,.45); transition: color .1s;
}

/* hover follower */
.follower {
  pointer-events: none; position: fixed; top: 0; left: 0; z-index: 200;
  width: 10rem; aspect-ratio: 1/1.4;
  border: 4px solid #110106; overflow: hidden;
  opacity: 0; transform: scale(0) translate(0,0);
  transition: opacity .15s, transform .45s cubic-bezier(.65,.1,0,1);
  will-change: transform;
}
.follower.show { opacity: 1; transform: scale(1); }
.follower img { width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; display: block; }

/* ────── FOOTER ────── */
.footer {
  background: #f55648; position: relative; z-index: 20;
  overflow: hidden; min-height: 100svh;
  display: flex; flex-direction: column;
  justify-content: space-between; padding: 4.5rem;
}
.footer-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; overflow: hidden;
}
.footer-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover;
  opacity: .08; mix-blend-mode: multiply;
  pointer-events: none;
}
.footer-bg-word {
  font-family: 'Instrument Serif', serif; font-style: italic;
  font-size: clamp(12rem, 22vw, 22rem);
  color: #fc6758; line-height: .8;
  white-space: nowrap; -webkit-user-select: none; -moz-user-select: none; user-select: none;
}
.footer-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  position: relative; z-index: 1;
}
.footer-word {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: clamp(4.5rem, 9.375vw, 9.375rem);
  line-height: .95; color: #002020;
}
.footer-word.-r { text-align: right; }
.footer-info {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 300;
  font-size: 1.4rem; line-height: 1.2; color: #fffefe;
  display: flex; flex-direction: column; gap: .3rem;
  position: relative; z-index: 1;
}

/* ────── LOGIN OVERLAY ────── */
.overlay {
  position: fixed; inset: 0; z-index: 500;
  display: flex; align-items: center; justify-content: center; padding: 1.5rem;
  background: rgba(0,0,0,.9); backdrop-filter: blur(22px);
  animation: fadein .2s ease;
}
.overlay-inner {
  width: 100%; max-width: 22rem; position: relative;
  animation: slideup .4s cubic-bezier(.16,1,.3,1);
}
.ov-close {
  position: absolute; top: -2.5rem; right: 0;
  background: none; border: none; cursor: pointer;
  color: rgba(255,254,254,.3); transition: color .2s;
}
.ov-close:hover { color: #fffefe; }
.ov-brand {
  text-align: center; margin-bottom: 2rem;
}
.ov-brand h2 {
  font-family: 'Instrument Serif', serif; font-style: italic;
  font-size: 3.5rem; line-height: 1; letter-spacing: -.03em;
}
.ov-brand p {
  margin-top: .5rem;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 300;
  font-size: .68rem; letter-spacing: .42em; text-transform: uppercase;
  color: rgba(255,254,254,.28);
}
.ov-input {
  width: 100%; display: block;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,254,254,.12);
  border-radius: 12px;
  padding: .9rem 1.1rem; margin-bottom: .6rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .9rem; letter-spacing: .06em;
  color: #fffefe; outline: none;
  transition: border-color .2s, background .2s;
}
.ov-input::-moz-placeholder { color: rgba(255,254,254,.22); }
.ov-input::placeholder { color: rgba(255,254,254,.22); }
.ov-input:focus { border-color: rgba(255,254,254,.38); background: rgba(255,255,255,.09); }
.ov-signin {
  width: 100%; margin-top: .4rem; padding: .9rem;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: .9rem; letter-spacing: .22em; text-transform: uppercase;
  color: #fffefe; background: transparent;
  border: 1.5px solid rgba(255,254,254,.28); border-radius: 99em;
  cursor: pointer; transition: background .25s, color .25s, border-color .25s;
}
.ov-signin:hover { background: #fffefe; color: #000; border-color: #fffefe; }
.ov-sep {
  display: flex; align-items: center; gap: 1rem; margin: 1.2rem 0;
}
.ov-sep-line { flex: 1; height: 1px; background: rgba(255,254,254,.07); }
.ov-sep-txt {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 300;
  font-size: .62rem; letter-spacing: .42em; text-transform: uppercase;
  color: rgba(255,254,254,.2);
}
.ov-demo {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,254,254,.07); border-radius: 10px;
  padding: .75rem 1rem; margin-bottom: .4rem;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 400;
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,254,254,.4); cursor: pointer;
  transition: background .15s, color .15s;
}
.ov-demo:hover { background: rgba(255,255,255,.08); color: #fffefe; }
.ov-demo span:last-child { color: rgba(255,254,254,.18); }

@keyframes fadein  { from{opacity:0} to{opacity:1} }
@keyframes slideup {
  from { opacity:0; transform:translateY(26px); }
  to   { opacity:1; transform:translateY(0); }
}

@media (max-width: 600px) {
  .hdr { padding: 1.25rem 1.25rem; }
  .hdr-date { display: none; }
  .hero-ticket { bottom: 5rem; }
  .ev-time { min-width: 60px; padding: 1.5rem .75rem; font-size: 1rem; }
  .ev-name { font-size: clamp(1.7rem, 5vw, 2.8rem); padding: 1.5rem .75rem; }
  .ev-genre { display: none; }
  .footer { padding: 2.5rem 1.5rem; min-height: auto; }
  .footer-word { font-size: clamp(3.5rem, 14vw, 6rem); }
}

/* ────── HAMBURGER ────── */
.hdr-menu-wrap {
  position: relative;
}
.hdr-hamburger {
  display: flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem;
  background: none; border: 1.5px solid rgba(255,254,254,.2);
  border-radius: 8px; cursor: pointer; color: #fffefe;
  transition: border-color .2s, background .2s;
}
.hdr-hamburger:hover { border-color: rgba(255,254,254,.6); background: rgba(255,255,255,.06); }

/* ────── CARD NAV DROPDOWN ────── */
.cardnav-dropdown {
  position: absolute; top: calc(100% + .75rem); left: 0;
  z-index: 400;
  pointer-events: none;
}
.cardnav-dropdown.open { pointer-events: auto; }

.cardnav-cards {
  display: flex; gap: .75rem; align-items: flex-start;
}

/* each card transitions independently */
.nav-card {
  width: 220px;
  min-height: 0;
  background: rgba(14,14,14,.94);
  border: 1px solid rgba(255,254,254,.10);
  border-radius: 18px;
  padding: 1.3rem 1.25rem 1.1rem;
  backdrop-filter: blur(28px);
  display: flex; flex-direction: column; gap: .1rem;
  box-shadow:
    0 12px 40px rgba(0,0,0,.55),
    0 0 0 1px rgba(255,254,254,.04) inset;
  opacity: 0;
  transform: translateY(-14px) scale(.96);
  transition:
    opacity .45s cubic-bezier(.16,1,.3,1),
    transform .45s cubic-bezier(.16,1,.3,1);
}
.nav-card:nth-child(1) { transition-delay: 0ms; }
.nav-card:nth-child(2) { transition-delay: 55ms; }
.nav-card:nth-child(3) { transition-delay: 110ms; }

.cardnav-dropdown.open .nav-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.cardnav-dropdown:not(.open) .nav-card:nth-child(1) { transition-delay: 80ms; }
.cardnav-dropdown:not(.open) .nav-card:nth-child(2) { transition-delay: 40ms; }
.cardnav-dropdown:not(.open) .nav-card:nth-child(3) { transition-delay: 0ms; }

.nav-card-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 300;
  font-size: .62rem; letter-spacing: .45em; text-transform: uppercase;
  color: rgba(255,254,254,.28); margin-bottom: .55rem;
  padding-bottom: .55rem; border-bottom: 1px solid rgba(255,254,254,.07);
  flex-shrink: 0;
}
.nav-card-link {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 400;
  font-size: 1.05rem; letter-spacing: .04em; line-height: 1.15;
  color: rgba(255,254,254,.6); padding: .28rem .4rem;
  border-radius: 6px; cursor: pointer; background: none; border: none;
  text-align: left; width: 100%; white-space: nowrap;
  transition: background .12s, color .12s;
  display: block; text-decoration: none; flex-shrink: 0;
}
.nav-card-link:hover { background: rgba(255,255,255,.09); color: #fffefe; }
.nav-card.-featured {
  background: rgba(30,10,50,.94);
  border-color: rgba(200,160,255,.18);
}
@media (max-width: 600px) {
  .cardnav-dropdown { position: fixed; top: 4.5rem; left: 1rem; right: 1rem; }
  .cardnav-cards { flex-direction: column; }
  .nav-card { width: 100%; }
}

