/* ============================================
   247.blue – Website Stylesheet
   Kathedrale des Nachthimmels
   ============================================ */

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

:root {
  --bg-deep: #060610;
  --bg-dark: #0a0a1a;
  --bg-card: rgba(12, 12, 30, 0.6);
  --blue-primary: #0088ff;
  --blue-light: #00bbff;
  --blue-glow: #0066ff;
  --blue-soft: #1a3a5c;
  --yellow-accent: #ffd700;
  --text-main: #d0d8e8;
  --text-soft: #7a8ea6;
  --text-bright: #e8eef6;
  --text-dim: #3a4a5c;
  --glow-blue: 0 0 30px rgba(0, 136, 255, 0.3);
  --glow-yellow: 0 0 20px rgba(255, 215, 0, 0.3);
  --transition-slow: 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
  --transition-medium: 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
  --transition-fast: 0.3s ease;
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-lyric: 'Cormorant Garamond', 'Georgia', serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(0, 136, 255, 0.3);
  color: var(--text-bright);
}

a {
  color: var(--blue-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--yellow-accent);
}

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

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  transition: background var(--transition-medium), padding var(--transition-medium);
}

.nav.scrolled {
  background: rgba(6, 6, 16, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.8rem 3rem;
  border-bottom: 1px solid rgba(0, 136, 255, 0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-bright);
  letter-spacing: 0.15em;
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.nav.scrolled .nav-logo {
  opacity: 1;
}

.nav-logo .seven {
  color: var(--yellow-accent);
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-soft);
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--blue-light);
  transition: width var(--transition-fast);
}

.nav-links a:hover {
  color: var(--text-bright);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-soft);
  font-size: 1.5rem;
  cursor: pointer;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.webp') center center / cover no-repeat;
  filter: brightness(0.7) saturate(1.1);
  transform: scale(1.05);
  animation: heroBreath 20s ease-in-out infinite;
}

@keyframes heroBreath {
  0%, 100% { transform: scale(1.05); filter: brightness(0.7) saturate(1.1); }
  50% { transform: scale(1.08); filter: brightness(0.75) saturate(1.15); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center 60%, transparent 30%, rgba(6, 6, 16, 0.4) 70%),
    linear-gradient(to bottom, rgba(6, 6, 16, 0.2) 0%, transparent 30%, transparent 70%, rgba(6, 6, 16, 0.95) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  opacity: 0;
  animation: fadeInSlow 3s ease forwards 0.5s;
}

.hero-logo {
  width: min(380px, 70vw);
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 0 40px rgba(0, 136, 255, 0.4));
  animation: logoGlow 6s ease-in-out infinite;
}

@keyframes logoGlow {
  0%, 100% { filter: drop-shadow(0 0 40px rgba(0, 136, 255, 0.4)); }
  50% { filter: drop-shadow(0 0 60px rgba(0, 136, 255, 0.6)); }
}

/* Hero Player Block */
.hero-player-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  margin: 0 auto 1.4rem;
  opacity: 0;
  animation: fadeInSlow 2s ease forwards 1.5s;
}

.hero-player-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-soft);
  letter-spacing: 0.15em;
  line-height: 1.5;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

/* Hero Play Button */
.hero-play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 207, 255, 0.7);
  background: rgba(0, 136, 255, 0.08);
  color: var(--yellow-accent);
  cursor: pointer;
  transition: all 0.4s ease;
}

.hero-play-btn:hover {
  background: rgba(0, 136, 255, 0.18);
  border-color: rgba(0, 207, 255, 0.95);
  box-shadow: 0 0 20px rgba(0, 207, 255, 0.3), 0 0 10px rgba(255, 215, 0, 0.15);
  transform: scale(1.08);
}

.hero-play-btn.playing {
  animation: playPulse 3s ease-in-out infinite;
}

@keyframes playPulse {
  0%, 100% {
    box-shadow: 0 0 10px rgba(0, 207, 255, 0.2);
    border-color: rgba(0, 207, 255, 0.7);
  }
  50% {
    box-shadow: 0 0 25px rgba(0, 207, 255, 0.4), 0 0 8px rgba(255, 215, 0, 0.12);
    border-color: rgba(0, 207, 255, 0.95);
  }
}

.hero-play-btn .play-icon {
  margin-left: 2px; /* optische Zentrierung des Dreiecks */
}

.hero-play-btn .pause-icon rect {
  fill: var(--yellow-accent);
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.8vw, 1.6rem);
  font-weight: 400;
  color: var(--text-bright);
  letter-spacing: 0.2em;
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.8), 0 0 60px rgba(0, 0, 0, 0.5);
  opacity: 0;
  animation: fadeInSlow 2.5s ease forwards 2s;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  animation: fadeInSlow 2s ease forwards 3.5s;
}

