/* ============================================
   Wahnsinn Total – Sankt Augustin
   Modern, schlicht, mit Live-Bühnen-Energie
   ============================================ */

:root {
  --navy: #12172B;
  --navy-soft: #1B2140;
  --cream: #FFFBF2;
  --ink: #1A1A1A;
  --gold: #F2B705;
  --red: #E4572E;
  --teal: #1FADA0;
  --violet: #7B4FE0;
  --line: rgba(255,255,255,0.14);
  --line-dark: rgba(0,0,0,0.08);
  --radius: 14px;
  --max: 1040px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Work Sans', -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

h1, h2, h3, .brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.05;
  margin: 0 0 0.4em;
}

h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); }
h3 { font-size: 1.3rem; }

p { max-width: 65ch; }

a { color: inherit; }

img { max-width: 100%; display: block; border-radius: var(--radius); }

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

/* ---------- Header ---------- */

.site-header {
  background: #010201;
  color: var(--cream);
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 3px solid var(--gold);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 64px;
}

.header-left {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.header-right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  flex-shrink: 0;
  text-decoration: none;
}
.icon-btn:hover { background: #ef6b45; }

.brand {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.brand span { }

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.6rem;
  margin: 0;
  padding: 0;
}

nav.main-nav a {
  text-decoration: none;
  font-weight: 600;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
}

nav.main-nav a:hover,
nav.main-nav a[aria-current="page"] {
  border-bottom-color: var(--gold);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.8rem;
  cursor: pointer;
}

@media (max-width: 640px) {
  .nav-toggle { display: block; }
  .brand { flex: 0 0 auto; justify-content: flex-start; }
  .header-right { margin-left: auto; }
  .header-left { gap: 0.25rem; }
  .header-left .icon-btn { width: 26px; height: 26px; }
  .header-left .icon-btn svg { width: 14px; height: 14px; }
  .brand-logo-img { height: 28px; }
  nav.main-nav {
    display: none;
  }
  nav.main-nav.open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #010201;
    padding: 0 1.5rem 0.5rem;
    z-index: 30;
  }
  .site-header .container { flex-wrap: wrap; }
  nav.main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0 1rem;
  }
  nav.main-nav a { display: block; padding: 0.6rem 0; }
}

/* ---------- Hero ---------- */

.hero {
  background: linear-gradient(135deg, var(--navy) 45%, var(--navy-soft) 100%);
  color: var(--cream);
  padding: 4.5rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  background: var(--gold);
  opacity: 0.18;
  border-radius: 50%;
}

/* Konfetti-Punkte als dezente Streuung */
.confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, var(--gold) 5px, transparent 6px),
    radial-gradient(circle, var(--red) 4px, transparent 5px),
    radial-gradient(circle, var(--teal) 4px, transparent 5px),
    radial-gradient(circle, var(--violet) 3px, transparent 4px);
  background-repeat: repeat;
  background-size: 140px 140px, 190px 190px, 160px 160px, 120px 120px;
  background-position: 10px 20px, 80px 90px, 40px 130px, 110px 40px;
  opacity: 0.5;
}

.hero h1 {
  font-size: clamp(2.6rem, 8vw, 4.6rem);
  color: var(--cream);
  max-width: 14ch;
}

.hero-fullbleed {
  background: var(--navy);
  padding: 0 0 3.5rem;
  min-height: 0;
  display: block;
  overflow: visible;
}

.hero-fullbleed::after { display: none; }

/* Bildhöhe hängt vom Bild selbst ab (echtes Seitenverhältnis), nicht vom
   Textinhalt darunter - dadurch werden nie Gesichter seitlich abgeschnitten,
   egal wie viel Platz Zitat/Logo/Buttons brauchen. */
.hero-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1600 / 1000;
  max-height: 560px;
  overflow: hidden;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  display: block;
  border-radius: 0;
}

.hero-media .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,23,43,0.05) 0%, rgba(18,23,43,0.55) 55%, rgba(18,23,43,0.94) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  margin-top: -70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

@media (max-width: 480px) {
  .hero-content { margin-top: -40px; }
}

.hero-quote {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: clamp(1.8rem, 5.5vw, 3rem);
  color: #fff;
  text-align: center;
  text-shadow: 0 3px 12px rgba(0,0,0,0.5);
  max-width: 20ch;
  margin: 0 0 1.6rem;
  line-height: 1.2;
}

.logo-frame {
  background: transparent;
  padding: 0;
  border-radius: 0;
  transform: none;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}

@media (max-width: 380px) {
  .logo-frame { padding: 1.1rem 0.6rem; }
}

.logo-frame .logo3d { justify-content: center; }

.hero-logo-img {
  display: block;
  width: 420px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.55));
}

@media (max-width: 480px) {
  .hero-logo-img { width: 300px; }
}

