/* ============================================
   LOBWERK — Global Styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@300;400;600&display=swap');

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

:root {
  --bordeaux: #6B1628;
  --beige:    #F2EDE4;
  --petrol:   #1A4040;
  --gold:     #D4A843;
  --mint:     #00CBA4;
  --white:    #FFFFFF;
  --dark:     #1A1A1A;

  --font-display: "zuume-edge", sans-serif;
  --font-body:    "Prompt", sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--dark);
  overflow-x: hidden;
  background: var(--beige);
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 28px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.scrolled { background: rgba(107, 22, 40, 0.96); }
.nav.hidden { transform: translateY(-100%); }

.nav__logo img { height: 56px; width: auto; }

.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav__hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--beige);
  transition: transform 0.3s, opacity 0.3s;
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Fullscreen Menu Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background-color: var(--bordeaux);
  background-image: url('../assets/images/Lobwerk-backgroudn-gitarren.jpg');
  background-size: cover;
  background-position: center;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  clip-path: circle(0% at calc(100% - 52px) 52px);
}

.nav-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(107, 22, 40, 0.91);
}

.nav-overlay__links {
  list-style: none;
  text-align: center;
}

.nav-overlay__links li { margin-bottom: 32px; }

.nav-overlay__links a {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 700;
  color: var(--beige);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-overlay__links a:hover { color: var(--gold); }

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  width: fit-content;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 2px solid;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  background: transparent;
}

.btn--light {
  color: var(--beige);
  border-color: var(--beige);
}
.btn--light:hover {
  background: var(--beige);
  color: var(--bordeaux);
}

.btn--dark {
  color: var(--bordeaux);
  border-color: var(--bordeaux);
}
.btn--dark:hover {
  background: var(--bordeaux);
  color: var(--beige);
}

.btn--mint {
  color: var(--petrol);
  border-color: var(--mint);
  background: var(--mint);
}
.btn--mint:hover { opacity: 0.85; }

/* ============================================
   SECTION LABELS
   ============================================ */

.label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.label--bordeaux { color: var(--bordeaux); }
.label--beige    { color: var(--beige); }
.label--gold     { color: var(--gold); }
.label--mint     { color: var(--mint); }

.display-heading {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.0;
}

/* ============================================
   SECTION DIVIDER
   ============================================ */

.section-divider {
  position: relative;
  height: 0;
  overflow: visible;
  z-index: 10;
}

.section-divider::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 80px;
  background: #fff;
  z-index: 10;
}

.section-divider--light::after {
  background: #fff;
}

/* ============================================
   STARTSEITE — HERO
   ============================================ */

.hero {
  min-height: 100vh;
  background-color: var(--bordeaux);
  display: grid;
  grid-template-columns: 1fr 2fr;
  position: relative;
  overflow: hidden;
  padding: 0 60px;
}

.hero__bg-text {
  position: absolute;
  inset: 0;
  font-family: var(--font-display);
  font-size: 14vw;
  font-weight: 700;
  color: rgba(255,255,255,0.06);
  pointer-events: none;
  line-height: 0.9;
  text-transform: uppercase;
  user-select: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  white-space: nowrap;
  letter-spacing: -0.02em;
  padding-left: 0;
}
.hero__bg-text span {
  display: block;
}
.hero__bg-text span:nth-child(1) { transform: translateX(0%); }
.hero__bg-text span:nth-child(2) { transform: translateX(1.5%); }
.hero__bg-text span:nth-child(3) { transform: translateX(3%); }
.hero__bg-text span:nth-child(4) { transform: translateX(4.5%); }

.hero__images {
  position: relative;
  overflow: hidden;
  padding: 60px 40px 60px 0;
  display: flex;
  align-items: center;
}

.hero__images img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  object-position: center;
}

.hero__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 120px 80px 80px 60px;
  position: relative;
  z-index: 2;
}

.hero__label { color: var(--beige); margin-bottom: 16px; font-weight: 300; letter-spacing: 2px; }