.hero-scroll-hint span {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--blue-light), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.3); }
}

@keyframes fadeInSlow {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Stars Canvas --- */
#stars-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* --- Section Base --- */
.section {
  position: relative;
  z-index: 1;
  padding: 8rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-wide {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--text-bright);
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-soft);
  text-align: center;
  font-weight: 300;
  margin-bottom: 4rem;
  letter-spacing: 0.08em;
}

.section-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--blue-primary), transparent);
  margin: 0 auto 4rem;
}

/* --- Fade-in on Scroll --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.15s; }
.fade-in-delay-2 { transition-delay: 0.3s; }
.fade-in-delay-3 { transition-delay: 0.45s; }
.fade-in-delay-4 { transition-delay: 0.6s; }

/* --- Intro / Ankommen Section --- */
.intro {
  text-align: center;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.intro-text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  line-height: 2;
  color: var(--text-main);
  max-width: 700px;
  margin: 0 auto 2rem;
  font-weight: 300;
}

.intro-text em {
  color: var(--blue-light);
  font-style: normal;
}

.intro-text .accent {
  color: var(--yellow-accent);
}

/* --- Album Tree Section --- */
.albums-section {
  position: relative;
  padding: 6rem 2rem 8rem;
  background:
    radial-gradient(ellipse at center bottom, rgba(0, 50, 120, 0.08) 0%, transparent 70%);
}

.album-tree-visual {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Floating Listener Quotes --- */
.floating-quotes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
  overflow: hidden;
}

.floating-quote {
  position: absolute;
  max-width: 220px;
  padding: 0.7rem 1rem;
  background: rgba(6, 6, 16, 0.55);
  border: 1px solid rgba(0, 207, 255, 0.08);
  border-radius: 12px;
  backdrop-filter: blur(4px);
  opacity: 0;
  animation:
    floatQuoteFade 2s ease forwards,
    floatDrift var(--float-duration) ease-in-out var(--float-delay) infinite;
}

.floating-quote .fq-text {
  font-family: var(--font-lyrics);
  font-size: 0.8rem;
  font-style: italic;
  color: rgba(0, 207, 255, 0.45);
  line-height: 1.5;
  display: block;
}

.floating-quote .fq-author {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-style: normal;
  color: rgba(0, 207, 255, 0.25);
  display: block;
  margin-top: 0.3rem;
  letter-spacing: 0.05em;
}

/* Positionen – abwechselnd links und rechts um den Baum */
.fq-pos-1  { top: 2%;  left: 1%; }
.fq-pos-2  { top: 4%;  right: 0%; }
.fq-pos-3  { top: 20%; left: 0%; }
.fq-pos-4  { top: 22%; right: 0%; }
.fq-pos-5  { top: 40%; left: 1%; }
.fq-pos-6  { top: 42%; right: 1%; }
.fq-pos-7  { top: 58%; left: 0%; }
.fq-pos-8  { top: 60%; right: 0%; }
.fq-pos-9  { top: 78%; left: 1%; }
.fq-pos-10 { top: 80%; right: 1%; }

@keyframes floatQuoteFade {
  0%   { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes floatDrift {
  0%, 100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(var(--drift-x), var(--drift-y));
  }
  50% {
    transform: translate(calc(var(--drift-x) * -0.5), calc(var(--drift-y) * 0.7));
  }
  75% {
    transform: translate(calc(var(--drift-x) * 0.3), calc(var(--drift-y) * -0.8));
  }
}

/* Mobile: Zitate weniger und kleiner */
@media (max-width: 768px) {
  .floating-quote {
    max-width: 150px;
    padding: 0.5rem 0.7rem;
  }
  .floating-quote .fq-text {
    font-size: 0.7rem;
  }
  .fq-pos-3, .fq-pos-4, .fq-pos-7, .fq-pos-8 {
    display: none;
  }
}

/* --- Between-Album Quotes (mobile only) --- */
.between-album-quote {
  display: none;
}

@media (max-width: 480px) {
  .floating-quotes {
    display: none;
  }

  .between-album-quote {
    display: block;
    text-align: center;
    padding: 0.8rem 0.5rem;
    min-height: 3.2rem;
    position: relative;
  }

  .baq-text {
    font-family: var(--font-lyrics);
    font-size: 0.82rem;
    font-style: italic;
    color: rgba(0, 207, 255, 0.5);
    line-height: 1.6;
    opacity: 0;
    transition: opacity 1.8s ease;
    position: absolute;
    width: calc(100% - 1rem);
    left: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .baq-text.active {
    opacity: 1;
  }
}

#tree-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.album-tree {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* Stamm-Bereich mit allgemeinen Links */
.album-tree-trunk-area {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  width: 100%;
  max-width: 500px;
}

.tree-trunk-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0, 136, 255, 0.3), transparent);
}

