﻿:root {
  --bg: #0f1624;
  --bg-alt: #121c2e;
  --card: #16223a;
  --text: #e8ecf5;
  --muted: #a7b4c9;
  --accent: #e07a5f;
  --accent-2: #6bc9c5;
  --border: rgba(255,255,255,0.08);
  --radius: 14px;
  --shadow: 0 16px 40px rgba(0,0,0,0.35);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% 20%, rgba(107,201,197,0.07), transparent 25%),
              radial-gradient(circle at 80% 0%, rgba(224,122,95,0.08), transparent 22%),
              var(--bg);
  line-height: 1.6;
  scroll-behavior: smooth;
}

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

.section {
  padding: 80px 5vw;
  max-width: 1200px;
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 5vw;
  background: rgba(15,22,36,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
}
.logo__mark svg {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.35));
  transform-origin: 50% 50%;
}
.logo__text {
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 18px;
}
.nav a {
  font-weight: 600;
  color: var(--muted);
}
.nav a:hover { color: var(--text); }

.burger {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
  cursor: pointer;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--text);
  margin: 4px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero.section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 12% 18%, rgba(107,201,197,0.10), transparent 32%),
              radial-gradient(circle at 82% 28%, rgba(224,122,95,0.10), transparent 34%),
              linear-gradient(120deg, rgba(255,255,255,0.05), rgba(255,255,255,0));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 22px 60px rgba(0,0,0,0.3);
  padding: 60px 5vw 90px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 00px;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero__text { display: block; }
.hero__text h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin: 10px 0;
}
.hero__text .lede {
  color: var(--muted);
  max-width: 1200px;
}

.hero__badge {
  background: linear-gradient(135deg, rgba(224,122,95,0.18), rgba(107,201,197,0.2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  margin-top: 12px;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 360px;
  margin-left: auto;
}
.badge__album { font-size: 1.4rem; font-weight: 700; margin: 12px 0; letter-spacing: 0.02em; }
.hero__badge img {
  display: block;
  width: 100%;
  max-width: 240px;
  border-radius: 10px;
  margin: 0 auto 12px auto;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 26px rgba(0,0,0,0.25);
}
.hero__badge::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.06), transparent 45%),
              radial-gradient(circle at 80% 80%, rgba(107,201,197,0.08), transparent 40%);
  pointer-events: none;
  mix-blend-mode: screen;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--accent-2);
  font-weight: 700;
}
.lede { font-size: 1.05rem; }
.tagline { margin-top: 10px; color: var(--muted); }

.btn {
  display: inline-block;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 700;
  border: 1px solid var(--accent);
  color: var(--text);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.btn.primary {
  background: linear-gradient(135deg, var(--accent), #f09d78);
  color: #0f1624;
  border: none;
}
.btn.ghost {
  background: transparent;
  border: 1px solid var(--border);
}
.btn.full { width: 100%; text-align: center; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 12px 24px rgba(0,0,0,0.2); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px;
  align-items: start;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 360px;
}

.meta {
  list-style: none;
  margin: 0;
  padding: 0;
}
.meta li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.meta span { color: var(--muted); }

.pill-group { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.pill {
  padding: 8px 12px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--muted);
}

.music .media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin: 24px 0;
}
.media-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}
.media-title { color: var(--muted); margin-top: 10px; }

