/* ============================================================
   1Way2Go – Static Site Stylesheet
   DSGVO-konform: Oswald lokal eingebunden, kein CDN-Aufruf
   ============================================================ */

/* FONTS */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/oswald-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
    U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F,
    U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
    U+A720-A7FF;
}
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/oswald-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* CUSTOM PROPERTIES */
:root {
  --bg:              #0a0a0a;
  --bg-elevated:     #111111;
  --bg-subtle:       #1a1a1a;
  --accent:          #1d70b8;
  --accent-dark:     #1558a0;
  --accent-glow:     rgba(29, 112, 184, 0.15);
  --text:            #ffffff;
  --text-secondary:  #b0b0b0;
  --text-muted:      #666666;
  --border:          rgba(255, 255, 255, 0.08);
  --font-heading:    'Oswald', system-ui, sans-serif;
  --font-body:       -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --nav-height:      70px;
  --max-w:           1200px;
  --radius:          4px;
  --transition:      0.2s ease;
}

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
button { cursor: pointer; border: none; background: none; }

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

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 42px;
  width: auto;
  display: block;
}
.nav-links {
  display: none;
  list-style: none;
  gap: 2rem;
}
.nav-links a {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-decoration: none;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); text-decoration: none; }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}
body.nav-open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-hamburger span:nth-child(2) { opacity: 0; }
body.nav-open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-mobile {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.97);
  border-bottom: 1px solid var(--border);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  z-index: 99;
}
.nav-mobile ul { list-style: none; padding: 0.5rem 1.5rem 1.5rem; }
.nav-mobile ul li a {
  display: block;
  padding: 0.85rem 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.nav-mobile ul li a:hover { color: var(--accent); }
body.nav-open .nav-mobile { max-height: 420px; }

/* ============================================================
   HERO
   ============================================================ */
.section-hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
  padding: 6rem 1.5rem 4rem;
}
/* Hintergrundbild als <img> im HTML – fetchpriority-fähig */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
/* Gradient-Overlay als Pseudoelement */
.section-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.60) 0%, rgba(0,0,0,0.78) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.hero-rings::before,
.hero-rings::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero-rings::before {
  width: min(72vw, 640px);
  height: min(72vw, 640px);
  border: 1px solid rgba(29, 112, 184, 0.13);
}
.hero-rings::after {
  width: min(46vw, 400px);
  height: min(46vw, 400px);
  border: 1px solid rgba(29, 112, 184, 0.07);
}
.hero-content { position: relative; z-index: 2; max-width: 820px; }
/* Hero logo (ersetzt den Titeltext) */
.hero-logo {
  height: clamp(70px, 14vw, 150px);
  width: auto;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 4px 24px rgba(29, 112, 184, 0.5));
}

.hero-genre {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--accent);
  letter-spacing: 0.38em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(3.5rem, 14vw, 8rem);
  line-height: 1;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #ffffff 30%, #1d70b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}
.hero-tagline {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.2rem, 3.5vw, 2rem);
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
}
.hero-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition),
              background var(--transition), border-color var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: #165f9e;
  border-color: #165f9e;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(29, 112, 184, 0.35);
  text-decoration: none;
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-ghost:hover {
  background: rgba(29, 112, 184, 0.1);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--accent);
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
section { padding: 5.5rem 0; }
.section-band, .section-musik { background: var(--bg-elevated); }

.section-label {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--accent);
  letter-spacing: 0.38em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin-top: 0.7rem;
}
.section-header { margin-bottom: 3rem; }

/* ============================================================
   BAND
   ============================================================ */
/* Band – 2-Spalten-Layout mit Foto */
.band-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.band-photo {
  width: 100%;
  border-radius: 6px;
  border-top: 3px solid var(--accent);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  display: block;
}
.band-description {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  line-height: 1.85;
}
.member-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 2rem;
}
.member-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-left: 0.9rem;
  border-left: 2px solid var(--accent);
}
.member-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.15rem;
}
.member-role {
  font-size: 0.8rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ============================================================
   SHOWS / TIMELINE
   ============================================================ */
.shows-intro {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
  font-style: italic;
}
.timeline {
  position: relative;
  padding-left: 2.75rem;
  border-left: 2px solid var(--border);
  max-width: 700px;
}
.timeline-item {
  position: relative;
  padding-bottom: 2.25rem;
  display: flex;
  gap: 1.5rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.9rem;
  top: 0.35rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg);
  flex-shrink: 0;
}
.timeline-date {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent);
  min-width: 3.5rem;
  padding-top: 0.1rem;
  flex-shrink: 0;
}
.timeline-content h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.timeline-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.badge {
  display: inline-block;
  background: rgba(29, 112, 184, 0.15);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.18rem 0.55rem;
  border-radius: 2px;
  margin-left: 0.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  vertical-align: middle;
}

/* ============================================================
   FOTOS / GALERIE
   ============================================================ */
/* Vorschau-Karten (je 1 Bild pro Galerie) */
.gallery-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  padding: 0;
  background: var(--bg-card);
  aspect-ratio: 4 / 3;
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.5);
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.gallery-card:hover img { transform: scale(1.06); }

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.10) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  pointer-events: none;
}
.gallery-card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.03em;
}
.gallery-card-meta {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-top: 0.2rem;
}
.gallery-card-cta {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.78rem;
  font-family: var(--font-heading);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Vollansicht nach Klick auf Karte */
.gallery-view-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.gallery-view-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
}

