/* bands.css – globale Styles für die Coming‑Soon‑Seiten von bands.de */

/* Farb- und UI‑Tokens */
:root{
  --fg: #f5f7fb;           /* Textfarbe */
  --muted: #c6c9d3;        /* Sekundärtext */
  --accent: #ff2d55;       /* Primärer Akzent (CTA) */
  --accent-2: #7aa8ff;     /* Zweiter Akzent (Verlauf) */
  --accent: #880059;       /* Primärer Akzent (CTA) */
  --link: #b36e9b;         /* Linkfarbe, abgeleitet von Primärer Akzent (CTA) */
  --accent-2: var(--accent);     /* Zweiter Akzent (Verlauf) */
}

/* Reset & Grundlayout */
*{ box-sizing: border-box }
html,body{ height:100% }
body{
  margin:0;
  font: 16px/1.6 system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial;
  color: var(--fg);
  background: #0b0b10 url('concert-bg.jpg') center / cover fixed no-repeat;
}

a { color:var(--link); }

/* Dunkle Glas-Überlagerung vor dem Bild */
.overlay{ position: fixed; inset: 0; background: rgba(0,0,0,.62); backdrop-filter: blur(3px) }

/* Zentrierter „Card“-Frame */
.wrap{ position:relative; z-index:1; min-height:100%; display:grid; place-items:center; padding: clamp(16px, 3vw, 48px) }
.card{ width:100%; max-width: 980px; background: rgba(0,0,0,.68); border-radius: 18px; padding: clamp(24px, 4vw, 44px); box-shadow: 0 6px 30px rgba(0,0,0,.6) }
.card--narrow{ max-width:720px; }

/* Logo-Einheit */
.logo{ display:flex; align-items:center; gap:10px; margin-bottom: 10px; color:inherit; text-decoration:none }
.logo-mark{ width:42px; height:42px; border-radius:12px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); display:grid; place-items:center }
.logo svg{ width:22px; height:22px; fill:#fff }
.logo-text{ font-weight:700; font-size: clamp(18px, 2.2vw, 22px) }

/* Anpassungen Logo */
.logo{ margin-bottom: 20px; }
.logo-mark{ scale:0.8; }
.logo-mark svg{ width:22px; height:22px; fill:white; scale:1.2; }

.bands-logo {
  opacity: .8;
  opacity: 1;
  height: 23px;
}

/* Typografie */
h1{ font-size: clamp(28px, 5vw, 44px); line-height:1.15; margin: 10px 0 12px }
h2{ font-size: clamp(18px, 3.2vw, 22px); margin: 24px 0 10px }
p.lead{ font-size: clamp(16px, 2.2vw, 20px); color: var(--muted); margin: 0 0 22px }
p, li{ color: var(--muted) }

/* Formular/CTA */
.cta{ display:flex; flex-wrap:wrap; gap:10px }
.cta .field{ position:relative; flex: 1 1 260px }
label{ position:absolute; left:12px; top:-10px; font-size:12px; padding:0 6px; background:rgba(0,0,0,.78); color:var(--muted); border-radius:6px }
input[type="email"], input[type="text"], input[type="search"], input[type="tel"]{
  width:100%; height:52px; border-radius:14px; padding: 0 16px; border:1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08); color: var(--fg); outline:none;
}
input[type="email"]:focus, input[type="text"]:focus, input[type="search"]:focus, input[type="tel"]:focus{
  box-shadow: 0 0 0 4px rgba(122,168,255,.25); border-color: var(--accent-2);
}
.btn{ height:52px; border:none; padding: 0 22px; border-radius:14px; cursor:pointer; font-weight:600; letter-spacing:.2px; color:#fff; background: linear-gradient(135deg, var(--accent), var(--accent-2)); transition: transform .06s ease }
.btn:active{ transform: translateY(1px) }
.btn-secondary{ display:inline-block; height:48px; padding:0 18px; border-radius:14px; border:1px solid rgba(255,255,255,.25); color:#fff; text-decoration:none; line-height:48px; background:transparent }
a.btn { display:inline-block; height:48px; line-height:48px;text-decoration: none; }

.email-error{ color:#ff7a7a; font-size:12px; margin-top:6px; }

/* Kleintext & Sekundärlinks */
.tiny{ font-size: 12px; color: var(--muted); margin-top: 10px }
.links{ display:flex; gap:14px; margin-top: 18px }
.links a{ color:inherit; opacity:.85; text-decoration:none; border-bottom:1px solid rgba(255,255,255,.2) }
.links a:hover{ opacity:1 }

/* Rechtliche Footer-Nav */
.legal-nav{ margin-top:16px; text-align:center; font-size:13px; color:var(--muted) }
.legal-nav a{ color:inherit; opacity:.85; text-decoration:none; border-bottom:1px solid rgba(255,255,255,.2); margin: 0 .4rem }
.legal-nav a:hover{ opacity:1 }

/* Hilfsklassen */
.sr-only{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0 }

/* Raster für Impressum/Datenschutz-Boxen */
.grid{ display:grid; grid-template-columns:1fr; gap:14px }
@media (min-width: 840px){ .grid{ grid-template-columns: 1fr 1fr } }
.box{ background: rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08); border-radius:14px; padding:16px; margin:12px 0; }

/* Impressum/Datenschutz */
.meta{margin-top:18px;font-size:13px;color:var(--muted)}

/* Seiten mit kleinerem Card-Container können max-width überschreiben */
/* .card{ max-width:720px }  → bei Bedarf pro Seite inline oder via zusätzlicher Klasse anpassen */