.hero__cta {
  align-self: flex-start !important;
  width: auto !important;
  max-width: fit-content !important;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 4.5vw, 76px);
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  line-height: 1.0;
  margin-bottom: 28px;
}

.hero__description {
  font-size: 16px;
  line-height: 1.85;
  color: var(--beige);
  margin-bottom: 48px;
}

/* ============================================
   NEUERSCHEINUNG SECTION
   ============================================ */

.neuerscheinung {
  background: var(--beige);
  padding: 80px 80px 60px;
}

.neuerscheinung > .label {
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 3px;
  text-align: center;
  margin-bottom: 48px;
}

.neuerscheinung__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  max-width: 75%;
  margin: 0 auto;
}

.neuerscheinung__title {
  font-size: clamp(44px, 5vw, 72px);
  color: var(--bordeaux);
  margin-bottom: 20px;
}

.neuerscheinung__desc {
  font-size: 16px;
  line-height: 1.85;
  color: #444;
  margin-bottom: 36px;
  max-width: 400px;
}

.neuerscheinung__visuals {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
}

.neuerscheinung__portrait {
  width: 100%;
  height: 414px;
  object-fit: cover;
  object-position: top;
}

/* ============================================
   SONGS LISTE SECTION (Startseite)
   ============================================ */

.songs-list-section {
  background: var(--beige);
  padding: 80px 80px 80px;
}

.songs-list-section > .label {
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 3px;
  text-align: center;
  margin-bottom: 48px;
}

.songs-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 75%;
  margin: 0 auto;
}

.songs-list__item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 28px 24px;
  border-bottom: 1px solid rgba(107,22,40,0.15);
}

.songs-list__item:first-child {
  border-top: 1px solid rgba(107,22,40,0.15);
}

.songs-list__cover {
  width: 104px;
  height: 104px;
  object-fit: cover;
  flex-shrink: 0;
}

.songs-list__info {
  flex: 1;
}

.songs-list__title {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--bordeaux);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.songs-list__artist {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  font-weight: 300;
}

.songs-list__btn {
  flex-shrink: 0;
  font-size: 12px;
  padding: 12px 28px;
}

/* ============================================
   VISION DARK SECTION
   ============================================ */

.vision-dark {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.vision-dark__bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/Lobwerk-backgroudn-studio.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
}

.vision-dark__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 120px 80px;
  display: flex;
  justify-content: center;
}

.vision-dark__quote {
  display: flex;
  align-items: stretch;
  gap: 24px;
  max-width: 760px;
}

.vision-dark__quote-line {
  width: 2px;
  background: #fff;
  flex-shrink: 0;
}

.vision-dark__text {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(18px, 2.2vw, 28px);
  color: var(--gold);
  line-height: 1.65;
  text-transform: none;
}

/* ============================================
   MITMACHEN / MITTRAGEN SECTION
   ============================================ */

.mitmachen {
  background: var(--petrol);
  display: grid;
  grid-template-columns: 40% 60%;
  min-height: 84vh;
  align-items: center;
}

.mitmachen__image {
  overflow: hidden;
  display: flex;
  align-items: center;
  align-self: stretch;
  padding: 96px 0;
}

.mitmachen__image img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  object-position: center;
}

.mitmachen__content {
  padding: 96px 80px 96px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mitmachen__headline {
  font-size: clamp(40px, 4vw, 64px);
  color: var(--mint);
  margin-bottom: 20px;
}

.mitmachen__desc {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  max-width: 480px;
}

.mitmachen__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}

.mitmachen__list-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.mitmachen__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mitmachen__icon img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.mitmachen__list-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--beige);
  margin-bottom: 6px;
}

.mitmachen__list-text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

/* ============================================
   SOCIAL / NICHTS VERPASSEN SECTION
   ============================================ */

.social-section {
  background: var(--bordeaux);
  padding: 80px 80px 100px;
  text-align: center;
}

.social-section > .label {
  color: #FFD083;
}

