/* =============================================
   MUSIK — Landing und Album-Detailseiten
   Erweitert /styles.css mit musik-spezifischen Komponenten.
   ============================================= */

body.mu-page { line-height: 1.7; }

/* ===== Hero ===== */
.mu-hero {
  position: relative;
  padding: 8rem 1.5rem 4rem;
  background: linear-gradient(180deg, #0d1e35 0%, #152843 100%);
  border-bottom: 1px solid rgba(200,169,98,0.18);
  overflow: hidden;
}
.mu-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 15%, rgba(200,169,98,0.10), transparent 60%),
    radial-gradient(ellipse at 75% 85%, rgba(200,169,98,0.06), transparent 60%);
  pointer-events: none;
}
.mu-hero-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.mu-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.mu-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 7vw, 4.8rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--cream);
  margin-bottom: 0.8rem;
}
.mu-hero-subtitle {
  font-family: 'EB Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--gold-light);
  margin-bottom: 2rem;
  font-weight: 400;
}
.mu-hero-lead {
  max-width: 640px;
  margin: 0 auto 1rem;
  color: var(--text);
  font-size: 1.05rem;
}

/* ===== Album-Cards (Landing) ===== */
.mu-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
}
.mu-card {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.mu-card-cover {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1rem 3rem rgba(0,0,0,0.5);
  margin-bottom: 1.5rem;
  transition: transform var(--transition);
}
.mu-card:hover .mu-card-cover { transform: translateY(-4px); }
.mu-card-cover img { width: 100%; height: auto; display: block; }
.mu-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.2rem;
}
.mu-card-subtitle {
  font-family: 'EB Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.mu-card-desc {
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}
.mu-card-cta {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.mu-card-cta:hover {
  background: var(--gold);
  color: var(--navy);
}
.mu-card-cta-soon {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  border: 1px solid rgba(200,169,98,0.30);
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: default;
}

/* Künstler-Credit direkt unter jedem Cover: klein, rund, mit Name.
   Pro Karte eigen, damit spätere Alben andere Interpreten zeigen können. */
.mu-card-artist {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin: 1rem 0 0.3rem;
}
.mu-card-artist img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 22%;
  border: 1px solid rgba(200,169,98,0.5);
}
.mu-card-artist span {
  font-family: 'EB Garamond', Georgia, serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold-light);
}

/* ===== Intro-Block (warum hebräisch / männerstimme) ===== */
.mu-intro {
  background: #0a1729;
  padding: 4rem 1.5rem;
  border-top: 1px solid rgba(200,169,98,0.10);
}
.mu-intro-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.mu-intro-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.mu-intro h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.mu-intro p {
  color: var(--text);
  margin-bottom: 1rem;
}

/* ===== Album-Detail Hero ===== */
.mu-album-hero {
  position: relative;
  padding: 8rem 1.5rem 4rem;
  background: linear-gradient(180deg, #0d1e35 0%, #152843 100%);
  border-bottom: 1px solid rgba(200,169,98,0.18);
}
.mu-album-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: center;
}
.mu-album-cover {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1.2rem 4rem rgba(0,0,0,0.55);
}
.mu-album-cover img { width: 100%; height: auto; display: block; }
.mu-album-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.mu-album-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 0.4rem;
}
.mu-album-subtitle {
  font-family: 'EB Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: var(--gold-light);
  margin-bottom: 1.8rem;
}
.mu-album-lead {
  color: var(--text);
  margin-bottom: 1.2rem;
  max-width: 540px;
}
.mu-album-cta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.mu-btn {
  padding: 0.85rem 1.8rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid var(--gold);
  transition: all var(--transition);
  display: inline-block;
}
.mu-btn-primary { background: var(--gold); color: var(--navy); }
.mu-btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
.mu-btn-ghost { background: transparent; color: var(--gold-light); }
.mu-btn-ghost:hover { background: var(--gold); color: var(--navy); }

/* ===== Album-Beschreibung Block ===== */
.mu-album-body {
  padding: 5rem 1.5rem;
  background: var(--navy);
}
.mu-album-body-inner {
  max-width: 720px;
  margin: 0 auto;
}
.mu-album-body h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  color: var(--cream);
  font-weight: 600;
  margin: 2.5rem 0 1.2rem;
}
.mu-album-body h2:first-child { margin-top: 0; }
.mu-album-body p {
  color: var(--text);
  margin-bottom: 1.2rem;
}

/* ===== Künstler-Notiz (rundes Foto + eine Zeile) ===== */
.mu-artist {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(200,169,98,0.14);
  text-align: center;
}
.mu-artist img {
  display: block;
  margin: 0 auto 1rem;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 25%;
  border: 2px solid rgba(200,169,98,0.5);
  box-shadow: 0 0.6rem 1.6rem rgba(0,0,0,0.45);
}
.mu-artist p {
  font-family: 'EB Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-light);
  margin: 0 auto;
  max-width: 460px;
}

