/* ============================================================
   BE THE LIGHT EVENTS — Style System
   Dark Neon / Ticket-First / High-Energy
   ============================================================ */

:root {
  color-scheme: dark;

  /* Palette */
  --bg-primary: #010013;
  --bg-secondary: #02061a;
  --bg-panel: rgba(2, 6, 20, 0.95);
  --text-base: #fefcff;
  --text-muted: rgba(255, 255, 255, 0.72);
  --neon-pink: #ff1fd6;
  --neon-cyan: #20f6ff;
  --neon-lime: #c1ff29;
  --neon-violet: #7b4dff;
  --border-glow: rgba(32, 246, 255, 0.35);

  /* Spacing & Radius */
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-neon: 0 0 60px rgba(32, 246, 255, 0.35);
  --shadow-card: 0 30px 80px rgba(0, 0, 0, 0.7);
  --shadow-btn: 0 18px 50px rgba(32, 246, 255, 0.35);

  /* Easing */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Typography */
  font-family: 'Space Grotesk', system-ui, sans-serif;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(10, 2, 28, 1), transparent 60%),
    var(--bg-primary);
  color: var(--text-base);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

main { flex: 1 0 auto; }

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  width: min(1280px, 92vw);
  margin: 0 auto;
}

/* ---- SKIP LINK ---- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--neon-cyan);
  color: #000;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 100;
  transition: top 0.2s var(--ease-out);
}

.skip-link:focus {
  top: 1rem;
}

/* ---- AMBIENT CANVAS ----
   Individual animated blobs for a living, breathing background. */
.glare {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
}

.blob-1 {
  width: 55vmax;
  height: 55vmax;
  top: -15%;
  left: -10%;
  background: radial-gradient(circle, rgba(255, 31, 214, 0.32), transparent 70%);
  animation: drift-1 18s ease-in-out infinite alternate;
}

.blob-2 {
  width: 45vmax;
  height: 45vmax;
  top: -5%;
  right: -15%;
  background: radial-gradient(circle, rgba(32, 246, 255, 0.22), transparent 70%);
  animation: drift-2 22s ease-in-out infinite alternate;
}

.blob-3 {
  width: 50vmax;
  height: 50vmax;
  bottom: -10%;
  right: 5%;
  background: radial-gradient(circle, rgba(123, 77, 255, 0.22), transparent 70%);
  animation: drift-3 20s ease-in-out infinite alternate;
}

.blob-4 {
  width: 35vmax;
  height: 35vmax;
  bottom: 5%;
  left: -5%;
  background: radial-gradient(circle, rgba(193, 255, 41, 0.09), transparent 70%);
  animation: drift-4 16s ease-in-out infinite alternate;
}

@keyframes drift-1 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(12vw, 15vh) scale(1.15); }
  100% { transform: translate(-6vw, 8vh) scale(0.92); }
}

@keyframes drift-2 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-14vw, 10vh) scale(0.88); }
  100% { transform: translate(7vw, -8vh) scale(1.1); }
}

@keyframes drift-3 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(8vw, -14vh) scale(1.15); }
  100% { transform: translate(-10vw, -5vh) scale(0.9); }
}

@keyframes drift-4 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(15vw, 8vh) scale(1.2); }
  100% { transform: translate(5vw, -10vh) scale(1.05); }
}

/* Disable blob animation for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .blob-1, .blob-2, .blob-3, .blob-4 {
    animation: none;
  }
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(1, 2, 12, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}

.brand { display: inline-flex; align-items: center; }
.brand-logo { max-height: 52px; }

.main-nav ul {
  display: flex;
  gap: 1.3rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.2s var(--ease-out);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--neon-cyan);
  text-shadow: 0 0 12px rgba(32, 246, 255, 0.7);
}

.nav-cta {
  background: var(--neon-pink);
  color: #010013 !important;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 28px rgba(255, 31, 214, 0.4);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(255, 31, 214, 0.55);
  color: #010013 !important;
  text-shadow: none;
}

.nav-toggle {
  display: none;
  padding: 0.5rem 0.7rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--text-base);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
}

/* ============================================================
   HERO — EVENT CATCHER (Full viewport)
   ============================================================ */
