/* ─── variables ───────────────────────────────────────── */
:root {
  --bg:        #07070a;
  --bg-events: #07070d;
  --text:      #f0ede8;
  --muted:     #5c5a58;
  --dim:       rgba(240,237,232,0.4);
  --teal:      #5aa8c0;
  --border:    rgba(255,255,255,0.09);
}

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

html { scroll-behavior: smooth; }

body {
  background:
    url('images/641884985_18565755475061570_5965357756669548293_n.jpg') center top / 68% auto no-repeat fixed,
    url('images/641884985_18565755475061570_5965357756669548293_n.jpg') center top / cover no-repeat fixed;
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}

#stars {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

#glitter {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9996;
}

/* ─── cursor ──────────────────────────────────────────── */
.cursor {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(74, 152, 180, 0.06) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition: left 0.02s linear, top 0.02s linear;
  will-change: left, top;
}



/* ─── scroll indicator ────────────────────────────────── */
.scroll-indicator {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 190;
  pointer-events: none;
  font-family: 'Hanken Grotesk', sans-serif;
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: #c9a0c8;
  animation: scrollPulse 3s ease-in-out infinite;
  transition: opacity 3s ease;
  background: rgba(6, 5, 6, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 0.35rem 1rem;
  border-radius: 20px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.8);
}

.scroll-indicator.hidden {
  opacity: 0 !important;
  animation-play-state: paused;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.75; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 1;    transform: translateX(-50%) translateY(-4px); }
}

/* ─── nav ─────────────────────────────────────────────── */
#nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 3.5rem;
  transition: background 0.5s, backdrop-filter 0.5s;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 28px;
  width: auto;
  filter: invert(1);
  opacity: 0.85;
  transition: opacity 0.2s;
}

.nav-logo:hover img {
  opacity: 1;
}

.circle-fixed {
  position: fixed;
  top: 9.75rem;
  width: clamp(80px, 10vw, 140px);
  height: auto;
  filter: invert(1);
  opacity: 0.7;
  z-index: 0;
  pointer-events: none;
}
.circle-fixed--left  { left:  2vw; }
.circle-fixed--right { right: 2vw; }

.nav-links {
  list-style: none;
  display: flex;
  width: 100%;
  justify-content: space-evenly;
}
.nav-links a {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: #c9a0c8;
  text-decoration: none;
  transition: color 0.2s;
  text-shadow: 0 1px 10px rgba(0,0,0,0.6);
}
.nav-links a:hover { color: #fff; }

/* ─── newsletter link ─────────────────────────────────── */
.newsletter-link {
  display: block;
  margin-top: 2rem;
  font-family: 'Hanken Grotesk', sans-serif;
  font-style: normal;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: rgba(240, 237, 232, 0.75);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}

.newsletter-link:hover {
  color: #c9a0c8;
}

/* ─── hero ────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: visible;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(6,5,6,0.25) 0%,
      transparent      22%,
      transparent      20%,
      rgba(6,5,6,0.6)  70%,
      rgba(6,5,6,0.78) 100%
    );
  z-index: 1;
  pointer-events: none;
}

.hero-logo-circle {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 5rem;
  width: clamp(140px, 16vw, 220px);
  height: auto;
  filter: invert(1);
  z-index: 11;
}

.hero-logo-wordmark {
  position: absolute;
  top: 9rem;
  left: 21%;
  width: 58%;
  height: auto;
  filter: invert(1) drop-shadow(0 0 6px rgba(210, 210, 230, 0.6)) drop-shadow(0 0 14px rgba(190, 190, 220, 0.3));
  display: block;
  z-index: 10;
  pointer-events: none;
}

/* animated scroll cue */
.scroll-cue {
  display: block;
  margin: 3rem auto 0;
  width: fit-content;
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 2;
}
.scroll-cue__line {
  display: block;
  width: 1px;
  height: 52px;
  background: linear-gradient(180deg, transparent, rgba(240, 237, 232, 0.6));
  animation: scrollLine 2s ease-in-out infinite;
  transform-origin: top center;
}
@keyframes scrollLine {
  0%,100% { opacity: 0.8; transform: translateY(0);    }
  50%     { opacity: 0.4; transform: translateY(8px); }
}

/* ─── video ───────────────────────────────────────────── */
.video-wrap {
  width: 100%;
  margin-top: -4rem;
}

.video-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #000;
}

