/* ============================================================
   Ric Moreno – Hauptstylesheet
   Design: Luxuriöser Schlager-Stil
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Great+Vibes&family=Lato:wght@300;400;700&display=swap');

/* ── CSS-Variablen ─────────────────────────────────────── */
:root {
  --bg:          #0d0508;
  --bg-card:     #160a10;
  --bg-nav:      rgba(13, 5, 8, 0.95);
  --gold:        #c8953a;
  --gold-light:  #e8c96e;
  --gold-dim:    #8a6428;
  --ruby:        #8c1c2e;
  --ruby-light:  #b8253e;
  --cream:       #f4e4c1;
  --cream-dim:   #b8a882;
  --text:        #f0dfc0;
  --text-muted:  #8a7860;
  --border:      rgba(200, 149, 58, 0.2);
  --shadow:      0 8px 48px rgba(0, 0, 0, 0.7);
  --radius:      6px;
  --font-head:   'Playfair Display', Georgia, serif;
  --font-deco:   'Great Vibes', cursive;
  --font-body:   'Lato', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

img { max-width: 100%; height: auto; display: block; }

a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-light); }

/* ── Scrollbar ────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }

/* ── Gold-Linie Dekor ─────────────────────────────────── */
.deco-line {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin: 12px 0 32px;
}
.deco-line::before,
.deco-line::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.deco-line::after {
  background: linear-gradient(to left, transparent, var(--gold));
}
.deco-line span {
  color: var(--gold);
  font-size: 18px;
}

/* ── Section-Titel ───────────────────────────────────── */
.section-label {
  font-family: var(--font-deco);
  font-size: 2rem;
  color: var(--gold);
  text-align: center;
  display: block;
  margin-bottom: 4px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  text-align: center;
  color: var(--cream);
  line-height: 1.2;
}

/* ── Top-Banner ───────────────────────────────────────── */
#top-banner {
  width: 100%;
  background: #1a0d14;
  line-height: 0;
  position: relative;
  z-index: 1001;
}
#top-banner a {
  display: block;
  width: 100%;
}
#top-banner img {
  width: 100%;
  height: auto;
  max-height: 160px;
  object-fit: cover;
  object-position: center center;
  display: block;
}
@media (max-width: 600px) {
  #top-banner img { max-height: 100px; }
}

/* ── Navigation ───────────────────────────────────────── */
#site-nav {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  background: var(--bg-nav);
  box-shadow: 0 2px 20px rgba(0,0,0,.8);
  transition: background .4s, box-shadow .4s;
}
#site-nav.scrolled {
  background: var(--bg-nav);
  box-shadow: 0 2px 20px rgba(0,0,0,.8);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-deco);
  font-size: 1.8rem;
  color: var(--gold);
  letter-spacing: .02em;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color .2s;
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-logo-img {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: 16px;
}
.nav-logo-img img {
  height: 52px;
  width: auto;
  display: block;
  border-radius: 4px;
  object-fit: contain;
  transition: opacity .2s;
}
.nav-logo-img:hover img { opacity: .8; }
@media (max-width: 768px) { .nav-logo-img img { height: 38px; } }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  transition: .3s;
}


/* ══════════════════════════════════════════════════════════
   HERO – Tim-Peters-Layout: Links Foto / Rechts Text
══════════════════════════════════════════════════════════ */
#hero {
  display: flex;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