/* ===== Tracklist ===== */
.mu-tracklist {
  background: #0a1729;
  padding: 5rem 1.5rem;
  border-top: 1px solid rgba(200,169,98,0.10);
  border-bottom: 1px solid rgba(200,169,98,0.10);
}
.mu-tracklist-inner {
  max-width: 720px;
  margin: 0 auto;
}
.mu-tracklist h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
}
.mu-track {
  display: grid;
  grid-template-columns: 2.5rem 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(200,169,98,0.08);
}
.mu-track:last-child { border-bottom: none; }
.mu-track-num {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.1rem;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.mu-track-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  color: var(--cream);
  font-weight: 500;
  line-height: 1.3;
}
.mu-track-sub {
  display: block;
  font-family: 'EB Garamond', Georgia, serif;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 0.1rem;
}
.mu-track-meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
}
.mu-track audio {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 0.5rem;
  height: 2.5rem;
}

/* ===== Hörprobe-Player (Gold-Button + Fortschritt) ===== */
.mu-tracklist-hint {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: -1rem 0 2.2rem;
}
.mu-track.is-playable { grid-template-columns: 2.6rem 1fr auto; }
.mu-play {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition);
}
.mu-play:hover { background: var(--gold); color: var(--navy); }
.mu-track.is-active .mu-play { background: var(--gold); color: var(--navy); }
.mu-play .ico-play {
  width: 0; height: 0;
  border-left: 0.66rem solid currentColor;
  border-top: 0.42rem solid transparent;
  border-bottom: 0.42rem solid transparent;
  margin-left: 0.18rem;
}
.mu-play .ico-pause { display: none; gap: 0.18rem; }
.mu-play .ico-pause i { display: block; width: 0.17rem; height: 0.82rem; background: currentColor; }
.mu-play.is-playing .ico-play { display: none; }
.mu-play.is-playing .ico-pause { display: flex; }
.mu-track-progress {
  grid-column: 1 / -1;
  height: 3px;
  background: rgba(200,169,98,0.14);
  border-radius: 3px;
  overflow: hidden;
  display: none;
  margin-top: 0.6rem;
}
.mu-track.is-active .mu-track-progress { display: block; }
.mu-track-progress span { display: block; height: 100%; width: 0; background: var(--gold); transition: width 0.15s linear; }

/* ===== Kauf-Block ===== */
.mu-buy {
  padding: 5rem 1.5rem;
  background: var(--navy);
  text-align: center;
}
.mu-buy-inner {
  max-width: 560px;
  margin: 0 auto;
  padding: 3rem 2rem;
  background: linear-gradient(180deg, #152843 0%, #0d1e35 100%);
  border: 1px solid rgba(200,169,98,0.25);
  border-radius: var(--radius);
}
.mu-buy h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 1rem;
}
.mu-buy-price {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 2.2rem;
  color: var(--gold-light);
  margin: 1.5rem 0;
}
.mu-buy-detail {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

/* ===== Audio-Preview ohne quelle ===== */
.mu-no-audio {
  grid-column: 1 / -1;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 0.3rem;
}

/* ===== Helles Theme (opt-in via body.mu-bright) — Hero bleibt dunkel ===== */
.mu-bright .mu-album-body { background: #f6f2e8; }
.mu-bright .mu-album-body h2 { color: var(--navy); }
.mu-bright .mu-album-body p { color: #4f4a3e; }
.mu-bright .mu-artist { border-top-color: rgba(138,106,40,0.22); }
.mu-bright .mu-artist p { color: #8a6a28; }

.mu-bright .mu-tracklist { background: #efe9dd; border-color: rgba(138,106,40,0.18); }
.mu-bright .mu-tracklist h2 { color: var(--navy); }
.mu-bright .mu-tracklist-hint { color: #6b6555; }
.mu-bright .mu-track { border-bottom-color: rgba(138,106,40,0.16); }
.mu-bright .mu-track-num { color: #8a6a28; }
.mu-bright .mu-track-title { color: var(--navy); }
.mu-bright .mu-track-sub { color: #8a7f6a; }
.mu-bright .mu-track-meta { color: #9a8f78; }
.mu-bright .mu-play { border-color: #b08a3a; color: #8a6a28; }
.mu-bright .mu-play:hover,
.mu-bright .mu-track.is-active .mu-play { background: var(--gold); color: #fff; }
.mu-bright .mu-track-progress { background: rgba(138,106,40,0.18); }
.mu-bright .mu-track-progress span { background: var(--gold); }

.mu-bright .mu-buy { background: #f6f2e8; }
.mu-bright .mu-buy-inner {
  background: #ffffff;
  border-color: rgba(138,106,40,0.30);
  box-shadow: 0 0.8rem 2.5rem rgba(0,0,0,0.08);
}
.mu-bright .mu-buy h2 { color: var(--navy); }
.mu-bright .mu-buy-price { color: #8a6a28; }
.mu-bright .mu-buy-detail { color: #6b6555; }

/* ===== Responsive ===== */
@media (max-width: 720px) {
  .mu-album-hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .mu-album-cover { max-width: 320px; margin: 0 auto; }
  .mu-album-lead { margin-left: auto; margin-right: auto; }
}