.social-section__headline {
  font-size: clamp(44px, 5vw, 80px);
  color: #FFD083;
  margin-bottom: 48px;
}

.social-section__icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
}

.social-section__icons a img {
  width: auto;
  height: 48px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity 0.2s, transform 0.2s;
}

.social-section__icons a:hover img {
  opacity: 1;
  transform: scale(1.1);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--bordeaux);
  border-top: 1px solid rgba(255,255,255,0.2);
  padding: 24px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copy {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.footer__links {
  display: flex;
  gap: 32px;
}

.footer__links a {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer__links a:hover { color: rgba(255,255,255,0.9); }

/* ============================================
   ÜBER UNS PAGE
   ============================================ */

.ueber-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #141414;
}

.ueber-hero__bg {
  position: absolute;
  inset: -20% 0;
  background-image: url('../assets/images/Lobwerk-backgroudn-gitarren.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
}

.ueber-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 120px 80px;
  display: flex;
  justify-content: center;
}

.ueber-hero__quote {
  display: flex;
  align-items: stretch;
  gap: 24px;
  max-width: 760px;
}

.ueber-hero__quote-line {
  width: 2px;
  background: #fff;
  flex-shrink: 0;
}

.ueber-hero__text {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(18px, 2.2vw, 28px);
  color: var(--gold);
  line-height: 1.65;
  text-transform: none;
}

/* Team / Vision Section */
.team-section {
  background: var(--beige);
  padding: 100px 80px;
  text-align: center;
}

.team-section__label {
  color: var(--bordeaux);
  margin-bottom: 16px;
}

.team-section__headline {
  font-size: clamp(36px, 4vw, 56px);
  color: var(--bordeaux);
  margin-bottom: 24px;
}

.team-section__intro {
  font-size: 16px;
  line-height: 1.85;
  color: #555;
  max-width: 680px;
  margin: 0 auto 72px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.team-card__image {
  width: 70%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top;
  margin: 0 auto 20px;
  display: block;
  filter: grayscale(100%);
  border-radius: 60px 60px 0 0;
}

.team-card__name {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--bordeaux);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.team-card__role {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 16px;
  font-weight: 300;
}

.team-card__text {
  font-size: 14px;
  line-height: 1.75;
  color: #555;
}

/* ============================================
   SONGS ÜBERSICHT PAGE
   ============================================ */

.songs-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #141414;
}

.songs-hero__bg {
  position: absolute;
  inset: -20% 0;
  background-image: url('../assets/images/Lobwerk-Songs-background.png');
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
}

.songs-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 120px 80px;
  display: flex;
  justify-content: center;
}

.songs-hero__quote-wrap {
  display: flex;
  align-items: stretch;
  gap: 24px;
  max-width: 760px;
}

.songs-hero__quote-line {
  width: 2px;
  background: #fff;
  flex-shrink: 0;
}

.songs-hero__quote-text {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(18px, 2.2vw, 28px);
  color: var(--gold);
  line-height: 1.65;
  text-transform: none;
  margin-bottom: 12px;
}

.songs-hero__ref {
  font-size: 13px;
  letter-spacing: 2px;
  color: rgba(242,237,228,0.6);
  text-transform: uppercase;
  font-weight: 300;
}

/* Songs page list section */
.songs-page-list-section {
  background: var(--beige);
  padding: 80px 80px 60px;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.songs-page-list-section .songs-list__item:first-child {
  border-top: 1px solid rgba(107,22,40,0.15);
}

/* Songs card grid section */
.songs-grid-section {
  background: var(--beige);
  padding: 80px 80px 100px;
}

.songs-grid-section > .label {
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 3px;
  text-align: center;
  margin-bottom: 48px;
}

.songs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.song-card {
  display: block;
  color: inherit;
  position: relative;
  overflow: hidden;
}

.song-card__cover-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}

.song-card__cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin-bottom: 0;
  transition: filter 0.4s ease, transform 0.4s ease;
}

.song-card__hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  padding: 24px;
  text-align: center;
}