.tree-trunk-label {
  font-size: 0.8rem;
  color: var(--text-dim);
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.tree-trunk-label a {
  color: var(--text-soft);
  border-bottom: 1px solid rgba(0, 136, 255, 0.2);
  padding-bottom: 1px;
}

.tree-trunk-label a:hover {
  color: var(--blue-light);
  border-color: var(--blue-light);
}

.album-row-coming {
  opacity: 0.6;
}

.album-tree-trunk {
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, var(--blue-primary), transparent);
  opacity: 0.5;
}

.album-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  width: 100%;
}

.album-card {
  position: relative;
  width: 240px;
  background: var(--bg-card);
  border: 1px solid rgba(0, 136, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--transition-medium);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.album-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 136, 255, 0.3);
  box-shadow: 0 20px 60px rgba(0, 100, 255, 0.1), var(--glow-blue);
  color: inherit;
}

.album-card-cover {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--bg-dark), rgba(0, 50, 100, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.album-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.album-card-cover .placeholder-ring {
  width: 80px;
  height: 80px;
  border: 1px solid rgba(0, 136, 255, 0.3);
  border-radius: 50%;
  animation: ringPulse 4s ease-in-out infinite;
}

@keyframes ringPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.05); }
}

.album-card-info {
  padding: 1.2rem;
}

.album-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-bright);
  margin-bottom: 0.3rem;
  font-weight: 400;
}

.album-card-year {
  font-size: 0.8rem;
  color: var(--text-soft);
  font-weight: 300;
  letter-spacing: 0.05em;
}

.album-card-desc {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-top: 0.6rem;
  line-height: 1.6;
  font-weight: 300;
}

.album-card.coming-soon {
  opacity: 0.5;
  border-style: dashed;
}

.album-card.coming-soon:hover {
  opacity: 0.7;
  transform: translateY(-4px);
}

.coming-soon-badge {
  font-size: 0.7rem;
  color: var(--yellow-accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* --- Streaming Links --- */
.stream-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.8rem;
  flex-wrap: wrap;
}

.stream-link {
  font-size: 0.7rem;
  padding: 0.3rem 0.6rem;
  border: 1px solid rgba(0, 136, 255, 0.2);
  border-radius: 20px;
  color: var(--text-soft);
  letter-spacing: 0.05em;
  transition: all var(--transition-fast);
}

.stream-link:hover {
  border-color: var(--blue-light);
  color: var(--blue-light);
  background: rgba(0, 136, 255, 0.08);
}

/* --- Gedankenraum Section --- */
.gedankenraum {
  background: linear-gradient(to bottom, transparent, rgba(0, 30, 60, 0.05), transparent);
}

.gedanken-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.gedanken-card {
  background: var(--bg-card);
  border: 1px solid rgba(0, 136, 255, 0.08);
  border-radius: 8px;
  padding: 2rem;
  transition: all var(--transition-medium);
  display: block;
  color: inherit;
}

.gedanken-card:hover {
  border-color: rgba(0, 136, 255, 0.2);
  background: rgba(12, 12, 30, 0.8);
  transform: translateY(-4px);
  color: inherit;
}

.gedanken-card-source {
  font-size: 0.75rem;
  color: var(--blue-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.gedanken-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text-bright);
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.gedanken-card-excerpt {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.7;
  font-weight: 300;
}

/* --- Essay Article Pages --- */
.essay-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 2rem 5rem;
}

.essay-body p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-soft);
  line-height: 1.85;
  margin-bottom: 1.4rem;
}

.essay-heading {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  color: var(--text-bright);
  font-weight: 400;
  margin-top: 2.8rem;
  margin-bottom: 1.2rem;
  line-height: 1.4;
}

.essay-quote {
  font-family: var(--font-lyrics);
  font-size: 1.1rem;
  color: var(--blue-light);
  text-align: center;
  padding: 1.5rem 2rem;
  border-left: 2px solid rgba(0, 136, 255, 0.25);
  margin: 2rem 0;
  line-height: 1.7;
}

.essay-cta {
  text-align: center;
  padding: 2rem;
  background: rgba(0, 136, 255, 0.03);
  border: 1px solid rgba(0, 136, 255, 0.08);
  border-radius: 8px;
}

.essay-cta .essay-heading {
  margin-top: 0;
}

.essay-cta p {
  text-align: center;
}

.gedanken-more {
  text-align: center;
  margin-top: 3rem;
}