.gallery-grid {
  columns: 2;
  column-gap: 6px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 6px;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(29, 112, 184, 0);
  transition: background var(--transition);
  pointer-events: none; /* Klicks durchlassen an das darunterliegende Item */
}
.gallery-item:hover::after { background: rgba(29, 112, 184, 0.18); }
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.35s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 200;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img-wrap {
  max-width: 92vw;
  max-height: 88vh;
}
.lightbox-img {
  max-width: 92vw;
  max-height: 86vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
  z-index: 201;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(29, 112, 184, 0.45); }
.lightbox-close { top: 1.25rem; right: 1.25rem; font-size: 1.6rem; }
.lightbox-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1rem; top: 50%; transform: translateY(-50%); }

/* ============================================================
   MUSIK
   ============================================================ */
.musik-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
.ep-cover {
  width: min(280px, 80vw);
  margin: 0 auto 2rem;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  transition: transform 0.45s ease;
  overflow: hidden;
}
.ep-cover:hover { transform: rotate(3deg) scale(1.02); }
.ep-cover-img {
  width: 100%;
  display: block;
  border-radius: 8px;
}
.ep-block h3,
.single-block h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.ep-block > p,
.single-block > p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.platform-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.platform-link {
  display: inline-block;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  font-size: 0.87rem;
  text-decoration: none;
  transition: border-color var(--transition), color var(--transition);
}
.platform-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  text-decoration: none;
}
.soundcloud-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-subtle);
}
.soundcloud-wrap iframe {
  display: block;
}

/* SoundCloud Consent-Platzhalter */
.sc-consent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.75rem 1.25rem;
  min-height: 166px;
  background: var(--bg-subtle);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
}
.sc-consent-icon {
  color: var(--text-muted, #555);
  opacity: 0.5;
}
.sc-consent-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  max-width: 36ch;
  line-height: 1.5;
}
.sc-consent-privacy {
  font-size: 0.75rem;
  color: var(--text-muted, #666);
}
.sc-consent-privacy a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.sc-consent-privacy a:hover {
  color: var(--accent);
}
.single-block .btn { margin-top: 1.25rem; }

/* YouTube-Kanal CTA */
.youtube-cta {
  margin-top: 3rem;
  text-align: center;
}
.btn-youtube {
  background: #ff0000;
  color: #fff;
  border: 2px solid #ff0000;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.btn-youtube:hover {
  background: #cc0000;
  border-color: #cc0000;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 0, 0, 0.3);
  text-decoration: none;
}

/* Icons in Buttons und Social Links */
.btn svg, .social-link svg {
  display: block;
  flex-shrink: 0;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   KONTAKT
   ============================================================ */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
/* Honeypot versteckt */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* DSGVO-Checkbox */
.form-group-check { margin-top: 0.25rem; }
.check-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.check-label input[type="checkbox"] {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
  accent-color: var(--accent);
  cursor: pointer;
}
.check-label a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.check-label a:hover { color: var(--accent-dark); }

/* Label-Farbe bei Fehler */
.form-group.has-error > label { color: #f87171; }
.form-group.has-error .check-label > span { color: #f87171; }

/* Inline-Fehlermeldungen */
.form-error {
  display: block;
  font-size: 0.78rem;
  color: #f87171;
  margin-top: 0.3rem;
  min-height: 1.1em;
}
.form-group input.input-error,
.form-group textarea.input-error {
  border-color: #f87171;
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.15);
}

/* Formular-Status (Erfolg / Fehler) */
.form-status {
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.form-status-success {
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.35);
  color: #4ade80;
}
.form-status-error {
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.35);
  color: #f87171;
}

.form-fallback { margin-top: 1rem; font-size: 0.9rem; color: var(--text-muted); }
.form-fallback a { color: var(--accent); }

.kontakt-info h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}
.kontakt-info address {
  font-style: normal;
  color: var(--text-secondary);
  line-height: 2.1;
  margin-bottom: 1.75rem;
}
.kontakt-info address a {
  color: var(--text-secondary);
  transition: color var(--transition);
}
.kontakt-info address a:hover { color: var(--accent); text-decoration: none; }

.social-links { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.social-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition);
}
.social-link:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  text-decoration: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  padding: 2rem 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-inner p { font-size: 0.9rem; color: var(--text-muted); }
.footer-nav { display: flex; gap: 1.5rem; }
.footer-nav a {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--accent); text-decoration: none; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-page main { min-height: calc(100vh - var(--nav-height) - 80px); }
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4.5rem 1.5rem 5rem;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  margin-bottom: 2.5rem;
  transition: color var(--transition);
}
.back-link:hover { color: var(--accent); text-decoration: none; }
.legal-content h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.25rem;
}
.legal-content h1::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin-top: 0.7rem;
  margin-bottom: 2.5rem;
}
.legal-content h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.25rem;
  margin-top: 2.25rem;
  margin-bottom: 0.7rem;
}
.legal-content p,
.legal-content li {
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 0.75rem;
}
.legal-content ul { padding-left: 1.5rem; }
.legal-content a { color: var(--accent); }
.legal-content a:hover { text-decoration: underline; }

/* ============================================================
   RESPONSIVE – TABLET (640px+)
   ============================================================ */
@media (min-width: 640px) {
  .gallery-grid { columns: 3; }

  .musik-content { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

/* ============================================================
   RESPONSIVE – DESKTOP (1024px+)
   ============================================================ */
@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-hamburger { display: none; }
  .nav-mobile { display: none !important; }

  .band-layout { grid-template-columns: 1fr 1fr; gap: 5rem; }

  .kontakt-grid { grid-template-columns: 3fr 2fr; gap: 5rem; }

  .gallery-grid { columns: 4; }

  .timeline { padding-left: 3.25rem; }
  .timeline-item::before { left: -3.4rem; }
}