.song-card__hover-title {
  font-family: var(--font-display);
  font-size: 34px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 1.15;
}

.song-card__hover-meta {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 300;
}

.song-card:hover .song-card__cover {
  filter: blur(4px);
  transform: scale(1.04);
}

.song-card:hover .song-card__hover-overlay {
  opacity: 1;
}

.song-card__title {
  font-family: var(--font-display);
  font-size: 33px;
  color: var(--bordeaux);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.song-card__meta {
  font-size: 11px;
  color: #888;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 300;
}

/* ============================================
   SONG DETAIL PAGE
   ============================================ */

.song-detail {
  min-height: 85vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.song-detail__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(24px);
  transform: scale(1.08);
}


.song-detail__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  padding: 140px 80px 80px;
  align-items: start;
  width: 100%;
}

.song-detail__left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.song-detail__cover {
  width: 300px;
  aspect-ratio: 1;
  object-fit: cover;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
  flex-shrink: 0;
}

.song-detail__streaming-below .streaming__label {
  color: var(--beige);
  margin-bottom: 16px;
}

.song-detail__streaming-below .streaming__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.song-detail__streaming-below .streaming__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  transition: background 0.3s;
}

.song-detail__streaming-below .streaming__btn:hover {
  background: rgba(255,255,255,0.25);
}

.song-detail__streaming-below .streaming__btn img {
  width: 26px;
  height: 26px;
}

.song-detail__info {
  padding-top: 8px;
}

.song-detail__title {
  font-size: clamp(44px, 5vw, 80px);
  color: var(--white);
  margin-bottom: 8px;
}

.song-detail__subtitle {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Audio Player */
.audio-player {
  margin-bottom: 32px;
}

.audio-player__label {
  color: var(--beige);
  margin-bottom: 16px;
}

.audio-player audio {
  width: 100%;
  max-width: 400px;
}

.song-detail__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   LYRICS SECTION
   ============================================ */

.weitere-songs {
  background: var(--beige);
  padding: 80px 80px 100px;
  text-align: center;
}

.weitere-songs > .label {
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 3px;
  text-align: center;
  margin-bottom: 48px;
}

.weitere-songs .songs-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 700px;
  margin: 0 auto;
}

.lyrics-section {
  background: var(--beige);
  padding: 80px;
}

.lyrics-section__header {
  text-align: center;
  margin-bottom: 64px;
}

.lyrics-section__header .label,
.songwriter-section__header .label {
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 3px;
  text-align: center;
}

.lyrics-section__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.lyrics-section__video {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 120px;
  align-self: start;
}

.lyrics-section__youtube {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
}

.lyrics-section__youtube iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.lyrics-section__copyright {
  font-size: 13px;
  color: #777;
  line-height: 1.6;
}

.lyrics-section__text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.lyrics-block__label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--bordeaux);
  margin-bottom: 8px;
}

.lyrics-block__text {
  font-size: 15px;
  line-height: 2;
  color: #333;
  white-space: pre-line;
}

/* ============================================
   SONGWRITER SECTION
   ============================================ */

.songwriter-section {
  background: #E8E3DA;
  padding: 80px;
}

.songwriter-section__header {
  text-align: center;
  margin-bottom: 64px;
}

.songwriter-section__content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.songwriter__name {
  font-size: clamp(36px, 4vw, 60px);
  color: var(--dark);
  margin-bottom: 28px;
}

.songwriter__text {
  font-size: 15px;
  line-height: 1.85;
  color: #555;
}

.songwriter__portrait {
  width: 240px;
  height: 300px;
  object-fit: cover;
  object-position: top;
  border-radius: 60px 60px 0 0;
  filter: grayscale(100%);
}

/* ============================================
   KONTAKT / SPENDEN PAGE
   ============================================ */

.kontakt-page {
  background: var(--petrol);
  min-height: 80vh;
  padding: 140px 80px 100px;
}

.kontakt-page__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 100px;
}