/* ── Linke Hälfte: Foto-Panel ──────────────────────────── */
.hero-left {
  flex: 0 0 50%;
  background: #110810;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
  gap: 0;
}
/* Dezentes Muster im Hintergrund (wie bei Tim Peters) */
.hero-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(200,149,58,.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.hero-left-name-top,
.hero-left-name-bottom {
  font-family: var(--font-head);
  font-weight: 900;
  line-height: .9;
  letter-spacing: .04em;
  text-align: center;
  position: relative;
  z-index: 1;
  color: var(--cream);
  font-size: 6vw;
  opacity: 0;
  animation: fadeUp .7s ease forwards;
}
@media (max-width: 900px) {
  .hero-left-name-top, .hero-left-name-bottom { font-size: 3rem; }
}
@media (min-width: 1400px) {
  .hero-left-name-top, .hero-left-name-bottom { font-size: 5.5rem; }
}
.hero-left-name-top  { animation-delay: .2s; margin-bottom: 12px; }
.hero-left-name-bottom {
  color: var(--gold);
  animation-delay: .4s;
  margin-top: 12px;
}

/* ── Kreisfoto ─────────────────────────────────────────── */
.hero-circle-wrap {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 320px;
  height: 320px;
  opacity: 0;
  animation: fadeIn .9s .3s ease forwards;
}
@keyframes fadeIn { to { opacity: 1; } }

.hero-circle {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(200,149,58,.6);
  box-shadow: 0 0 0 10px rgba(200,149,58,.08), 0 0 60px rgba(200,149,58,.15);
  background: #1a0d14;
}
.hero-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-circle-empty {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: var(--gold);
  opacity: .25;
}

/* ── Rechte Hälfte: Text-Panel ─────────────────────────── */
.hero-right {
  flex: 0 0 50%;
  background: #0d0508;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 60px 60px;
  position: relative;
}
/* Subtiler Verlauf links */
.hero-right::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 60px;
  background: linear-gradient(to right, rgba(140,28,46,.15), transparent);
  pointer-events: none;
}

.hero-right-inner {
  max-width: 520px;
  width: 100%;
  opacity: 0;
  animation: fadeUp .8s .5s ease forwards;
}

.hero-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--gold);
  margin-bottom: 24px;
  border-left: 3px solid var(--gold);
  padding-left: 12px;
}

.hero-bio-text {
  font-size: clamp(1rem, 2vw, 1.3rem);
  line-height: 1.65;
  color: var(--cream);
  margin-bottom: 24px;
  font-family: var(--font-head);
}

.hero-more-link {
  display: inline-block;
  font-size: 14px;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(200,149,58,.5);
  padding-bottom: 3px;
  margin-bottom: 40px;
  letter-spacing: .05em;
  transition: border-color .2s;
}
.hero-more-link:hover { border-color: var(--gold); }

/* Streaming-Links in einer Reihe */
.hero-stream-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.hero-stream-sep {
  color: rgba(200,149,58,.35);
  font-size: 20px;
  line-height: 1;
}
.hero-stream-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--cream-dim);
  text-decoration: none;
  letter-spacing: .02em;
  transition: color .2s;
}
.hero-stream-link:hover { color: var(--gold); }
.hero-stream-icon { color: var(--gold); font-size: 15px; }

/* CTA-Buttons */
.hero-right-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
}
.hero-btn-gold,
.hero-btn-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: filter .2s, transform .15s;
  cursor: pointer;
}
.hero-btn-gold {
  background: var(--gold);
  color: #0d0508;
}
.hero-btn-outline {
  background: transparent;
  border: 2px solid rgba(200,149,58,.5);
  color: var(--cream);
}
.hero-btn-gold:hover   { filter: brightness(1.15); transform: translateY(-1px); }
.hero-btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--bg);
  box-shadow: 0 4px 20px rgba(200,149,58,.35);
}
.btn-gold:hover {
  box-shadow: 0 6px 28px rgba(200,149,58,.55);
  color: var(--bg);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(244,228,193,.35);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Scroll-Indikator ─────────────────────────────────── */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp .8s 1.4s forwards;
}
.scroll-hint span {
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid rgba(200,149,58,.4);
  border-radius: 12px;
  position: relative;
}
.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 6px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 1.8s infinite;
}