.ratio { position: relative; width: 100%; overflow: hidden; border-radius: 10px; background: #000; }
.ratio iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.ratio-16x9 { padding-top: 56.25%; }

.albums {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 22px;
}
.album {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: var(--shadow);
}
.album__year { color: var(--accent-2); font-weight: 700; }
.album h3 { margin: 0; }
.album p { color: var(--muted); margin: 0; }
.album .link { font-weight: 700; color: var(--accent); }

.discography-alt {
  background: linear-gradient(135deg, rgba(224,122,95,0.06), rgba(107,201,197,0.05));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.discography-alt__header { max-width: 760px; margin-bottom: 26px; }
.discography-alt__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 360px;
  gap: 24px;
  align-items: start;
}
.timeline {
  position: relative;
  border-left: 1px solid var(--border);
  padding-left: 18px;
  display: grid;
  gap: 18px;
}
.timeline__item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 8px 16px;
  align-items: start;
  position: relative;
}
.timeline__year {
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--accent-2);
  position: relative;
  padding-left: 10px;
}
.timeline__year::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 2px solid var(--accent-2);
  background: var(--bg);
  box-shadow: 0 0 0 6px rgba(107,201,197,0.12);
}
.timeline__card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 152px 1fr;
  grid-template-areas:
    "cover title"
    "cover text"
    "cover links";
  gap: 8px 14px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.timeline__cover {
  grid-area: cover;
  width: 136px;
  height: 136px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #0c1320;
  box-shadow: 0 8px 18px rgba(0,0,0,0.24);
  margin: 0;
  align-self: start;
  justify-self: start;
}
.timeline__card--highlight {
  border-color: rgba(224,122,95,0.4);
  background: linear-gradient(135deg, rgba(224,122,95,0.18), rgba(107,201,197,0.14)), var(--card);
  position: relative;
  z-index: 3;
}
.timeline__title { grid-area: title; font-weight: 700; font-size: 1.05rem; margin: 0; }
.timeline__card p { grid-area: text; margin: 0; color: var(--muted); }
.timeline__links { grid-area: links; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 2px; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(107,201,197,0.12);
  color: var(--text);
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 0.15s ease, transform 0.15s ease;
}
.chip:hover { background: rgba(224,122,95,0.18); transform: translateY(-1px); color: var(--text); }

.discography-alt__feature { align-self: stretch; }
.feature-card {
  background: linear-gradient(160deg, rgba(224,122,95,0.18), rgba(15,22,36,0.92)), var(--card);
  border: 1px solid rgba(224,122,95,0.4);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 80px;
  z-index: 3;
}
.feature-card__lede { color: var(--muted); margin-top: 4px; }
.feature-card__cover {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 26px rgba(0,0,0,0.28);
  margin: 12px 0;
}
.feature-list {
  list-style: none;
  margin: 0 0 12px 0;
  padding: 0;
  display: grid;
  gap: 8px;
  color: var(--muted);
}
.feature-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.links-list li { margin: 8px 0; }

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}
.contact-form label {
  display: block;
  color: var(--muted);
  font-weight: 600;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #0c1320;
  color: var(--text);
  font-size: 1rem;
}
.contact-form textarea { resize: vertical; }
.hint { color: var(--muted); font-size: 0.9rem; }

.footer {
  padding: 24px 5vw 40px;
  background: #0b101c;
  color: var(--muted);
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
}
.footer__links a { color: var(--muted); margin-left: 14px; }
.footer__links a:hover { color: var(--text); }

@media (max-width: 920px) {
  .hero.section { grid-template-columns: 1fr; padding: 80px 5vw; max-width: 100%; }
  .hero__inner { grid-template-columns: 1fr; gap: 28px; }
  .split { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .nav { display: none; position: absolute; top: 70px; right: 5vw; flex-direction: column; background: #0b101c; padding: 12px; border: 1px solid var(--border); border-radius: 12px; }
  .nav.open { display: flex; }
  .burger { display: inline-flex; align-items: center; justify-content: center; }
  .discography-alt__layout { grid-template-columns: 1fr; }
  .feature-card { position: static; }
}

/* Keine Bewegung für statisches Logo */
.snow-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0; /* Firefox ignores negative z-index on fixed layers */
  overflow: hidden;
  transition: opacity 0.3s ease;
}
.snow-overlay--paused { opacity: 0; }

main,
footer {
  position: relative;
  z-index: 1;
}

.snow-flake {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  background: rgba(232, 236, 245, 0.78);
  box-shadow: 0 0 8px rgba(232, 236, 245, 0.25);
  will-change: transform;
  transition: opacity 0.35s ease;
}
.snow-flake--resting { opacity: 0.95; }
.snow-flake--melting { opacity: 0; }

@media (max-width: 720px) {
  .timeline {
    border-left: none;
    padding-left: 0;
    gap: 24px;
  }
  .timeline__item {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .timeline__year {
    padding-left: 0;
    order: -1;
    font-size: 0.9rem;
    letter-spacing: 0.22em;
    opacity: 0.8;
  }
  .timeline__year::before {
    display: none;
  }
  .timeline__card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "cover"
      "title"
      "text"
      "links";
  }
  .timeline__cover {
    width: 100%;
    max-width: 360px;
    height: auto;
    justify-self: stretch;
  }
  .timeline__links {
    justify-content: flex-start;
  }
}
