/* ============================================================
   Terms and Conditions — 70s Retro Onepager
   Mustard · Burnt Orange · Olive · Creme · Schokobraun
   ============================================================ */

:root {
  --bg:        #1a120c;     /* Dunkles Schokobraun */
  --bg-soft:   #231a12;
  --bg-deep:   #120a06;
  --fg:        #f1e3c8;     /* Warmes Creme */
  --muted:     #b89972;
  --accent:    #e8a04a;     /* Mustard / 70s gold */
  --accent-2:  #d35a2c;     /* Burnt orange */
  --olive:     #8a8a3a;
  --border:    rgba(241, 227, 200, 0.10);
  --border-strong: rgba(241, 227, 200, 0.22);

  --font-display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --font-body:    "DM Sans", "Inter", system-ui, -apple-system, sans-serif;

  --max: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* --- Filmkorn-Overlay (global) ------------------------------------------- */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .18;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.94  0 0 0 0 0.83  0 0 0 0 0.55  0 0 0 1 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 180px 180px;
}

/* --- Typografie ---------------------------------------------------------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 80, "SOFT" 50;
}
h1 {
  font-size: clamp(3.2rem, 11vw, 8rem);
  line-height: 0.88;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
h2 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1.05;
  margin-bottom: 1.4rem;
  letter-spacing: -0.02em;
}
h2 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 600;
}
h3 {
  font-size: 1.4rem;
  font-weight: 600;
  font-variation-settings: "opsz" 36;
}
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .35em;
  font-size: .74rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

/* --- Nav ----------------------------------------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem clamp(1rem, 4vw, 3rem);
  transition: background .4s ease, backdrop-filter .4s ease;
}
.nav.scrolled {
  background: rgba(18, 10, 6, .82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav .brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--fg);
}
.nav ul { display: flex; gap: 2rem; list-style: none; }
.nav a {
  font-size: .82rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  transition: color .25s ease;
}
.nav a:hover { color: var(--accent); }

@media (max-width: 720px) {
  .nav ul { display: none; }
}

/* --- Hero ---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: flex-end;
  padding: 8rem clamp(1.2rem, 4vw, 3rem) 7rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('/assets/band-hero.webp');
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  z-index: 0;
  /* 70s Film Color-Grade */
  filter: contrast(1.05) saturate(0.78) sepia(0.18) brightness(0.82);
}
@media (max-width: 768px) {
  .hero-bg { background-attachment: scroll; }
}
.hero-vignette {
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(232,160,74,.18), transparent 55%),
    linear-gradient(180deg,
      rgba(26,18,12,.35) 0%,
      rgba(26,18,12,.20) 40%,
      rgba(26,18,12,.75) 85%,
      var(--bg) 100%),
    radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,.55) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max); width: 100%; margin: 0 auto;
}
.hero h1 {
  color: var(--fg);
  text-shadow: 0 2px 24px rgba(0,0,0,.6);
}
.hero h1 .amp,
.nav .brand .amp,
footer .brand .amp {
  color: var(--accent);
}
.hero p.tagline {
  margin-top: 1.5rem;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--fg);
  opacity: .85;
  max-width: 32rem;
}

/* --- Play-FAB (Hero-Track) ----------------------------------------------- */
.play-stack {
  position: absolute;
  top: 16%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  pointer-events: none;
}
.play-fab {
  pointer-events: auto;
  width: clamp(88px, 12vw, 110px);
  height: clamp(88px, 12vw, 110px);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: .35em; /* optisch ausgleichen: Play-Icon ist links-lastig */

  color: var(--bg);
  background: var(--accent);
  border: none;
  cursor: pointer;

  box-shadow: 0 18px 50px -12px rgba(0,0,0,.65), 0 0 0 0 rgba(232,160,74,0);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.play-fab:hover {
  transform: scale(1.06);
  background: #f0b15c;
  box-shadow: 0 22px 60px -14px rgba(0,0,0,.7), 0 0 0 14px rgba(232,160,74,.16);
}
.play-fab:active { transform: scale(0.98); }

.play-fab .ico-pause { display: none; padding-left: 0; }
.play-fab.is-playing { padding-left: 0; }
.play-fab.is-playing .ico-play { display: none; }
.play-fab.is-playing .ico-pause { display: inline-block; }

.play-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
}
.play-caption .play-track {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--fg);
}
.play-caption .play-state {
  font-size: .68rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: .25rem;
  color: var(--accent);
}


.scroll-hint {
  position: absolute; bottom: 1.8rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--muted);
  font-size: .7rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  animation: bob 2.5s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); opacity: .55; }
  50%      { transform: translate(-50%, 8px); opacity: 1; }
}

/* --- Sections ------------------------------------------------------------ */
section {
  padding: clamp(5rem, 12vh, 9rem) clamp(1.2rem, 4vw, 3rem);
  position: relative;
}
.container { max-width: var(--max); margin: 0 auto; }