/* ── Musik-Sektion ───────────────────────────────────── */
#musik {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg) 0%, #120810 50%, var(--bg) 100%);
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}
.musik-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 50px;
}
.track-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  cursor: pointer;
}
.track-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,149,58,.5);
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
}
.track-cover {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  background: #1e0e16;
}
.track-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.track-card:hover .track-cover img { transform: scale(1.04); }
.track-cover-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, #1e0e16 0%, #2a1020 100%);
  color: var(--gold-dim);
}
.track-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,5,8,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}
.track-card:hover .track-play-overlay { opacity: 1; }
.track-card.playing .track-play-overlay { opacity: 1; background: rgba(200,149,58,.2); }
.play-circle {
  width: 60px; height: 60px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--bg);
  box-shadow: 0 4px 20px rgba(200,149,58,.6);
}
.track-info {
  padding: 16px 18px;
}
.track-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 4px;
}
.track-meta {
  font-size: 13px;
  color: var(--text-muted);
}
.track-card.playing .track-title { color: var(--gold); }

/* ── Audioplayer (sticky bottom) ─────────────────────── */
#audio-player {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(13,5,8,.97);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(16px);
  padding: 12px 30px;
  display: none;
  align-items: center;
  gap: 20px;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
#audio-player.visible {
  display: flex;
  transform: translateY(0);
}
.player-cover {
  width: 52px; height: 52px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  background: #1e0e16;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.player-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 6px;
}
.player-info {
  flex: 1;
  min-width: 0;
}
.player-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  color: var(--cream);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.player-artist {
  font-size: 12px;
  color: var(--text-muted);
}
.player-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}
.player-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--cream-dim);
  font-size: 20px;
  padding: 4px;
  transition: color .2s, transform .2s;
}
.player-btn:hover { color: var(--gold); transform: scale(1.1); }
.player-btn.play-btn {
  width: 42px; height: 42px;
  background: var(--gold);
  color: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.player-btn.play-btn:hover { background: var(--gold-light); transform: scale(1.05); }
.player-progress {
  flex: 1;
  min-width: 120px;
}
.progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,.1);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  border-radius: 2px;
  width: 0;
  transition: width .1s linear;
  pointer-events: none;
}
.player-time {
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
}
.player-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 18px;
  padding: 4px;
  transition: color .2s;
}
.player-close:hover { color: var(--gold); }

/* ── Bio-Sektion ─────────────────────────────────────── */
#bio {
  padding: 100px 0;
}
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  align-items: center;
  margin-top: 50px;
}
.bio-img-wrap {
  position: relative;
}
.bio-img-wrap img {
  border-radius: 10px;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.bio-img-deco {
  position: absolute;
  top: -20px; left: -20px;
  width: 80px; height: 80px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  border-radius: 4px 0 0 0;
}
.bio-img-deco2 {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 80px; height: 80px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  border-radius: 0 0 4px 0;
}
.bio-text h3 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--cream);
  margin-bottom: 20px;
  font-weight: 400;
  font-style: italic;
}
.bio-text p {
  color: var(--cream-dim);
  line-height: 1.9;
  font-size: 1.05rem;
  margin-bottom: 16px;
}
.bio-facts {
  display: flex;
  gap: 30px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.bio-fact {
  text-align: center;
}
.bio-fact-num {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
  display: block;
}
.bio-fact-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
}

/* ── Termine ─────────────────────────────────────────── */
#termine {
  padding: 100px 0;
  background: #120810;
}
.events-list {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.event-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: background .2s, border-color .2s, transform .2s;
}
.event-row:hover {
  background: #1e0e16;
  border-color: rgba(200,149,58,.4);
  transform: translateX(4px);
}
.event-date-box {
  text-align: center;
}
.event-day {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.event-month {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  display: block;
  margin-top: 3px;
}
.event-info-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 4px;
}
.event-location {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.event-tickets a.btn { font-size: 12px; padding: 9px 18px; }
.no-events {
  text-align: center;
  color: var(--text-muted);
  padding: 40px;
  font-style: italic;
}

/* ── Galerie ─────────────────────────────────────────── */
#galerie {
  padding: 100px 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 8px;
  margin-top: 50px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
  background: var(--bg-card);
}
.gallery-item:nth-child(3n+1) { grid-column: span 2; grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(13,5,8,.8));
  display: flex;
  align-items: flex-end;
  padding: 14px;
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption {
  font-size: 13px;
  color: var(--cream);
}