@media (max-width: 380px) {
  .hero-logo-img { width: 240px; }
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero .lead {
  font-size: 1.15rem;
  max-width: 46ch;
  color: rgba(245,243,238,0.85);
}

.hero .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover { background: #f0b155; }

.btn-outline {
  border-color: rgba(245,243,238,0.5);
  color: var(--cream);
  background: transparent;
}
.btn-outline:hover { border-color: var(--cream); }

.btn-whatsapp {
  background: #25D366;
  color: #0a3d24;
}
.btn-whatsapp:hover { background: #33e075; }

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* ---------- Sections ---------- */

section { padding: 3.5rem 0; }
section + section { border-top: 1px solid var(--line-dark); }

.section-alt {
  background: #FFF1DB;
}

.section-teal {
  background: #E4F7F4;
}

.btn-red {
  background: var(--red);
  color: #fff;
}
.btn-red:hover { background: #ef6b45; }

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.chip {
  background: #fff;
  border: 2px solid var(--line-dark);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-weight: 600;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.chip:nth-child(4n+1) { border-color: var(--gold); }
.chip:nth-child(4n+2) { border-color: var(--red); }
.chip:nth-child(4n+3) { border-color: var(--teal); }
.chip:nth-child(4n+4) { border-color: var(--violet); }

.grid-2 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 720px) {
  .grid-2 { grid-template-columns: 1fr; }
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-top: 2rem;
}

.photo-strip .ph {
  aspect-ratio: 4/3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--navy);
}

/* ---------- Galerie ---------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (max-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

.gallery-grid a {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  outline-offset: 3px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.2s ease;
}

.gallery-grid a:hover img { transform: scale(1.04); }

/* ---------- Video-Player ---------- */

.video-player-wrap {
  margin-top: 1.5rem;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
}

.video-player-wrap video {
  width: 100%;
  max-height: 70vh;
  display: block;
}

.video-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 1rem;
}

.video-nav-btn {
  padding: 0.5rem 1.1rem;
  font-size: 0.92rem;
}

.video-nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.video-counter {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
  min-width: 4ch;
  text-align: center;
}

.video-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.video-list-item {
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 2px solid var(--line-dark);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.video-list-item:hover { border-color: var(--teal); }

.video-list-item.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

/* ---------- Lightbox / Diashow ---------- */

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 100;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

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

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.14);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.28); }

.lightbox-close {
  top: 1.2rem;
  right: 1.2rem;
  width: 42px;
  height: 42px;
  font-size: 1.6rem;
  line-height: 1;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  font-size: 1.3rem;
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

.lightbox-counter {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 600;
}

@media (max-width: 640px) {
  .lightbox-prev, .lightbox-next { width: 40px; height: 40px; }
  .lightbox-close { top: 0.8rem; right: 0.8rem; }
}

/* ---------- 3D-Logo-Schriftzug (modern, Baloo 2) ---------- */

.logo3d {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  line-height: 1.05;
}

/* Buchstaben eines Wortes bleiben als Einheit zusammen -
   bricht bei Platzmangel nur zwischen den Wörtern um, nie mitten im Wort */
.logo3d .lg-word {
  display: inline-flex;
  flex-wrap: nowrap;
}

.logo3d span:not(.lg-word):not(.lg-space) {
  display: inline-block;
  color: hsl(var(--h) 82% 58%);
  text-shadow:
    1px 1px 0 hsl(var(--h) 80% 34%),
    2px 2px 0 hsl(var(--h) 80% 34%),
    3px 3px 0 hsl(var(--h) 78% 30%),
    4px 4px 0 hsl(var(--h) 78% 27%),
    5px 5px 0 hsl(var(--h) 76% 23%),
    6px 8px 12px rgba(0,0,0,0.35);
}

.logo3d span:not(.lg-word):not(.lg-space):nth-child(odd) { transform: rotate(-3deg); }
.logo3d span:not(.lg-word):not(.lg-space):nth-child(even) { transform: rotate(3deg); }

.logo3d .lg-space { width: 0.32em; }

.logo3d.lg-hero { font-size: clamp(1.7rem, 7.5vw, 4.4rem); }

@media (max-width: 380px) {
  .logo3d.lg-hero { font-size: 1.5rem; }
}
.logo3d.lg-nav   { font-size: 1.5rem; }
.logo3d.lg-nav span {
  text-shadow:
    1px 1px 0 hsl(var(--h) 80% 34%),
    2px 2px 0 hsl(var(--h) 78% 30%),
    3px 3px 5px rgba(0,0,0,0.3);
}

.contact-card {
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 2rem;
}

.contact-card h3 { color: var(--cream); }

.whatsapp-gate {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.gate-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 0.9rem 0 1rem;
  font-size: 0.95rem;
}

.gate-check input { margin-top: 0.3rem; }

.gate-status {
  font-size: 0.9rem;
  margin-top: 0.6rem;
  min-height: 1.2em;
}

.gate-status.ok { color: #8CE0A8; }
.gate-status.err { color: #F0A0A0; }

/* honeypot – nur für Bots sichtbar/erreichbar */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------- Forms ---------- */

form.stacked {
  display: grid;
  gap: 1rem;
  max-width: 480px;
}

form.stacked label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

form.stacked input,
form.stacked textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border: 1px solid #cfc9ba;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
}

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

form.stacked input:focus,
form.stacked textarea:focus {
  outline: 3px solid var(--teal);
  outline-offset: 1px;
}

/* ---------- Footer ---------- */

footer.site-footer {
  background: var(--navy);
  color: rgba(245,243,238,0.75);
  padding: 2.2rem 0;
  font-size: 0.9rem;
}

footer.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

footer.site-footer a { text-decoration: none; }
footer.site-footer a:hover { text-decoration: underline; }

footer.site-footer ul {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

/* ---------- Legal pages ---------- */

.legal h2 { margin-top: 2rem; }
.legal .todo {
  background: #fff4d6;
  border: 1px dashed var(--gold);
  padding: 0.9rem 1rem;
  border-radius: 8px;
  font-size: 0.92rem;
  margin: 0.6rem 0 1.4rem;
}

/* ---------- Focus visibility ---------- */

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
