/* ============================================
   DIE TENNENGAUER — Website Styles
   ============================================ */

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

:root {
  --deep-blue: #2a0845;
  --mid-blue: #5a1080;
  --light-blue: #7b2fa0;
  --sky: #7b2fa0;
  --pale-sky: #e8d5f0;
  --green: #90ee90;
  --green-dark: #5abf5a;
  --gold: #FFC221;
  --gold-light: #FFD04A;
  --gold-pale: #FFF3D0;
  --cream: #faf6f0;
  --warm-white: #fefcf9;
  --charcoal: #2a2a2a;
  --text: #3a3a3a;
  --text-light: #6a6a6a;
  --border: #e0dcd6;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;

  --nav-height: 72px;
  --max-width: 1140px;
  --section-pad: 5rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  height: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

body > .footer {
  margin-top: auto;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--light-blue); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--deep-blue); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); font-weight: 700; }

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--mid-blue));
  margin: 1rem auto 0;
  border-radius: 2px;
}

.section-subtitle {
  font-family: var(--font-body);
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 400;
  margin-top: 0.5rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(42, 8, 69, 0.97);
  backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 2px solid rgba(144, 238, 144, 0.3);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.nav-logo-img {
  height: 21px;
  width: auto;
}


.nav-logo:hover { opacity: 0.9; }

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

.nav-links a {
  display: block;
  padding: 0.5rem 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: 6px;
  transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
  background: rgba(200, 148, 62, 0.1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: var(--nav-height);
  background: linear-gradient(135deg, #90ee90, #5a1080);
}

/* Homepage nav: logo centered, transparent bg */
.nav-home {
  background: linear-gradient(135deg, #90ee90, #5a1080);
  backdrop-filter: none;
  border-bottom: none;
  position: relative;
  height: auto;
}

.nav-home + .hero {
  margin-top: 0;
}

/* Homepage: nav overlays the hero */
body:has(.hero) .nav-home {
  background: transparent;
  position: absolute;
  height: var(--nav-height);
}

.nav-home .nav-inner {
  flex-wrap: wrap;
  justify-content: center;
  height: auto;
  padding-top: 1.8rem;
  padding-bottom: 0.5rem;
}

.nav-home .nav-logo {
  flex: 0 0 100%;
  justify-content: center;
  margin-bottom: 0.4rem;
}

.nav-home .nav-logo-img {
  height: 55px;
}

.nav-home .nav-links {
  justify-content: center;
}

.hero-band-img {
  position: absolute;
  left: 50%;
  bottom: -15%;
  transform: translateX(-50%);
  height: 105%;
  width: auto;
  max-width: none;
  z-index: 1;
}

.hero-text-band {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 1.5rem 1.5rem 2rem;
  background: linear-gradient(to bottom, transparent 0%, rgba(42, 8, 69, 0.75) 60%, rgba(42, 8, 69, 0.92));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 1.5rem;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--deep-blue);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: gentle-pulse 3s ease-in-out infinite;
}

@keyframes gentle-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 148, 62, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(200, 148, 62, 0); }
}

.hero h1 {
  color: #fff;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  margin-bottom: 2rem;
}

.hero-intro {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--deep-blue);
  box-shadow: 0 4px 15px rgba(200, 148, 62, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(200, 148, 62, 0.4);
  color: var(--deep-blue);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   PAGE HEADER (for sub-pages)
   ============================================ */
.page-header {
  margin-top: 0;
  padding: 9rem 0 3rem;
  background: linear-gradient(135deg, #90ee90, #5a1080);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header h1 {
  color: #fff;
  position: relative;
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.page-header .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
  position: relative;
}

/* ============================================
   SECTIONS
   ============================================ */
section {
  padding: var(--section-pad) 0;
}

.bg-white { background: var(--warm-white); }
.bg-cream { background: var(--cream); }
.bg-dark {
  background: linear-gradient(135deg, #5a1080, #2a0845);
  color: rgba(255, 255, 255, 0.9);
}
.bg-dark h2, .bg-dark h3 { color: #fff; }
.bg-dark .section-title::after { background: var(--gold-light); }

/* ---- Band Intro ---- */
.band-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.band-intro-text p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.band-intro-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.band-intro-image--transparent {
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

/* ---- Service Icons ---- */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--warm-white);
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
}

.service-item h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--mid-blue);
}

/* ---- Musiker Cards ---- */
.musiker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.musiker-grid-2x2 {
  grid-template-columns: repeat(6, 1fr);
  max-width: 1100px;
  margin: 0 auto;
}

.musiker-grid-2x2 .musiker-card {
  grid-column: span 2;
}

.musiker-grid-2x2 .musiker-card:nth-child(4) {
  grid-column: 2 / 4;
}

.musiker-grid-2x2 .musiker-card:nth-child(5) {
  grid-column: 4 / 6;
}

.musiker-card {
  background: var(--warm-white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.musiker-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.musiker-card-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
  border-radius: 12px 12px 0 0;
}

.musiker-card-body {
  padding: 1.5rem;
}

.musiker-card h3 {
  margin-bottom: 0.3rem;
}

.musiker-instruments {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  letter-spacing: 0.02em;
}

.musiker-card p {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* ---- Techniker ---- */
.techniker-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.techniker-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* ---- Tonstudio ---- */
.studio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.studio-grid img {
  border-radius: 10px;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.3s;
}

.studio-grid img:hover { transform: scale(1.03); }

/* ============================================
   TERMINE
   ============================================ */
.termine-list {
  max-width: 800px;
  margin: 0 auto;
}

.termin-card {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--warm-white);
  border-radius: 12px;
  border: 1px solid var(--border);
  margin-bottom: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
  align-items: flex-start;
}

.termin-card:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.termin-card.highlight {
  border-left: 4px solid var(--green-dark);
  background: linear-gradient(135deg, var(--warm-white), #e8f5e8);
}

.termin-card.past {
  opacity: 0.6;
}

.termin-card.past:hover {
  opacity: 0.85;
}

.termin-date {
  min-width: 70px;
  text-align: center;
  flex-shrink: 0;
}

.termin-day {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--deep-blue);
  line-height: 1;
}

.termin-month {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.termin-year {
  font-size: 0.75rem;
  color: var(--text-light);
}

.termin-details h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}

.termin-details .termin-meta {
  font-size: 0.9rem;
  color: var(--text-light);
}

.termin-details .termin-meta span {
  margin-right: 1rem;
}

/* Past events */
.past-events-group {
  margin-top: 1.5rem;
}

.past-events-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--deep-blue);
  transition: background 0.2s;
  margin-bottom: 0.5rem;
}

.past-events-toggle:hover { background: var(--pale-sky); }

.past-events-toggle .arrow {
  transition: transform 0.3s;
  font-size: 0.8rem;
}

.past-events-toggle.open .arrow { transform: rotate(180deg); }

.past-events-content {
  display: none;
  padding: 0.5rem 0;
}

.past-events-content.open { display: block; }

.past-termin {
  display: flex;
  gap: 1rem;
  padding: 0.8rem 1.5rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  align-items: baseline;
}

.past-termin:last-child { border-bottom: none; }
.past-termin-date { min-width: 120px; font-weight: 600; color: var(--text-light); }

/* ============================================
   FANSHOP
   ============================================ */
.cd-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.cd-card {
  background: var(--warm-white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.cd-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.cd-card-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.cd-card-body {
  padding: 1.5rem;
}

.cd-card h3 { margin-bottom: 0.3rem; }

.cd-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
}

.cd-tracks {
  list-style: none;
  padding: 0;
}

.cd-tracks li {
  padding: 0.3rem 0;
  font-size: 0.9rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
}

.cd-tracks li:last-child { border-bottom: none; }

.cd-tracks li span {
  color: var(--gold);
  font-weight: 600;
  margin-right: 0.5rem;
}

.cd-order-info {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: var(--warm-white);
  border-radius: 12px;
  border: 1px solid var(--border);
}

/* ============================================
   FOTOS — Album Cards
   ============================================ */
.album-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.album-card {
  background: var(--warm-white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.album-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.album-card-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

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

.album-card-body {
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.album-card-body h3 {
  font-size: 1.1rem;
  margin: 0;
}

.album-card-count {
  font-size: 0.85rem;
  color: var(--text-light);
  white-space: nowrap;
}

.album-back {
  font-size: 0.9rem;
}

/* ============================================
   FOTOS (Gallery)
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(42, 8, 69, 0);
  transition: background 0.3s;
}

.gallery-item:hover::after { background: rgba(42, 8, 69, 0.2); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: pointer;
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  cursor: default;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-nav:hover { background: rgba(255, 255, 255, 0.2); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* ============================================
   KONTAKT
   ============================================ */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.kontakt-info h3 {
  margin-bottom: 1.5rem;
}

.kontakt-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
  align-items: flex-start;
}

.kontakt-item-icon {
  width: 40px;
  height: 40px;
  background: var(--pale-sky);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.kontakt-item-text strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  margin-bottom: 0.1rem;
}

/* Contact form */
.kontakt-form {
  background: var(--warm-white);
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.kontakt-form h3 { margin-bottom: 1.5rem; }

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(74, 144, 217, 0.15);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-submit {
  width: 100%;
  margin-top: 0.5rem;
}

/* ============================================
   TERMINE PREVIEW (Home page)
   ============================================ */
.termine-preview { list-style: none; }

.termine-preview-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}

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

.termine-preview-date {
  min-width: 55px;
  text-align: center;
}

.termine-preview-day {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--deep-blue);
  line-height: 1;
}

.termine-preview-month {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
}

.termine-preview-info h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--charcoal);
}

.termine-preview-info p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  text-align: center;
  padding: 5rem 0;
}