.kontakt-form__headline {
  font-size: clamp(40px, 4vw, 64px);
  color: var(--mint);
  margin-bottom: 48px;
}

.kontakt-form__field {
  margin-bottom: 28px;
}

.kontakt-form__input,
.kontakt-form__textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding: 14px 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  color: var(--white);
  outline: none;
  transition: border-color 0.3s;
}

.kontakt-form__input::placeholder,
.kontakt-form__textarea::placeholder {
  color: rgba(255,255,255,0.4);
}

.kontakt-form__input:focus,
.kontakt-form__textarea:focus {
  border-bottom-color: var(--mint);
}

.kontakt-form__textarea {
  height: 120px;
  resize: none;
  display: block;
}

.spenden__headline {
  font-size: clamp(40px, 4vw, 64px);
  color: var(--mint);
  margin-bottom: 28px;
}

.spenden__text {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .hero__images { height: 60vw; }
  .hero__text { padding: 60px 40px; }

  .team-grid { grid-template-columns: repeat(2, 1fr); }

  .song-detail__content { grid-template-columns: 1fr; }
  .song-detail__cover { width: 100%; max-width: 300px; aspect-ratio: 1; }

  .lyrics-section__content { grid-template-columns: 1fr; }
  .songwriter-section__content { grid-template-columns: 1fr; }

  .kontakt-page__grid { grid-template-columns: 1fr; gap: 60px; }

  .songs-grid { grid-template-columns: repeat(2, 1fr); }
  .neuerscheinung__content { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  html, body { overflow-x: hidden; }
  .nav { padding: 20px 24px; }

  /* Global section padding reset */
  .neuerscheinung,
  .songs-list-section,
  .songs-grid-section,
  .weitere-songs,
  .vision-dark__content,
  .ueber-hero__content,
  .songs-hero__content,
  .team-section,
  .lyrics-section,
  .songwriter-section,
  .social-section,
  .kontakt-page { padding-left: 24px; padding-right: 24px; }

  .hero { padding: 0; min-height: unset; }
  .hero__images { height: auto; padding: 80px 48px 24px; }
  .hero__images img { max-width: 75vw; margin: 0 auto; }
  .hero__text { padding: 40px 24px 100px; }
  .hero__bg-text { display: none; }
  .mitmachen__content { padding: 48px 24px; }
  .song-detail__content { padding: 100px 24px 48px; }
  .vision-dark__content { padding: 64px 24px; }
  .ueber-hero__content { padding: 100px 24px 64px; }
  .songs-hero__content { padding: 100px 24px 64px; }
  .lyrics-section { padding-top: 48px; padding-bottom: 48px; }
  .songwriter-section { padding-top: 48px; padding-bottom: 48px; }
  .team-section { padding-top: 48px; padding-bottom: 48px; }
  .songs-grid-section { padding: 48px 24px 64px; }
  .weitere-songs { padding: 48px 24px 64px; }

  /* Grids → single column */
  .songs-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .neuerscheinung__content { grid-template-columns: 1fr; max-width: 100%; }
  .neuerscheinung__portrait { height: 280px; }
  .neuerscheinung__visuals { order: -1; }
  .mitmachen { grid-template-columns: 1fr; min-height: unset; }
  .mitmachen__image { padding: 64px 0 0; max-height: none; }
  .mitmachen__image img { max-height: 260px; }
  .mitmachen__content { padding-bottom: 64px; }

  /* Song detail */
  .song-detail__content { grid-template-columns: 1fr; }
  .song-detail__cover { width: 100%; max-width: 280px; aspect-ratio: 1; margin: 0 auto; display: block; }
  .song-detail__content { padding-bottom: 120px !important; }
  .song-detail__title { font-size: clamp(32px, 8vw, 52px); }

  /* Lyrics — stack video above text, disable sticky */
  .lyrics-section__content { grid-template-columns: 1fr; gap: 40px; }
  .lyrics-section__video { position: static; }

  /* Songwriter */
  .songwriter-section__content { grid-template-columns: 1fr; }
  .songwriter__portrait { width: 160px; height: 200px; margin: 0 auto; display: block; }

  /* Songs list */
  .songs-list-section { padding: 48px 24px; }
  .songs-list { max-width: 100%; }
  .songs-list__item { flex-wrap: wrap; gap: 16px; padding: 20px 12px; }
  .songs-list__cover { width: 72px; height: 72px; }
  .songs-list__title { font-size: 22px; }
  .songs-list__artist { font-size: 11px; }
  .songs-list__btn { width: 100%; text-align: center; }

  /* Footer */
  .footer { padding: 20px 24px; }
  .footer__copy { font-size: 11px; }
}

/* ============================================
   AWARD-WORTHY ANIMATIONS
   ============================================ */

/* ---- Preloader ---- */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bordeaux);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.preloader__clip {
  overflow: hidden;
  line-height: 1;
}