.hero {
  position: relative;
  /* Subtract approximate header height so content centers in the visible area */
  min-height: calc(100dvh - 75px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 2rem 4.5rem;
  overflow: hidden; /* contain the pulse blob */
}

.hero-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(800px, 120vw);
  height: min(800px, 120vw);
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 40%, rgba(255, 31, 214, 0.3), transparent 50%),
    radial-gradient(circle at 65% 55%, rgba(32, 246, 255, 0.2), transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(123, 77, 255, 0.12), transparent 60%);
  filter: blur(80px);
  transform: translate(-50%, -50%);
  z-index: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-pulse {
    animation: pulse-glow 6s ease-in-out infinite alternate;
  }

  @keyframes pulse-glow {
    0% { opacity: 0.6; transform: translate(-50%, -50%) scale(1) rotate(0deg); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1.15) rotate(3deg); }
  }
}

/* ---- Scroll indicator ---- */
.hero-scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.55;
  transition: opacity 0.4s var(--ease-out);
}

.hero-scroll-hint:hover {
  opacity: 1;
}

.hero-scroll-icon {
  width: 24px;
  height: 38px;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}

.hero-scroll-dot {
  width: 3px;
  height: 7px;
  border-radius: 2px;
  background: var(--neon-cyan);
  box-shadow: 0 0 6px rgba(32, 246, 255, 0.4);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-scroll-dot {
    animation: scroll-bounce 2.2s ease-in-out infinite;
  }

  @keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(12px); opacity: 0.2; }
  }

  .hero-scroll-hint {
    animation: hint-fade 1s ease-out 1.5s both;
  }

  @keyframes hint-fade {
    from { opacity: 0; transform: translateX(-50%) translateY(8px); }
    to { opacity: 0.55; transform: translateX(-50%) translateY(0); }
  }
}

@media (max-height: 550px) {
  .hero-scroll-hint { display: none; }
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: center;
}

.hero-label {
  display: inline-block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--neon-cyan);
  border: 1px solid rgba(32, 246, 255, 0.4);
  border-radius: var(--radius-pill);
  padding: 0.35rem 1rem;
  margin: 0 0 1.2rem;
  text-shadow: 0 0 10px rgba(32, 246, 255, 0.5);
}

.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  line-height: 1.05;
  margin: 0 0 0.8rem;
  letter-spacing: -0.02em;
  text-shadow: 0 0 30px rgba(32, 246, 255, 0.25);
}

.hero-meta {
  font-size: 1.1rem;
  color: var(--neon-lime);
  text-shadow: 0 0 12px rgba(193, 255, 41, 0.35);
  margin: 0 0 0.6rem;
  font-weight: 600;
}

.hero-desc {
  color: var(--text-muted);
  margin: 0 0 2rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero date block */
.hero-date-block {
  width: 280px;
  height: 320px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(2, 8, 22, 0.9), rgba(18, 2, 28, 0.85));
  border: 1px solid rgba(32, 246, 255, 0.3);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7), 0 0 50px rgba(32, 246, 255, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  margin-left: auto;
  position: relative;
  overflow: hidden;
}

.hero-date-block::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, var(--neon-pink), var(--neon-cyan), var(--neon-violet));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  opacity: 0.6;
}

.hero-date-day {
  font-size: 5.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text-base);
  text-shadow: 0 0 40px rgba(255, 31, 214, 0.4);
}

.hero-date-month {
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--neon-cyan);
  text-shadow: 0 0 15px rgba(32, 246, 255, 0.5);
  font-weight: 600;
}

.hero-date-location {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.8rem;
  text-align: center;
  padding: 0 1rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  border-radius: var(--radius-pill);
  padding: 0.85rem 1.8rem;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.btn-ticket {
  background: linear-gradient(120deg, #ff1fd6c0, #20f6ffc0 55%, #c1ff29b0 100%);
  color: #fff;
  box-shadow: var(--shadow-btn);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.btn-ticket:hover,
.btn-ticket:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 22px 60px rgba(32, 246, 255, 0.5);
}

.btn-ghost {
  border: 1px solid rgba(32, 246, 255, 0.35);
  color: var(--text-base);
  background: rgba(32, 246, 255, 0.05);
  box-shadow: inset 0 0 20px rgba(32, 246, 255, 0.06);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(32, 246, 255, 0.3);
  border-color: var(--neon-cyan);
}

.btn-ghost-white {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--text-base);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.btn-ghost-white:hover,
.btn-ghost-white:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn:focus-visible {
  outline: 2px solid var(--neon-cyan);
  outline-offset: 3px;
}

/* ============================================================
   EVENTS SECTION
   ============================================================ */
.events-section {
  padding: 5rem 0 6rem;
  position: relative;
  scroll-margin-top: 80px;
}

.section-intro {
  margin-bottom: 2.5rem;
}

.section-intro h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin: 0 0 0.5rem;
  line-height: 1.15;
}

.section-intro p {
  color: var(--text-muted);
  margin: 0;
  max-width: 560px;
}

/* Event Grid — auto-fit: as many as the screen allows */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1rem;
}

