/* ── Design Tokens ── */
:root {
  --bg-deep: #0b0f0e;
  --bg-mid: #0e0e0e;
  --neon-purple: #e0a24a;
  --neon-cyan: #2fa36b;
  --white: #eaeaea;
  --muted: rgba(255, 255, 255, 0.48);
  --faint: rgba(255, 255, 255, 0.03);
  --border: rgba(47, 163, 107, 0.2);
  --font-heading: "DM Serif Display", serif;
  --font-body: "Inter", sans-serif;
  --max-width: 1100px;
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  color: var(--white);
  line-height: 1.7;
  background: var(--bg-deep);
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
}

/* ── Layout helpers ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}
.section-pad {
  padding: 6rem 0;
}

.section-divider {
  width: 100%;
  max-width: 1200px;
  height: 1px;
  margin: 4rem auto;

  background: rgba(224, 162, 74, 0.25);
  box-shadow: 0 0 12px rgba(224, 162, 74, 0.15);
}

/* ── Typography ── */
.section-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--neon-purple);
  text-shadow: 0 0 10px rgba(47, 163, 107, 0.5);
  display: block;
  margin-bottom: 1rem;
}
.section-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--white);
}
.band-label strong {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--neon-purple);
  text-shadow: 0 0 10px rgba(47, 163, 107, 0.5);
  display: block;
    margin-top: 1.6rem;
  margin-bottom: 0.4rem;
}

/* ── mobile ── */
.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .mobile-only {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.4rem;
        flex-direction: column;
    align-items: center; /* optional, bleibt schön zentriert */
  }

  .mobile-only .hero-cta {
    padding: 10px 20px;
    min-width: 120px;

    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;

    color: var(--white);
    background: rgba(7, 0, 15, 0.62);

    border: 1px solid rgba(224, 162, 74, 0.55);
    border-radius: 999px;

    box-shadow:
      0 0 18px rgba(0, 0, 0, 0.35),
      inset 0 0 0 1px rgba(255, 255, 255, 0.04);

    backdrop-filter: blur(8px);
  }

  .mobile-only .hero-cta:hover {
    background: rgba(224, 162, 74, 0.22);
    box-shadow: 0 0 22px rgba(224, 162, 74, 0.25);
    transform: translateY(-1px);
  }
}

/* ── Navbar ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.9rem 1.25rem;
  background: linear-gradient(to bottom, rgba(7, 0, 15, 0.55), rgba(7, 0, 15, 0));
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition:
    background 0.4s,
    padding 0.4s,
    backdrop-filter 0.4s,
    box-shadow 0.4s;
}
#navbar.scrolled {
  background: rgba(7, 0, 15, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem 1.25rem;
  box-shadow: 0 2px 30px rgba(47, 163, 107, 0.1);
}
.nav-logo img {
  border-radius: 10px;
  width: 100%;
  height: auto;
  object-fit: cover;
  overflow: hidden;
  display: block;
  box-shadow: 0 0 12px rgba(47, 163, 107, 0.4);
  max-width: 150px;
}

.nav-links {
  display: flex;
  gap: clamp(1.4rem, 3vw, 2.2rem);
  list-style: none;
}

.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.3s;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.75);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--neon-purple);
}
.nav-links a:focus-visible {
  color: var(--neon-purple);
  outline: none;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-deep);
  z-index: 999;

  flex-direction: column;
  justify-content: flex-start;
  align-items: center;

  gap: 1.1rem;
  padding: 6rem 1.5rem 2rem;

  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.nav-overlay.open {
  display: flex;
}
.nav-overlay a {
  font-family: var(--font-body);
  font-size: clamp(1rem, 5.5vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  max-width: 90vw;
  color: var(--white);
  transition: color 0.3s;
}

@media (max-width: 380px) {
  .nav-overlay {
    gap: 0.8rem;
    padding-top: 5.2rem;
  }

  .nav-overlay a {
    font-size: 1rem;
  }
}
.nav-overlay a:hover {
  color: var(--neon-purple);
}
.nav-overlay a:focus-visible {
  color: var(--neon-purple);
  outline: none;
  text-decoration: underline;
  text-underline-offset: 6px;
}

/* ── Hero ── */
#home {
  height: 200vh;
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(224, 162, 74, 0.12) 0%, transparent 65%),
    url("../images/hero.jpg") center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* mobile - hero*/
