@font-face {
  font-family: 'Airstrike';
  src: url('fonts/airstrike.woff2') format('woff2'),
       url('fonts/airstrike.ttf') format('truetype');
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Airstrike';
  src: url('fonts/airstrikebold.woff2') format('woff2'),
       url('fonts/airstrikebold.ttf') format('truetype');
  font-weight: bold;
  font-display: swap;
}

:root {
  --color-bg:         #070d18;
  --color-surface:    #0c1422;
  --color-border:     #1a2840;
  --color-accent:     #d4ff00;
  --color-text:       #e8eef5;
  --color-text-muted: #5a7090;
  --font-display:     'Airstrike', 'Arial Black', Arial, sans-serif;
  --font-body:        Arial, sans-serif;
  --max-width:        900px;
}

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

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--color-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── HERO ── */
#hero {
  position: relative;
  z-index: 0;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#hero .bg {
  position: fixed;
  inset: 0;
  background: url('assets/MM_Madness_Hintergrund_Phase_reduced.jpg') center/cover no-repeat;
  filter: saturate(1.1);
  z-index: 0;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 45%,
    rgba(4,10,20,0.1) 58%,
    rgba(4,10,20,0.35) 72%,
    rgba(4,10,20,0.6) 83%,
    rgba(5,12,24,0.82) 92%,
    #071828 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* thin accent glow at the seam between hero and content */
#content::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(212,255,0,0.15) 20%,
    rgba(212,255,0,0.35) 50%,
    rgba(212,255,0,0.15) 80%,
    transparent
  );
  box-shadow: 0 0 18px 4px rgba(212,255,0,0.08);
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--color-accent);
  opacity: 0.5;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-hint svg {
  width: 28px;
  height: 16px;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* hero text is in the image — .inner is visually hidden but kept for screen readers */
#hero .inner {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ── SECTIONS ── */
section {
  padding: 80px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-display);
  font-weight: bold;
  font-size: clamp(1.8rem, 5vw, 3rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 32px;
}

hr.divider {
  border: none;
  border-top: 1px solid var(--color-border);
  max-width: var(--max-width);
  margin: 0 auto;
}

hr.divider--full {
  max-width: none;
  border-top: none;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(212,255,0,0.15) 20%,
    rgba(212,255,0,0.35) 50%,
    rgba(212,255,0,0.15) 80%,
    transparent
  );
  box-shadow: 0 0 18px 4px rgba(212,255,0,0.08);
}

/* ── LINEUP ── */
.lineup-list { list-style: none; }

.lineup-list li {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  font-family: var(--font-display);
  font-weight: normal;
  font-size: clamp(1.1rem, 3vw, 1.8rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text);
  position: relative;
}

.lineup-list li::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 180px;
  height: 2px;
  background: linear-gradient(to right, var(--color-accent), transparent);
  transform: skewX(-20deg);
  opacity: 0.25;
  box-shadow: 0 0 12px 2px rgba(212,255,0,0.1);
}

.lineup-list li:last-child::after {
  display: none;
}



.artist-name { flex: 1; }

.artist-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  padding-left: 20px;
  margin-top: 4px;
}

.social-link {
  display: flex;
  transition: filter 0.2s ease;
}

.social-link:hover { text-decoration: none; }

.social-icon {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
  transition: filter 0.2s ease;
}

.social-link:hover .social-icon {
  filter: brightness(0) invert(0.84) sepia(1) saturate(5) hue-rotate(30deg);
}

.artist-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  flex-shrink: 0;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
}

/* ── COLLECTIVES ── */
.collectives {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 60px 0px 10px 0;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.collective-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}

.collective-link:hover {
  color: var(--color-accent);
  text-decoration: none;
}

.collective-icon {
  width: 14px;
  height: 14px;
  filter: brightness(0) invert(1);
  transition: filter 0.2s ease;
}

.collective-link:hover .collective-icon {
  filter: brightness(0) invert(0.84) sepia(1) saturate(5) hue-rotate(30deg);
}

.collective-sep {
  color: var(--color-text-muted);
  opacity: 0.4;
}

#lineup {
  padding-top: 24px;
}

.event-details {
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 40px;
}

#tickets {
  padding-top: 16px;
}

/* ── TICKETS COMING SOON ── */
.tickets-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 64px 24px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  text-align: center;
}

.tickets-soon-label {
  font-family: var(--font-display);
  font-weight: bold;
  font-size: clamp(2.5rem, 8vw, 5rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  animation: pulse 3s ease-in-out infinite;
}

.tickets-soon-cta {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text);
  opacity: 0.8;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.45; }
}

/* ── IMPRESSUM ── */
#impressum {
  padding: 24px;
  text-align: center;
  font-size: 0.6rem;
}

#impressum a {
  color: #253550;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0.6;
}

#impressum a:hover { opacity: 1; }

/* ── CONTENT SLIDES OVER HERO ── */
#content {
  position: relative;
  z-index: 1;
  background:
    linear-gradient(
      to bottom,
      #071828 0px,
      #0a1220 280px,
      var(--color-bg) 560px
    );
  box-shadow: 0 -60px 80px 20px rgba(4,10,24,0.97);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

.lineup-list li {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  transition-delay: var(--stagger, 0s);
}
.lineup-list.visible li {
  opacity: 1;
  transform: none;
}

@media (max-width: 768px) {
  section { padding: 60px 20px; }

  #hero .bg {
    background-image: url('assets/MM_Madness_Hintergrund_mobile_Phase_reduced.jpg');
  }

  .artist-img {
    width: 52px;
    height: 52px;
  }

  .lineup-list li {
    gap: 14px;
  }

  .kollektiv-suffix {
    display: none;
  }

  .artist-links {
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
    padding-left: 0;
    min-height: calc(18px + 8px + 18px);
  }
}