/* Event Micro Card */
.event-micro {
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.2rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out), background 0.3s var(--ease-out);
}

/* Colored top accent line per card */
.event-micro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
  opacity: 0.6;
  transition: opacity 0.3s var(--ease-out);
}

.event-micro:hover {
  transform: translateY(-4px);
  border-color: rgba(32, 246, 255, 0.25);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(32, 246, 255, 0.08);
}

.event-micro:hover::before {
  opacity: 1;
}

/* Date badge — cyan tinted pill */
.event-micro-date {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  align-self: flex-start;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  background: rgba(32, 246, 255, 0.08);
  border: 1px solid rgba(32, 246, 255, 0.18);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.event-micro-day {
  font-weight: 700;
  color: var(--neon-cyan);
}

/* Title */
.event-micro-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.25;
  letter-spacing: 0.01em;
}

/* Info lines — location and time */
.event-micro-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.event-micro-info span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.event-micro-info i {
  font-size: 0.85rem;
  color: var(--neon-violet);
  flex-shrink: 0;
}

/* CTA — loud ticket button */
.event-micro-cta {
  margin-top: auto;
  padding-top: 0.4rem;
}

.event-micro-cta a {
  display: block;
  text-align: center;
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--neon-pink), #d616b0);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  box-shadow: 0 6px 20px rgba(255, 31, 214, 0.3);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background 0.2s var(--ease-out);
}

.event-micro-cta a:hover,
.event-micro-cta a:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 31, 214, 0.45);
  background: linear-gradient(135deg, #ff45dd, var(--neon-pink));
}

.event-micro-cta a:focus-visible {
  outline: 2px solid var(--neon-cyan);
  outline-offset: 2px;
}

/* "Alle Events" card */
.event-card-more {
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.3rem 1.2rem;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out), background 0.3s var(--ease-out);
  text-align: center;
  min-height: 140px;
}

.event-card-more:hover {
  transform: translateY(-4px);
  border-color: rgba(32, 246, 255, 0.2);
  background: rgba(32, 246, 255, 0.04);
}

.event-card-more i {
  font-size: 1.8rem;
  color: var(--text-muted);
}

.event-card-more span {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* No events fallback */
.events-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
}

/* ============================================================
   SERVICES SECTION — COMPACT ACCORDIONS
   ============================================================ */
.services-section {
  padding: 5rem 0 5rem;
  position: relative;
  scroll-margin-top: 80px;
}

/* Accent line as section divider */
.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(500px, 70vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(32, 246, 255, 0.35), rgba(255, 31, 214, 0.25), transparent);
}

.services-section > .container {
  position: relative;
  z-index: 1;
}

/* Service tile grid — 2 columns on desktop, asymmetric last tile */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.service-tile {
  padding: 1.6rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.025);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: border-color 0.3s var(--ease-out), background 0.3s var(--ease-out);
}

.service-tile:hover {
  border-color: rgba(32, 246, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
}

.service-tile-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(32, 246, 255, 0.06);
  border: 1px solid rgba(32, 246, 255, 0.15);
  flex-shrink: 0;
}

.service-tile-icon i {
  font-size: 1.15rem;
  color: var(--neon-cyan);
}

.service-tile h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
}

.service-tile p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* CTA tile — same size, accent color */
.service-tile-cta {
  border-color: rgba(255, 31, 214, 0.12);
  background: rgba(255, 31, 214, 0.03);
}

.service-tile-cta:hover {
  border-color: rgba(255, 31, 214, 0.22);
  background: rgba(255, 31, 214, 0.05);
}

.service-tile-cta .btn {
  margin-top: auto;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  padding: 5rem 0 6rem;
  position: relative;
  scroll-margin-top: 80px;
}

/* Accent line as section divider */
.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(500px, 70vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 31, 214, 0.25), rgba(32, 246, 255, 0.35), transparent);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin: 0 0 0.6rem;
}

.contact-info > p {
  color: var(--text-muted);
  margin: 0 0 2rem;
  max-width: 440px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.25s var(--ease-out), background 0.25s var(--ease-out);
}

.channel:hover {
  border-color: rgba(32, 246, 255, 0.25);
  background: rgba(32, 246, 255, 0.04);
}