.preloader__word {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(52px, 9vw, 110px);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---- Custom Cursor (mix-blend-mode: difference) ---- */
.cursor-circle {
  position: fixed;
  top: 0;
  left: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
  backdrop-filter: blur(3px) brightness(1.22) saturate(1.35) contrast(1.05);
  -webkit-backdrop-filter: blur(3px) brightness(1.22) saturate(1.35) contrast(1.05);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 2px 16px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.18);
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.3s ease;
}

.cursor-circle::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 3px; height: 3px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
}

.cursor-circle--hover {
  width: 80px;
  height: 80px;
}

.cursor-circle--hidden {
  opacity: 0;
}

@media (pointer: coarse) {
  .cursor-circle { display: none; }
}

/* ---- Split Word Animation Wrappers ---- */
.sw {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: 1.05;
}

.sw-i { display: inline-block; }

/* ---- Quote line wrappers ---- */
.ql {
  display: block;
  overflow: hidden;
}

.ql-i { display: block; }

/* ---- Grain Overlay ---- */
.grain-overlay {
  position: fixed;
  inset: -50px;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.32;
  background-size: 200px 200px;
  animation: grain-shift 0.45s steps(1) infinite;
}

@keyframes grain-shift {
  0%  { transform: translate(0,   0);   }
  20% { transform: translate(-8px, 6px); }
  40% { transform: translate(8px, -4px); }
  60% { transform: translate(-4px, -8px); }
  80% { transform: translate(6px,  6px); }
}

/* ---- Enhanced Buttons ---- */
.btn {
  transition: background 0.3s, color 0.3s, transform 0.22s ease, box-shadow 0.3s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

/* ---- Song List Item Hover ---- */
.songs-list__item {
  transition: background 0.25s;
}

.songs-list__item:hover {
  background: rgba(107, 22, 40, 0.04);
}

/* ---- Social Icons ---- */
.social-section__icons a {
  transition: transform 0.3s ease;
  display: inline-flex;
}

/* ---- Streaming buttons ---- */
.streaming__btn {
  transition: background 0.3s, transform 0.2s;
}

.streaming__btn:hover {
  transform: scale(1.1);
}

/* ---- Song Cover — floating and tilt ---- */
.song-detail__cover {
  will-change: transform;
}

/* ---- Song card hover ---- */
.song-card {
  transition: box-shadow 0.3s;
}

.song-card:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

/* ---- Nav logo transition ---- */
.nav__logo img {
  transition: opacity 0.2s, filter 0.3s;
}
.nav__logo:hover img {
  opacity: 0.8;
}

/* ---- Light-page nav (beige background pages) ---- */
.page--light .nav:not(.scrolled) .nav__logo img {
  filter: brightness(0) saturate(100%) invert(12%) sepia(45%) saturate(1400%) hue-rotate(314deg) brightness(75%);
}
.page--light .nav:not(.scrolled) .nav__hamburger span {
  background: #4E1124;
}

/* ---- Reduce motion overrides ---- */
@media (prefers-reduced-motion: reduce) {
  .preloader,
  .grain-overlay  { display: none !important; }
  .cursor-circle  { display: none !important; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