@media (max-width: 768px) {
  #home {
    height: 90vh;
    background:
      radial-gradient(ellipse 80% 60% at 50% 0%, rgba(224,162,74,0.12) 0%, transparent 65%),
      url("../images/hero-mobile.jpg") center/cover no-repeat;
    }
}

#home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 0, 15, 0.1);
}
#home::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 39px,
      rgba(47, 163, 107, 0.04) 39px,
      rgba(47, 163, 107, 0.04) 40px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 39px,
      rgba(47, 163, 107, 0.04) 39px,
      rgba(47, 163, 107, 0.04) 40px
    );
  pointer-events: none;
}
.hero-inner {
  width: 100%;
  max-width: 100vw;
  position: relative;
  z-index: 1;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  background: radial-gradient(
    ellipse 85% 70% at 50% 50%,
    rgba(7, 0, 15, 0.48) 0%,
    rgba(7, 0, 15, 0.22) 45%,
    transparent 75%
  );
    opacity: 0;
   transform: translateY(60px);
  transition: opacity 1s ease, transform 1s ease;
}

.hero-inner.visible {
  opacity: 1;
  transform: translateY(-3vh);
}

@media (max-width: 768px) {
  .hero-inner.visible {
    transform: translateY(-5vh);
  }
}

.hero-overline {
  font-family: var(--font-body);
  font-size: clamp(0.78rem, 1vw, 1rem);
  font-weight: 600;
  margin-top: 40rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
  max-width: 90vw;
  color: var(--neon-purple);
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.6),
    0 0 12px rgba(0, 0, 0, 0.4);
  position: relative;
  display: inline-block;
  padding: 6px 12px;
}
@media (max-width: 768px) {
  .hero-overline {
    margin-top: 5rem;
  }
}

.hero-overline::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 0, 15, 0.35);
  z-index: -1;
  border-radius: 6px;
  margin-bottom: 0.4rem;
}

#home h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 0.98;
  max-width: 100%;
  overflow-wrap: break-word;
  color: var(--white);
  text-shadow:
    0 4px 20px rgba(0, 0, 0, 0.8),
    0 2px 8px rgba(0, 0, 0, 0.6);
  margin-bottom: 0.8rem;
}
@media (max-width: 600px) {
  #home h1 {
    font-size: clamp(2.2rem, 12vw, 3.6rem);
    letter-spacing: 0.035em;
    line-height: 1;
  }
}

.hero-tagline {
  font-family: var(--font-body);
  margin-top: 1rem;
  position: relative;
  display: inline-block;
  padding: 8px 16px;
  letter-spacing: 0.03em;
  font-weight: 400;
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  max-width: 90vw;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.06em;
  font-weight: 300;
  background: linear-gradient(
    to right,
    rgba(7,0,15,0.65),
    rgba(7,0,15,0.45),
    rgba(7,0,15,0.65)
  );
    backdrop-filter: blur(6px);
  border-radius: 6px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.hero-tagline::before {
  content: "";
  position: absolute;
  inset: -2px -6px; /* etwas enger als vorher */

  background: rgba(7, 0, 15, 0.6); /* kräftiger */

  border-radius: 4px;
  z-index: -1;
}
.hero-proof {
  margin-top: 0.6rem;
  padding: 6px 14px;

  font-size: 0.8rem;
  letter-spacing: 0.1em;

  color: rgba(255,255,255,0.85);

  background: rgba(7,0,15,0.45);
  border-radius: 999px;

  backdrop-filter: blur(4px);
}
.hero-cta {
  display: inline-block;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--white);
  letter-spacing: 0.06em;
  font-weight: 500;

  padding: 14px 28px;
  border-radius: 999px;

  background: linear-gradient(
    135deg,
    rgba(224, 162, 74, 0.9),
    /* euer Gold */ rgba(47, 163, 107, 0.9) /* euer Grün */
  );

  border: 1px solid rgba(224, 162, 74, 0.4);
  text-decoration: none;

  transition: all 0.25s ease;
  backdrop-filter: blur(6px);
}
.hero-cta:hover {
  box-shadow: 0 0 40px rgba(47, 163, 107, 0.8);
  transform: translateY(-2px);
}
.hero-bottom-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 1;
  background: linear-gradient(
    90deg,
    transparent,
    var(--neon-purple) 30%,
    var(--neon-cyan) 70%,
    transparent
  );
  box-shadow: 0 0 8px rgba(47, 163, 107, 0.4);
}

.scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  cursor: pointer;
  opacity: 0.6;
  animation: cue-bounce 2.2s ease-in-out infinite;
}
.scroll-cue svg {
  width: 28px;
  height: 28px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
}
@keyframes cue-bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(9px);
  }
}

/* ── Über uns ── */
#ueber-uns {
  background: var(--bg-deep);
}
.intro-text {
  max-width: 780px;
  margin: 0 auto 4rem;
  text-align: center;
}
.intro-text p {
  color: var(--muted);
  margin-bottom: 1rem;
}
.intro-text p:last-child {
  margin-bottom: 0;
}
.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* ── Sound ── */
#sound {
  position: relative;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(180, 0, 255, 0.2) 0%, transparent 65%),
    url("../images/gal7.jpg") center/cover no-repeat fixed;
  padding: 10rem 0;
  text-align: center;
}
#sound::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 0, 15, 0.72);
}
.sound-neon-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 2;
  background: linear-gradient(
    90deg,
    transparent,
    var(--neon-purple) 30%,
    var(--neon-cyan) 70%,
    transparent
  );
  box-shadow: 0 0 10px rgba(47, 163, 107, 0.5);
}
.sound-neon-line--top {
  top: 0;
}
.sound-neon-line--bottom {
  bottom: 0;
}
.sound-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 2rem;
}
.sound-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.25;
}
.sound-quote em {
  color: var(--neon-purple);
  font-style: normal;
  text-shadow: 0 0 20px rgba(47, 163, 107, 0.7);
}
.sound-kicker {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.sound-kicker .highlight {
  color: var(--neon-purple);
  text-shadow: 0 0 20px rgba(224,162,74,0.4);
}

.sound-sub em {
  font-size: 1.3em;
  color: #fff;
}
.sound-sub {
  opacity: 0.7;
}
.sound-moment {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400; /* ganz leicht */
  letter-spacing: 0.02em;

  color: var(--white);
  opacity: 0.95;
  margin: 1rem 0 2rem;
}

.sound-body {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
}
@media (hover: none) {
  #sound {
    background-attachment: scroll;
  }
}

.video-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  margin-top: 3rem;
  align-items: stretch;
  max-width: 900px;
  margin: 4rem auto 0;
  gap: 2.5rem; /* vorher 2rem */
}

/* Card */
.video-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;

  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(224, 162, 74, 0.2);

  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(47, 163, 107, 0.08);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* Hover */
.video-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(224, 162, 74, 0.25);
}

/* iframe sauber skalieren */
.video-card iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  display: block;
}

/* kleines Video */
.video-card.small iframe {
  aspect-ratio: 9 / 16;
}

/* 🔥 WOW Glow */
.video-card::after {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(circle at 50% 0%, rgba(224, 162, 74, 0.18), transparent 70%);

  pointer-events: none;
}

/* Mobile */
@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
  }

  .video-card.small iframe {
    aspect-ratio: 16 / 9;
  }
}

/* ── Events ── */
#events {
  background: var(--bg-mid);
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.event-card {
  position: relative;
  background: var(--faint);
  border-radius: 8px;
  padding: 2rem 1.8rem;
  overflow: hidden;

  transition: all 0.35s ease;
  transform: translateY(0);
  border: 1px solid rgba(224, 162, 74, 0.15);
}
.event-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-purple), var(--neon-cyan));
}
/*
.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}
*/
.event-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.event-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--white);
  transition: all 0.3s ease;
}
/*
.event-card:hover h3 {
 transform: translateY(-2px);
  color: var(--white);
}
*/
.event-sub {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--neon-purple);
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}
.event-card p {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
  line-height: 1.7;
}
.event-card ul {
  padding-left: 1.2rem;
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 1rem;
  text-align: left;
}
.event-card ul li {
  margin-bottom: 0.3rem;
}
.event-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.3);
  font-style: italic;
  border-top: 1px solid rgba(47, 163, 107, 0.1);
  padding-top: 0.75rem;
  margin-top: 0.5rem;
}
.event-note em {
  color: var(--neon-purple);
  font-style: normal;
  text-shadow: 0 0 20px rgba(224, 162, 74, 0.12);
}
.acoustic-teaser {
  max-width: 720px;
  margin: 2.8rem auto 0;
  padding: 1.6rem 2rem;

  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(224, 162, 74, 0.18);
  border-radius: 14px;

  text-align: center;

  box-shadow:
    0 8px 26px rgba(0,0,0,0.28),
    inset 0 0 0 1px rgba(255,255,255,0.025);
}