/* ─── sections ────────────────────────────────────────── */
.section {
  padding: 10rem 0;
  background: rgba(6, 5, 6, 0.78);
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 3.5rem;
}

.section-label {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 3rem;
  display: block;
}

/* ─── fade-in ─────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ─── about ───────────────────────────────────────────── */
.about-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-toggle {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: none;
  border: none;
  border-top: 1px solid rgba(201, 160, 200, 0.35);
  border-bottom: 1px solid rgba(201, 160, 200, 0.35);
  padding: 1.4rem 0;
  cursor: pointer;
  width: 100%;
  margin-left: 0;
  text-align: left;
  color: rgba(240, 237, 232, 0.8);
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.3s, border-color 0.3s;
}

.about-toggle:hover {
  color: #c9a0c8;
  border-color: rgba(201, 160, 200, 0.6);
}

.about-toggle__label {
  flex: 1;
}

.about-toggle__more {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.6;
  flex-shrink: 0;
  transition: opacity 0.3s;
}

.about-toggle__more::before {
  content: 'Læs mere';
}

.about-toggle[aria-expanded="true"] .about-toggle__more::before {
  content: 'Luk';
}

.about-toggle:hover .about-toggle__more {
  opacity: 1;
}

.about-body {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.25s ease, padding 0.5s ease;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 0 7%;
}

.about-body.open {
  max-height: 600px;
  opacity: 1;
  padding: 2rem 7%;
  transition: max-height 0.6s ease, opacity 0.4s ease 0.1s, padding 0.6s ease;
}

.about-p {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.8;
  color: rgba(240, 237, 232, 0.6);
}

.about-p:nth-child(1) {
  width: 100%;
}

.about-p:nth-child(2) {
  width: 100%;
  color: rgba(240, 237, 232, 0.6);
}

.about-p:nth-child(3) {
  width: 100%;
  color: rgba(240, 237, 232, 0.5);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  max-width: 88%;
  margin: 0 auto;
}

.section-index {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 10vw, 10rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.06);
  user-select: none;
  margin-top: -0.1em;
}

.body-large {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: clamp(1.4rem, 2.3vw, 2rem);
  line-height: 1.5;
  color: var(--text);
  max-width: 680px;
}

/* ─── section header ──────────────────────────────────── */
.section-header {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  margin-bottom: 3rem;
}
.section-header .section-index {
  margin-top: 0;
}
.section-header .section-label {
  margin-bottom: 0;
}

/* ─── visuals strip ───────────────────────────────────── */
#visuals {
  padding-top: 1rem;
  padding-bottom: 2rem;
}

.strip-wrap {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 6rem;
  overflow: hidden;
}

.strip {
  display: flex;
  gap: 0;
  animation: stripScroll 40s linear infinite;
  width: max-content;
  will-change: transform;
  transform: translateZ(0);
}

.strip img {
  height: 420px;
  width: auto;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

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

/* ─── music ───────────────────────────────────────────── */
#music {
  padding-top: 7rem;
}

.video-wrap {
  margin-top: 4rem;
}

.spotify-label {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-style: normal;
  color: #c9a0c8;
  margin-bottom: 1.2rem;
}

.spotify-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.spotify-wrap iframe {
  display: block;
  border-radius: 0 !important;
}

/* ─── new releases ────────────────────────────────────── */
#releases {
  padding-top: 4rem;
  padding-bottom: 2.5rem;
  overflow: visible;
}

#about {
  padding-top: 7rem;
}


.release-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  padding: 2.5rem 0;
}

.release-cover {
  width: 320px;
  aspect-ratio: 1;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.7), 0 0 60px rgba(200, 210, 220, 0.35);
}

.release-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
}

.newsletter-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2.5rem;
}

.newsletter-cta__text {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.4);
}

.newsletter-cta__btn {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9a0c8;
  border: 1px solid rgba(201, 160, 200, 0.4);
  padding: 0.55rem 1.4rem;
  text-decoration: none;
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}

.newsletter-cta__btn:hover {
  color: #fff;
  border-color: rgba(201, 160, 200, 0.9);
  background: rgba(201, 160, 200, 0.08);
}

.release-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9a0c8;
}

.release-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #c9a0c8;
}

.release-date {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: #c9a0c8;
}

@media (max-width: 600px) {
  .release-cover {
    width: min(260px, 80vw);
  }
}

/* ─── 444 events ──────────────────────────────────────── */
#events {
  padding-top: 7rem;
  padding-bottom: 4rem;
}