/* --- Bio ----------------------------------------------------------------- */
.bio {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  border-bottom: 1px solid var(--border);
}
.bio .bio-text {
  max-width: 38rem;
}
.bio .bio-text p {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--fg);
  opacity: .92;
}

/* --- Members ------------------------------------------------------------- */
.members {
  background: var(--bg-soft);
}
.members .member-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
}
.member {
  padding: 2.2rem 1.6rem;
  background: rgba(255,255,255,.025);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.member:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  background: rgba(232,160,74,.06);
}
.member-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  color: var(--accent);
  font-size: 1.15rem;
  margin-bottom: .8rem;
}
.member h3 {
  margin-bottom: .3rem;
  font-style: italic;
}
.member-role {
  color: var(--muted);
  font-size: .92rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
@media (max-width: 720px) {
  .members .member-grid { grid-template-columns: 1fr; }
}

/* --- Live-Image (Voll-Width Foto) --------------------------------------- */
.live-image {
  padding: 0;
  height: clamp(280px, 50vh, 520px);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.live-image-bg {
  position: absolute; inset: 0;
  background-image: url('/assets/band-live.webp');
  background-size: cover;
  background-position: center;
  filter: contrast(1.05) saturate(0.85) sepia(0.22) brightness(0.78);
}
.live-image::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, var(--bg-soft) 0%, transparent 18%, transparent 82%, var(--bg) 100%);
}

/* --- Gigs ---------------------------------------------------------------- */
.gigs { background: var(--bg); }
.gigs-list { margin-top: 2.5rem; }
.gig {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left .3s ease;
}
.gig:hover { padding-left: .8rem; }
.gig .date {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.7rem;
  color: var(--accent);
  line-height: 1;
}
.gig .date small {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-top: .5rem;
}
.gig .info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  font-style: italic;
  margin-bottom: .2rem;
}
.gig .info .meta { color: var(--fg); opacity: .8; font-size: .95rem; }
.gig .info .note {
  color: var(--muted);
  font-size: .85rem;
  font-style: italic;
  margin-top: .35rem;
}
.gig .ticket {
  font-size: .78rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  padding: .65rem 1.2rem;
  border: 1.5px solid var(--accent);
  border-radius: 999px;
  transition: background .25s ease, color .25s ease;
}
.gig .ticket:hover { background: var(--accent); color: var(--bg); }
.gig-empty { color: var(--muted); padding: 2rem 0; font-style: italic; }
@media (max-width: 720px) {
  .gig { grid-template-columns: 1fr; gap: .6rem; }
  .gig .date { font-size: 1.3rem; }
}

/* --- Kontakt ------------------------------------------------------------- */
.contact {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
}
.contact-intro {
  color: var(--fg);
  opacity: .85;
  max-width: 38rem;
  margin-bottom: 1rem;
}
.contact .form {
  max-width: 560px;
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}
.contact label {
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
}
.contact input, .contact select, .contact textarea {
  width: 100%;
  padding: .9rem 1rem;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border-strong);
  color: var(--fg);
  font-family: inherit;
  font-size: 1rem;
  border-radius: 4px;
  transition: border-color .2s ease, background .2s ease;
}
.contact textarea { min-height: 140px; resize: vertical; }
.contact input:focus, .contact select:focus, .contact textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(232,160,74,.05);
}
.contact button {
  justify-self: start;
  font-family: inherit;
  font-size: .8rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 1rem 2.2rem;
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background .25s ease, transform .15s ease;
}
.contact button:hover { background: #f0b15c; }
.contact button:active { transform: translateY(1px); }
.contact button:disabled { opacity: .5; cursor: default; }
.contact .feedback { min-height: 1.2rem; font-size: .9rem; }
.contact .feedback.ok { color: var(--accent); }
.contact .feedback.err { color: #f08a6a; }

/* --- Footer -------------------------------------------------------------- */
footer {
  padding: 3rem clamp(1.2rem, 4vw, 3rem);
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted);
  font-size: .82rem;
  letter-spacing: .1em;
}
footer .brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: .04em;
  color: var(--fg);
  display: block;
  margin-bottom: .5rem;
  text-transform: uppercase;
}
footer .imprint {
  max-width: 520px;
  margin: 1.8rem auto 0;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  text-align: left;
}
footer .imprint summary {
  cursor: pointer;
  text-align: center;
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
  list-style: none;
  transition: color .2s ease;
}
footer .imprint summary::-webkit-details-marker { display: none; }
footer .imprint summary:hover { color: var(--fg); }
footer .imprint[open] summary { color: var(--accent); margin-bottom: 1rem; }
footer .imprint-body {
  font-size: .78rem;
  line-height: 1.7;
  color: var(--muted);
}
footer .imprint-body p { margin-bottom: .8rem; }
footer .imprint-body strong { color: var(--fg); font-weight: 600; }
footer .imprint-body a { color: var(--accent); }
footer .imprint-body a:hover { color: var(--accent-2); }

/* --- Reveal on Scroll ---------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg { transform: none !important; }
  .scroll-hint { animation: none; }
  html { scroll-behavior: auto; }
}