.acoustic-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--neon-purple);
  margin-bottom: 0.7rem;
}

.acoustic-teaser h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.acoustic-teaser p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

/* ── Galerie ── */
#galerie {
  background: var(--bg-deep);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 2.5rem;
  grid-auto-flow: dense;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
  border-radius: 14px; /* leicht stärker als Logo wirkt edler */
  opacity: 0;
  transform: translateY(22px);
  animation: galleryFadeUp 0.7s ease forwards;
  animation-timeline: view();
  animation-range: entry 0% cover 25%;
}

@supports not (animation-timeline: view()) {
  .gallery-item {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.gallery-item:nth-child(3n + 1) {
  animation-delay: 0.05s;
}

.gallery-item:nth-child(3n + 2) {
  animation-delay: 0.12s;
}

.gallery-item:nth-child(3n + 3) {
  animation-delay: 0.18s;
}

@keyframes galleryFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-item {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease; /* transform 0.5s ease, filter 0.4s ease;*/
  filter: brightness(0.7) saturate(0.8);
  border-radius: inherit;
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.9) saturate(1); /*filter: brightness(1) saturate(1);*/
}

.gallery-item .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;

  padding: 12px 14px;
  font-size: 0.85rem;
  letter-spacing: 0.04em;

  color: var(--white);
  background: linear-gradient(to top, rgba(7, 0, 15, 0.85), rgba(7, 0, 15, 0));

  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.gallery-item:hover .caption {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: none) {
  .gallery-item .caption {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Highlight-Kacheln */
.gallery-item.big {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 16 / 6.5;
}

.gallery-item.tall {
  grid-row: span 2;
}

@media (max-width: 900px) {
  .gallery-item.big,
  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 4 / 3;
  }
}

/* ── Lightbox ── */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.93);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
#lightbox.open {
  display: flex;
}
#lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border: 1px solid rgba(47, 163, 107, 0.4);
  box-shadow: 0 0 40px rgba(47, 163, 107, 0.2);
}
#lb-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 2.5rem;
  color: var(--white);
  cursor: pointer;
  line-height: 1;
  background: none;
  border: none;
  opacity: 0.6;
  transition:
    opacity 0.2s,
    color 0.2s;
}
#lb-close:hover {
  opacity: 1;
  color: var(--neon-purple);
}
#lb-close:focus-visible {
  outline: 2px solid var(--neon-purple);
  outline-offset: 3px;
  opacity: 1;
}

/* ── Anfrage ── */
#anfrage {
  background: var(--bg-mid);
}
.anfrage-sub {
  max-width: 560px;
  margin: 0 auto 1.2rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.anfrage-sub strong {
  display: block;
  margin-top: 0.4rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}

.anfrage-sub--fine {
  opacity: 0.7;
  font-size: 0.95em;
}
.contact-form {
  max-width: 680px;
  margin: 0 auto;
}

.form-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.form-group label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.5);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding-top: 1rem;
  line-height: 1.4;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.02),
    0 4px 12px rgba(0, 0, 0, 0.25);

  color: var(--white);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;

  border-radius: 4px;
  outline: none;

  transition:
    border-color 0.3s,
    box-shadow 0.3s;

  -webkit-appearance: none;
  appearance: none;
}
::placeholder {
  color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--neon-purple);
  box-shadow:
    0 0 0 2px rgba(224, 162, 74, 0.15),
    0 0 12px rgba(224, 162, 74, 0.25);
}
.form-group select option {
  background: var(--bg-mid);
}
.form-group textarea {
  resize: vertical;
  min-height: 130px;
}
.btn-submit {
  background: var(--neon-purple);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition:
    background 0.3s,
    box-shadow 0.3s,
    transform 0.2s;
}
.btn-submit:hover {
  background: #2fa36b;
  box-shadow: 0 0 20px rgba(47, 163, 107, 0.5);
  transform: translateY(-1px);
}
.btn-submit:focus-visible {
  outline: 2px solid var(--neon-purple);
  outline-offset: 3px;
}
.anfrage-sub--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.whatsapp-card {
  margin-top: 2.5rem;
  padding: 2rem;
  border-radius: 12px;

  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(37, 211, 102, 0.25);

  box-shadow:
    0 10px 30px rgba(0,0,0,0.4),
    0 0 20px rgba(37, 211, 102, 0.08);

  text-align: center;
}