.btn-subtle {
  display: inline-block;
  padding: 0.8rem 2rem;
  border: 1px solid rgba(0, 136, 255, 0.2);
  border-radius: 30px;
  color: var(--text-soft);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  transition: all var(--transition-fast);
}

.btn-subtle:hover {
  border-color: var(--blue-light);
  color: var(--blue-light);
  background: rgba(0, 136, 255, 0.05);
}

/* --- Resonanz / Presse Section --- */
.resonanz-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.resonanz-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid rgba(0, 136, 255, 0.06);
  border-radius: 8px;
  transition: all var(--transition-fast);
}

.resonanz-item:hover {
  border-color: rgba(0, 136, 255, 0.15);
}

.resonanz-date {
  font-size: 0.8rem;
  color: var(--text-dim);
  white-space: nowrap;
  min-width: 80px;
  padding-top: 0.15rem;
  letter-spacing: 0.05em;
}

.resonanz-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-bright);
  margin-bottom: 0.3rem;
  font-weight: 400;
}

.resonanz-content p {
  font-size: 0.85rem;
  color: var(--text-soft);
  font-weight: 300;
}

.resonanz-content a {
  font-size: 0.8rem;
  margin-top: 0.5rem;
  display: inline-block;
}

/* --- Über Uns Section --- */
.ueber-uns-text {
  max-width: 700px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 2;
  color: var(--text-main);
  text-align: center;
  font-weight: 300;
}

.ueber-uns-text p {
  margin-bottom: 1.5rem;
}

.ueber-uns-text .blue {
  color: var(--blue-light);
}

.ueber-uns-text .gold {
  color: var(--yellow-accent);
}

/* --- Footer --- */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(0, 136, 255, 0.06);
  padding: 3rem 2rem;
  text-align: center;
  background: rgba(6, 6, 16, 0.5);
}

.footer-logo {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dim);
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.footer-logo .seven {
  color: var(--yellow-accent);
  font-weight: 600;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-dim);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.footer-links a:hover {
  color: var(--text-soft);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.03em;
}

.footer-copy .wortmarke {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.7rem;
  color: rgba(100, 120, 140, 0.5);
}

/* --- Album Detail Pages --- */
.album-detail-header {
  text-align: center;
  padding: 10rem 2rem 4rem;
  background:
    radial-gradient(ellipse at center top, rgba(0, 50, 120, 0.1) 0%, transparent 60%);
}

.album-detail-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--text-bright);
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.album-detail-artist {
  font-size: 1rem;
  color: var(--blue-light);
  letter-spacing: 0.15em;
  font-weight: 300;
}

.album-detail-meta {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.songs-list {
  max-width: 750px;
  margin: 0 auto;
  padding: 2rem;
}

.song-item {
  border-bottom: 1px solid rgba(0, 136, 255, 0.06);
  padding: 3rem 0;
}

.song-item:last-child {
  border-bottom: none;
}

.song-number {
  font-size: 0.8rem;
  color: var(--blue-primary);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.song-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--text-bright);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.song-lyrics {
  font-family: var(--font-lyric);
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-main);
  white-space: pre-line;
}

.song-lyrics .section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 2rem 0 0.8rem;
}

/* --- Back Navigation --- */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-soft);
  font-size: 0.85rem;
  padding: 1rem 0;
  letter-spacing: 0.05em;
  transition: color var(--transition-fast);
}

.back-link:hover {
  color: var(--blue-light);
}

.back-link svg {
  width: 16px;
  height: 16px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .nav {
    padding: 1rem 1.5rem;
  }

  .nav.scrolled {
    padding: 0.7rem 1.5rem;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 6, 16, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .nav-mobile-toggle {
    display: block;
    z-index: 1001;
  }

  .section {
    padding: 5rem 1.5rem;
  }

  .album-row {
    gap: 1.2rem;
  }

  .album-card {
    width: calc(50% - 0.6rem);
    min-width: 150px;
  }

  .gedanken-grid {
    grid-template-columns: 1fr;
  }

  .resonanz-item {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero-logo {
    width: min(280px, 65vw);
  }

  .songs-list {
    padding: 1rem;
  }

  .song-lyrics {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .album-card {
    width: 100%;
    max-width: 280px;
  }
}

/* --- Utility --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

/* --- Album Detail Cover --- */
.album-detail-cover {
  width: min(280px, 50vw);
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  margin: 0 auto 2rem;
  box-shadow: 0 20px 60px rgba(0, 100, 255, 0.15), 0 0 40px rgba(0, 136, 255, 0.1);
  border: 1px solid rgba(0, 136, 255, 0.1);
}

.album-detail-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