/* Lightbox */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.95);
  display: none;
  align-items: center;
  justify-content: center;
}
#lightbox.open { display: flex; }
#lightbox img {
  max-width: 92vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}
.lb-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 32px;
  cursor: pointer;
  transition: color .2s;
}
.lb-close:hover { color: var(--gold); }

/* ── Booking-Sektion ─────────────────────────────────── */
#booking {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg) 0%, #120810 100%);
}
.booking-intro {
  text-align: center;
  color: var(--cream-dim);
  max-width: 560px;
  margin: 20px auto 50px;
  font-size: 1.05rem;
}

/* ── Formulare ───────────────────────────────────────── */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  max-width: 720px;
  margin: 0 auto;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(200,149,58,.25);
  border-radius: var(--radius);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color .2s, background .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(200,149,58,.06);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group select option { background: var(--bg-card); color: var(--cream); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { text-align: center; margin-top: 12px; }
.form-message {
  display: none;
  padding: 14px 20px;
  border-radius: var(--radius);
  margin-top: 16px;
  font-size: 14px;
}
.form-message.success { background: rgba(60,140,60,.2); border: 1px solid rgba(80,180,80,.3); color: #a0e0a0; display: block; }
.form-message.error   { background: rgba(140,60,60,.2); border: 1px solid rgba(180,80,80,.3); color: #e0a0a0; display: block; }

/* ── Kontakt-Sektion ─────────────────────────────────── */
#kontakt {
  padding: 100px 0;
  background: #120810;
}
.kontakt-cols {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  margin-top: 50px;
  align-items: start;
}
.kontakt-info h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 20px;
}
.kontakt-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}
.kontakt-icon {
  width: 42px; height: 42px;
  background: rgba(200,149,58,.1);
  border: 1px solid rgba(200,149,58,.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.kontakt-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  display: block;
}
.kontakt-val { color: var(--cream-dim); font-size: 15px; }
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}
.social-link {
  width: 42px; height: 42px;
  background: rgba(200,149,58,.08);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--cream-dim);
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}
.social-link:hover {
  background: rgba(200,149,58,.2);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ── Seiten (dynamische Inhalte) ─────────────────────── */
#page-content {
  min-height: 60vh;
  padding: 120px 0 80px;
}
.page-content-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 30px;
}
.page-content-inner h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--cream);
  margin-bottom: 32px;
}
.page-content-inner h2 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--gold);
  margin: 32px 0 16px;
}
.page-content-inner p {
  color: var(--cream-dim);
  margin-bottom: 16px;
  line-height: 1.9;
}
.page-content-inner a { color: var(--gold); }
.page-content-inner a:hover { color: var(--gold-light); }

/* ── Footer ──────────────────────────────────────────── */
#footer {
  background: #050203;
  border-top: 1px solid rgba(200,149,58,.12);
}
.footer-top {
  text-align: center;
  padding: 60px 40px 40px;
  border-bottom: 1px solid rgba(200,149,58,.08);
}
.footer-logo-big {
  font-family: var(--font-deco);
  font-size: 2.8rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.footer-tagline-big {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: .05em;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 16px;
  justify-content: center;
}
.footer-social a {
  color: var(--text-muted);
  transition: color .2s, transform .2s;
  display: flex;
  align-items: center;
}
.footer-social a:hover { color: var(--gold); transform: translateY(-2px); }

.footer-nav-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 28px;
  padding: 28px 40px;
  border-bottom: 1px solid rgba(200,149,58,.08);
}
.footer-nav-row a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: .04em;
  transition: color .2s;
}
.footer-nav-row a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  font-size: 12px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s;
}
.footer-legal a:hover { color: var(--gold); }

