:root {
  --color-bg: #000000;
  --color-text: #FDFFFC;
  --color-cta: #DB2B39;
  --color-gray: #7D8491;
  --cursor: url("images/cursor-logo.png") 16 16, pointer;
}

/* ===== RESET ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
}

a, button {
  cursor: var(--cursor);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ===== HERO ===== */
.hero-header {
  min-height: 100vh;
  display: flex;
  padding: 0 32px;
}

.hero-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 80px;
  align-items: center;
}

.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px; /* bewusst größer für Hero */
}

.hero-logo-video {
  width: 300px;
  transform: translateX(-56px);
}

.hero-eyebrow {
  font-size: 0.9rem;
  color: var(--color-cta);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-title {
  font-family: 'Anton', sans-serif;
  font-size: 4.4rem;
  line-height: 1.05;
}

.hero-artist {
  font-family: 'Anton', sans-serif;
  font-size: 4rem;
  color: var(--color-gray);
}

.hero-cta {
  display: inline-flex;
  padding: 14px 24px;
  background: var(--color-cta);
  color: var(--color-text);
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  width: 235px;
}

.hero-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.hero-meta {
  color: var(--color-gray);
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-cover {
  width: 450px;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-cover:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 35px 70px rgba(0,0,0,0.8);
}

/* ===== SECONDARY SECTION ===== */
.secondary-section {
  padding: 60px 32px;
  background: var(--color-bg);
}

.secondary-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 64px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.secondary-media {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center; /* Video horizontal zentrieren */
}

.secondary-media video {
  width: 70%;      /* Video-Breite */
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: cover;
  transform: none; /* transform entfernen! */
}

.secondary-media::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;      /* exakt gleiche Breite wie Video */
  height: 60px;    
  background: linear-gradient(to top, var(--color-bg), transparent);
  pointer-events: none;
  border-radius: 0 0 16px 16px;
}

.secondary-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 36px; /* Abstand Header → Links */
}

/* 🔑 Konsistenter Titel → Text Abstand */
.secondary-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.secondary-title {
  font-family: 'Anton', sans-serif;
  font-size: 2.8rem;
  line-height: 1.1;
}

.secondary-description {
  font-size: 1rem;
  color: var(--color-gray);
  line-height: 1.6;
}

.secondary-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.secondary-links a {
  display: inline-block;
  padding: 14px 24px;
  border: 3px solid var(--color-cta);
  color: var(--color-text);
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  width: 235px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.secondary-links a:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  background-color: var(--color-cta);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 60px 32px;
  background: var(--color-bg);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-header {
  display: flex;
  flex-direction: column;
  gap: 16px; /* konsistent mit Secondary */
  margin-bottom: 36px;
}

.contact-title {
  font-family: 'Anton', sans-serif;
  font-size: 2.4rem;
}

.contact-description {
  font-size: 1rem;
  color: var(--color-gray);
  line-height: 1.6;
}

.contact-ctas {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

/* 🔒 CTA DESIGN – ORIGINAL, NICHT ANGEPASST */
.contact-ctas a.contact-button:first-child {
  display: inline-block;
  padding: 14px 24px;
  background: var(--color-cta);
  color: var(--color-text);
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-ctas a.contact-button:first-child:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.contact-ctas a.contact-button:last-child {
  display: inline-block;
  padding: 14px 24px;
  border: 3px solid var(--color-cta);
  color: var(--color-text);
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-ctas a.contact-button:last-child:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
background-color: var(--color-cta);
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 24px 32px;
  text-align: center;
}

.footer-legal {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 0.85rem;
  color: var(--color-gray);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--color-cta);
}

/* ===== MOBILE OPTIMIERT ===== */
@media (max-width: 900px) {

  /* ===== HERO ===== */
  .hero-header {
    min-height: auto; /* Hero weniger hoch */
    padding: 20px 16px;
  }

  .hero-content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 24px;
  }

  .hero-left {
    flex: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .hero-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 0;
  }

  .hero-artist {
    font-size: 2rem;
  }

  .hero-logo-video {
    width: 200px;
    transform: none;
  }

  .hero-right {
    flex: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-cover {
    width: 220px;
    transform: none;
  }

  /* ===== SECONDARY SECTION ===== */
  .secondary-section {
    padding-top: 32px;
    padding-bottom: 32px; /* kompakter */
  }

  .secondary-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 32px;
  }

  .secondary-media {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .secondary-media video {
    width: 100%;
    transform: none;
  }

  .secondary-media::after {
    width: 100%;
    height: 20%; /* je nach Bedarf anpassen */
    left: 0;
    transform: none;
    background: linear-gradient(to top, var(--color-bg) 0%, rgba(0,0,0,0) 100%);
    border-radius: 0 0 16px 16px;
  }

  .secondary-title {
    font-size: 2.2rem;
  }

  .secondary-description {
    font-size: 0.95rem;
  }

  .secondary-links {
    align-items: center;
    gap: 16px;
  }

  /* ===== CONTACT SECTION ===== */
  .contact-section {
    padding-top: 24px;
    padding-bottom: 24px; /* Abstand zur Secondary Section verringert */
  }

  .contact-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  .contact-title {
    font-size: 1.8rem;
  }

  .contact-description {
    font-size: 0.95rem;
  }

  .contact-ctas {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    align-items: center;
  }

  .contact-ctas a.contact-button {
    width: 100%;
max-width: 220px;
    text-align: center;
    touch-action: manipulation; /* Tap-Effekt sofort sichtbar */
  }

  /* ===== FOOTER ===== */
  .footer-legal {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  /* ===== GENERAL FIXES ===== */
  body {
    overflow-x: hidden;
  }

  .secondary-section,
  .hero-header,
  .contact-section {
    padding-left: 16px;
    padding-right: 16px;
  }
}