.channel:focus-visible {
  outline: 2px solid var(--neon-cyan);
  outline-offset: 2px;
}

.channel-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
  color: var(--neon-cyan);
}

.channel-icon i { font-size: 1.1rem; }

/* Contact form — subtle, integrated panel instead of floating card */
.contact-form-card {
  padding: 2rem 2.2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.contact-form-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
}

.contact-form-card > p {
  margin: 0 0 1.6rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

label {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
  color: var(--text-muted);
}

input,
select,
textarea {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.85rem 1rem;
  color: var(--text-base);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.25s var(--ease-out);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(32, 246, 255, 0.4);
  background: rgba(32, 246, 255, 0.03);
  box-shadow: 0 0 20px rgba(32, 246, 255, 0.12);
}

input.invalid,
select.invalid,
textarea.invalid {
  border-color: rgba(255, 31, 214, 0.45);
  box-shadow: 0 0 15px rgba(255, 31, 214, 0.1);
}

.field-error {
  font-size: 0.8rem;
  color: var(--neon-pink);
  min-height: 1.2em;
}

.consent {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.consent a {
  color: var(--neon-cyan);
  text-decoration: underline;
}

.consent a:hover {
  text-shadow: 0 0 8px rgba(32, 246, 255, 0.5);
}

.form-feedback {
  margin: 1rem 0 0;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
}

/* Submit button spinner */
.btn-spinner {
  display: inline-flex;
  align-items: center;
}

@media (prefers-reduced-motion: no-preference) {
  .btn-spinner i {
    animation: spin 0.8s linear infinite;
  }

  @keyframes spin {
    to { transform: rotate(360deg); }
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  padding: 1.5rem 0 2.5rem;
  background: transparent;
  font-size: 0.82rem;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-inner small {
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-inner a {
  color: var(--neon-cyan);
  transition: text-shadow 0.2s var(--ease-out);
}

.footer-inner a:hover {
  text-shadow: 0 0 8px rgba(32, 246, 255, 0.5);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.82rem;
  transition: color 0.2s var(--ease-out);
}

.footer-links a:hover { color: var(--text-base); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
  }

  .fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr 260px;
    gap: 2rem;
  }

  .hero-date-block {
    width: 240px;
    height: 280px;
  }

  .hero-date-day { font-size: 4.5rem; }
}

/* Mobile landscape / small tablet */
@media (max-width: 768px) {
  .nav-toggle { display: inline-flex; }

  .main-nav ul {
    position: absolute;
    top: 60px;
    right: 4vw;
    flex-direction: column;
    background: rgba(1, 2, 12, 0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 1.2rem 1.8rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
    gap: 0.8rem;
  }

  .main-nav[aria-expanded='true'] ul { display: flex; }

  .nav-cta {
    text-align: center;
    width: 100%;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual { display: none; }

  /* Mobile: single column for events */
  .events-grid {
    grid-template-columns: 1fr;
  }

  /* Toggle card spans full row on mobile */
  .event-card-more {
    grid-column: 1 / -1;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Phone */
@media (max-width: 480px) {
  .events-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================================
   LEGAL PAGE OVERRIDES (rechtliches.html)
   ============================================================ */
.legal-page {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(10, 2, 28, 1), transparent 60%),
    var(--bg-primary);
}

.legal-content {
  padding: 3rem 0 5rem;
}

.legal-section {
  margin-bottom: 2rem;
}

.legal-section h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin: 0 0 1rem;
}

.legal-section h2 {
  font-size: 1.3rem;
  margin: 2rem 0 0.6rem;
  color: var(--neon-cyan);
}

.legal-section h3 {
  font-size: 1.1rem;
  margin: 1.5rem 0 0.4rem;
}

.legal-section h4 {
  font-size: 1rem;
  margin: 1.2rem 0 0.3rem;
  color: var(--text-muted);
}

.legal-section p {
  color: var(--text-muted);
  margin: 0.4rem 0;
  max-width: 720px;
  line-height: 1.7;
}

.legal-section ul {
  color: var(--text-muted);
  max-width: 720px;
  padding-left: 1.5rem;
}

.legal-section li {
  margin-bottom: 0.4rem;
  line-height: 1.65;
}

.legal-section a {
  color: var(--neon-cyan);
  text-decoration: underline;
  word-break: break-all;
}

.legal-section a:hover {
  text-shadow: 0 0 8px rgba(32, 246, 255, 0.5);
}