@media (max-width: 700px) {
  .footer-bottom { justify-content: center; text-align: center; padding: 20px; }
  .footer-nav-row { padding: 24px 20px; }
}


/* ── Animationen ─────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollDot {
  0%   { top: 6px; opacity: 1; }
  80%  { top: 18px; opacity: 0; }
  100% { top: 6px; opacity: 0; }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s, transform .7s;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0; bottom: 0;
    background: var(--bg);
    padding: 40px 30px;
    gap: 20px;
    overflow-y: auto;
    z-index: 999;
  }
  .nav-links.open a { font-size: 18px; }
  .nav-burger { display: flex; }
  #hero { flex-direction: column; min-height: auto; }
  .hero-left { flex: none; width: 100%; padding: 50px 20px 30px; min-height: 70vw; }
  .hero-right { flex: none; width: 100%; padding: 40px 28px 50px; }
  .hero-right::before { display: none; }
  .hero-right-inner { max-width: 100%; }
  .hero-circle-wrap { width: clamp(180px, 55vw, 260px); height: clamp(180px, 55vw, 260px); }
  .hero-left-name-top, .hero-left-name-bottom { font-size: clamp(2.5rem, 12vw, 4rem); }
  .hero-right-btns { max-width: 100%; }
  .bio-grid { grid-template-columns: 1fr; }
  .bio-img-wrap { max-width: 360px; margin: 0 auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(3n+1) { grid-column: span 1; grid-row: span 1; }
  .kontakt-cols { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .event-row { grid-template-columns: 60px 1fr; gap: 14px; }
  .event-tickets { grid-column: span 2; }
  #audio-player { padding: 10px 16px; gap: 12px; }
}
@media (max-width: 600px) {
  .form-card { padding: 24px 20px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; }
  .musik-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Streaming & Download – Badges ───────────────────────── */
.streaming-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 40px;
}
.stream-badge {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .18s, box-shadow .2s, filter .2s;
  line-height: 0;
}
.stream-badge img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 9px;
}
.stream-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,0,0,.55);
  filter: brightness(1.1);
}
.stream-badge-text-only {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 20px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.3;
  text-decoration: none;
  min-height: 60px;
}
@media (max-width: 520px) {
  .streaming-grid { grid-template-columns: 1fr; }
}

/* ── Videos-Sektion ──────────────────────────────────────── */
#videos { padding: 80px 0; background: var(--bg-dark); }

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.video-card { display: flex; flex-direction: column; gap: 10px; }
.video-thumb-link {
  position: relative;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(200,149,58,.15);
  transition: transform .2s, border-color .2s;
}
.video-thumb-link:hover { transform: translateY(-3px); border-color: rgba(200,149,58,.5); }
.video-thumb-link img { width: 100%; display: block; aspect-ratio: 16/9; object-fit: cover; }
.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13,5,8,.35);
  color: #fff;
  font-size: 28px;
  opacity: 0;
  transition: opacity .2s;
}
.video-thumb-link:hover .video-play-btn { opacity: 1; }
.video-title {
  font-size: 13px;
  color: var(--cream-dim);
  padding: 0 2px;
  line-height: 1.4;
}

/* ── Streaming-Bar unter Musik ───────────────────────────── */
.streaming-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  padding: 40px 60px;
  background: rgba(200,149,58,.04);
  border-top: 1px solid rgba(200,149,58,.12);
}

@media (max-width: 900px) {
  .video-grid { grid-template-columns: 1fr 1fr; }
  .streaming-bar { padding: 30px 20px; }
}
@media (max-width: 520px) {
  .video-grid { grid-template-columns: 1fr; }
}