.section--events {
  background: rgba(6, 5, 7, 0.82);
  position: relative;
  overflow: hidden;
}

.events-top {
  margin-bottom: 4rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: end;
}

.events-coin {
  width: clamp(110px, 15vw, 220px);
  flex-shrink: 0;
  position: relative;
  aspect-ratio: 1;
  transform-style: preserve-3d;
  animation: coinSpin 4s ease-in-out infinite;
  margin-left: 2rem;
  margin-bottom: 1rem;
  align-self: center;
}

.events-coin__face {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  backface-visibility: hidden;
  mix-blend-mode: lighten;
}

.events-coin__back {
  transform: rotateY(180deg);
}

@keyframes coinSpin {
  0%   { transform: perspective(600px) rotateY(0deg); }
  40%  { transform: perspective(600px) rotateY(360deg); }
  100% { transform: perspective(600px) rotateY(360deg); }
}

.events-text {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.events-desc {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.8;
  color: rgba(240, 237, 232, 0.6);
}

.events-desc:first-child {
  color: rgba(240, 237, 232, 0.78);
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 4rem;
}

.event-card {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.event-card:last-child {
  border-bottom: 1px solid var(--border);
}

.event-card__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
}

.event-card__name {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 400;
  font-style: normal;
  color: var(--text);
  padding-left: 1rem;
}

.event-card__meta {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--muted);
  flex-shrink: 0;
  padding-right: 1rem;
}

.event-card__desc {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.75;
  color: rgba(240, 237, 232, 0.55);
  max-width: 58ch;
  padding-left: 1rem;
}

.event-card__lineup {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c9a0c8;
  padding-left: 1rem;
}

/* ─── contact ─────────────────────────────────────────── */
#contact {
  padding-top: 4rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: stretch;
}

.clink {
  font-family: 'Hanken Grotesk', sans-serif;
  font-style: normal;
  font-size: clamp(2.2rem, 5.5vw, 4.4rem);
  letter-spacing: 0.02em;
  color: var(--muted);
  text-decoration: none;
  line-height: 1.15;
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 0;
  transition: color 0.2s, padding-left 0.35s cubic-bezier(0.16,1,0.3,1);
  display: block;
}
.clink:hover {
  color: #c9a0c8;
  padding-left: 0.8rem;
}

/* ─── footer ──────────────────────────────────────────── */
footer {
  padding: 3.5rem 3.5rem;
  text-align: center;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--muted);
  border-top: 1px solid var(--border);
  background: rgba(7, 7, 10, 0.88);
}

/* ─── mobile ──────────────────────────────────────────── */
@media (max-width: 680px) {
  body {
    background: none;
  }
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    background: url('images/641884985_18565755475061570_5965357756669548293_n.jpg') center 30% / cover no-repeat;
  }
  .circle-fixed { display: none; }

  .about-p,
  .events-desc,
  .event-card__desc { text-align: justify; }

  #nav { padding: 1.25rem 1.5rem; }
  .nav-links { gap: 1.4rem; }
  .nav-links a {
    font-size: 0.95rem;
    color: #f2f2f2;
    text-shadow: 0 1px 8px rgba(0,0,0,0.9), 0 0 20px rgba(0,0,0,0.7);
  }

  .section { padding: 3.5rem 0; }
  .container { padding: 0 1.5rem; }

  #hero { min-height: 100svh; }
  .hero-logo-wordmark { top: 58%; left: 4%; width: 92%; transform: translateY(-50%); filter: invert(1) drop-shadow(0 0 4px rgba(150, 150, 170, 0.4)) drop-shadow(0 0 10px rgba(120, 120, 150, 0.2)); }
  .hero-logo-circle { width: clamp(60px, 14vw, 90px); top: 1.5rem; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .section-index { display: none; }

.gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 48vw;
  }
  .gallery-img--wide { grid-column: span 2; }

  .events-top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .events-coin {
    margin-left: auto;
    margin-right: auto;
    width: clamp(100px, 35vw, 160px);
  }

  .event-row { flex-wrap: wrap; gap: 0.5rem; }

  .event-card__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
  .event-card__name { padding-left: 0; }
  .event-card__meta { padding-right: 0; }
  .event-card__desc,
  .event-card__lineup { padding-left: 0; }

  .cursor { display: none; }
}

@media (max-width: 400px) {
  .clink { font-size: 2rem; }
}