.wa-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  font-weight: 600;
  color: #25d366;
  margin-bottom: 0.6rem;
}

.wa-text {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

/* WhatsApp Button – integriert, nicht grell */
.cta-whatsapp {
  display: inline-block;
  padding: 14px 28px;

  font-size: 1rem;
  font-weight: 600;

  color: var(--white);
  background: rgba(255,255,255,0.04);

  border: 1px solid rgba(37, 211, 102, 0.35);
  border-radius: 999px;
  text-decoration: none;

  box-shadow:
    0 6px 20px rgba(0,0,0,0.4),
    inset 0 0 0 1px rgba(255,255,255,0.05);

  transition: all 0.2s ease;
}

.cta-whatsapp:hover {
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.6);

  transform: translateY(-1px);

  box-shadow:
    0 10px 30px rgba(37, 211, 102, 0.25);
}
.wa-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.cta-primary {
  display: inline-block;
  padding: 14px 28px;

  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;

  color: var(--white);
  background: rgba(224, 162, 74, 0.9);

  border: none;
  border-radius: 999px;

  box-shadow: 0 6px 20px rgba(224, 162, 74, 0.25);

  transition: all 0.2s ease;
}

.cta-primary:hover {
  background: rgba(224, 162, 74, 1);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(224, 162, 74, 0.35);
}

.cta-secondary {
  display: inline-block;
  padding: 14px 28px;

  font-size: 0.95rem;
  font-weight: 500;

  color: rgba(255, 255, 255, 0.85);
  background: transparent;

  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;

  transition: all 0.2s ease;
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}

.cta-secondary,
.cta-secondary:visited {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.cta-secondary:hover {
  border-color: #25d366;
  color: #25d366;
}

a.cta-secondary {
  text-decoration: none;
}

.whatsapp-block {
  margin-top: 2.5rem;
}

/* ── Footer ── */
footer {
  background: #03000a;
  position: relative;
}
.footer-neon-line {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--neon-purple) 30%,
    var(--neon-cyan) 70%,
    transparent
  );
  box-shadow: 0 0 8px rgba(47, 163, 107, 0.3);
}
.footer-inner {
  padding: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--neon-purple);
  letter-spacing: 0.15em;
  text-shadow: 0 0 15px rgba(47, 163, 107, 0.5);
}
.footer-impressum {
  color: var(--neon-purple);
  letter-spacing: 0.15em;
  text-shadow: 0 0 15px rgba(47, 163, 107, 0.5);
}
.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--neon-purple);
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.2);
  width: 100%;
  text-align: center;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .feature-cards,
  .events-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}
@media (max-width: 600px) {
  .feature-cards,
  .events-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  #home h1 {
    letter-spacing: 0.06em;
  }
  .section-pad {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-cue {
    animation: none;
  }
}

/* ── Apple ── */
@supports (-webkit-touch-callout: none) {
  #home,
  #sound {
    background-attachment: scroll !important;
  }
}

/* ── Video Feinschliff: leichter Live-Tilt ── 
.video-card.main {
  transform: rotate(-0.6deg);
}

.video-card.small {
  transform: rotate(0.6deg);
}
*/

/* Hover bleibt sauber (Tilt + Lift kombiniert) */
.video-card:hover {
  transform: translateY(-6px) scale(1.01);
}

/* Mobile: kein Tilt (sonst wirkt's schnell schief) */
@media (max-width: 768px) {
  .video-card.main,
  .video-card.small {
    transform: none;
  }
}

/* Danke Seite */
#danke {
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(180, 0, 255, 0.15) 0%, transparent 65%),
    url("../images/gal7.jpg") center/cover no-repeat fixed;
  position: relative;
}

#danke::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 0, 15, 0.3);
}

#danke .section-title {
  color: #fff;
  text-shadow:
    0 4px 20px rgba(0,0,0,0.7),
    0 0 12px rgba(224,162,74,0.2);
}

#danke .anfrage-sub {
  color: rgba(255,255,255,0.85);
}

#danke .anfrage-sub em {
  color: var(--neon-purple);
  font-style: normal;
}

#danke .container {
  position: relative;
  z-index: 1;
}

#danke .container::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: radial-gradient(
    ellipse 80% 70% at 50% 50%,
    rgba(7, 0, 15, 0.55) 0%,
    rgba(7, 0, 15, 0.25) 60%,
    transparent 80%
  );
  z-index: -1;
}