.cta-section p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  margin: 0 auto 2rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: linear-gradient(135deg, #3a0a5a, #2a0845);
  color: rgba(255, 255, 255, 0.6);
  padding: 3rem 0 2rem;
  text-align: center;
  font-size: 0.9rem;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold-light); }

.footer-copy { font-size: 0.85rem; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .band-intro { grid-template-columns: 1fr; }
  .band-intro-image { order: -1; }
  .techniker-section { grid-template-columns: 1fr; }
  .kontakt-grid { grid-template-columns: 1fr; }
  .studio-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 3.5rem; }
  html, body { overflow-x: hidden; }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(42, 8, 69, 0.98);
    flex-direction: column;
    padding: 1rem;
    gap: 0;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a {
    padding: 0.9rem 1rem;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-toggle { display: flex; padding: 8px; margin-right: -4px; }
  .nav-inner { padding: 0 1rem; }
  .nav-logo-img { height: 17px; }


  .hero {
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    overflow: visible;
  }
  .nav-home .nav-inner {
    flex-wrap: nowrap;
    justify-content: center;
    height: var(--nav-height);
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
  }
  .nav-home .nav-logo { flex: 0 0 auto; }
  .nav-home .nav-logo-img { height: 28px; }
  .nav-home .nav-toggle {
    position: absolute;
    right: 1rem;
  }
  .hero-band-img {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    height: auto;
    max-width: 100%;
  }
  .hero-text-band {
    position: relative;
    padding: 1.2rem 1.2rem 1.5rem;
    background: none;
  }
  .hero-text-band .hero-badge { font-size: 0.7rem; padding: 0.35rem 0.8rem; margin-bottom: 0.8rem; }
  .hero-text-band .hero-tagline { font-size: 1rem; margin-bottom: 0.8rem; }
  .hero-text-band .hero-intro { font-size: 0.9rem; margin-bottom: 1.2rem; }

  .musiker-grid, .musiker-grid-2x2 { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .musiker-grid-2x2 .musiker-card,
  .musiker-grid-2x2 .musiker-card:nth-child(4),
  .musiker-grid-2x2 .musiker-card:nth-child(5) { grid-column: auto; }
  .cd-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .studio-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .termin-card { flex-direction: column; gap: 0.8rem; }
  .termin-date { text-align: left; display: flex; gap: 0.5rem; align-items: baseline; }
  .btn-group { flex-direction: column; align-items: center; }
}
