/* =====================================================
   LAUE BRIGGLE HEXE – CONTAO 5 THEME
   Copyright: Harald Guth
   ===================================================== */

/* =====================================================
   CONTAO SKIP-NAVIGATION VERSTECKEN
   ===================================================== */

.skip-link,
p.invisible,
.invisible,
a[href="#content"] {
  position: absolute !important;
  top: -999px !important;
  left: -999px !important;
}

/* =====================================================
   LOKALE SCHRIFTARTEN
   ===================================================== */

/* Another Danger */
@font-face {
  font-family: 'Another Danger';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/another-danger.otf') format('opentype');
}

/* Another Danger Slanted */
@font-face {
  font-family: 'Another Danger Slanted';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/another-danger-slanted.otf') format('opentype');
}

/* Cinzel Regular */
@font-face {
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/cinzel-v26-latin-regular.woff2') format('woff2'),
       url('../fonts/cinzel-v26-latin-regular.woff') format('woff');
}

/* Cinzel Bold */
@font-face {
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/cinzel-v26-latin-700.woff2') format('woff2'),
       url('../fonts/cinzel-v26-latin-700.woff') format('woff');
}

/* Raleway Light */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/raleway-v37-latin-300.woff2') format('woff2'),
       url('../fonts/raleway-v37-latin-300.woff') format('woff');
}

/* Raleway Regular */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/raleway-v37-latin-regular.woff2') format('woff2'),
       url('../fonts/raleway-v37-latin-regular.woff') format('woff');
}

/* =====================================================
   Variablen
   ===================================================== */

:root {
  --clr-purple:       #8b2fc9;
  --clr-purple-dark:  #5b1f8a;
  --clr-purple-light: #b86de8;
  --clr-black:        #0d0d0d;
  --clr-dark:         #1a1a1a;
  --clr-darker:       #141414;
  --clr-card:         #222222;
  --clr-gray-dark:    #333333;
  --clr-gray:         #666666;
  --clr-gray-light:   #aaaaaa;
  --clr-text:         #e0e0e0;
  --clr-white:        #ffffff;
  --clr-border:       #2e2e2e;
  
  --font-hexe: 'Another Dander Slanted', Georgia, serif;
  --font-heading:     'Cinzel', Georgia, serif;
  --font-body:        'Raleway', sans-serif;
  
  --nav-height:       60px;
  --bleed:            60px;
}

/* =====================================================
   GLOBAL RESET & BODY STYLING
   ===================================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--clr-text);
  background: var(--clr-black);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--clr-purple-light);
  text-decoration: none;
  transition: color .2s;
}

a:hover {
  color: var(--clr-white);
}

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

h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--clr-white);
  line-height: 1.3;
}

ul {
  list-style: disc;
}

li {
    margin-left: 30px;
}

fieldset {
  border: none;
}

.ce_form .radio_container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

::selection {
  background: rgba(139,47,201,.4);
  color: #fff;
}

::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background: var(--clr-darker);
}

::-webkit-scrollbar-thumb {
  background: var(--clr-gray-dark);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--clr-purple);
}

/* =====================================================
   EASYVEREIN IFRAME
   ===================================================== */

.easyverein-wrapper {
  width: 100%;
  height: 3100px;
  overflow-y: auto;
  border: 1px solid var(--clr-border);
  border-radius: 3px;
}

.easyverein-wrapper::-webkit-scrollbar {
  width: 8px;
}

.easyverein-wrapper::-webkit-scrollbar-track {
  background: var(--clr-darker);
  border-radius: 4px;
}

.easyverein-wrapper::-webkit-scrollbar-thumb {
  background: var(--clr-purple);
  border-radius: 4px;
}

.easyverein-wrapper::-webkit-scrollbar-thumb:hover {
  background: var(--clr-purple-light);
}

.easyverein-frame {
  width: 100%;
  height: 5000px;
  border: none;
}

.scroll-hint {
  color: var(--clr-gray-light);
  font-size: 0.85rem;
  margin-bottom: 10px;
  text-align: center;
  display: none;
}

@media (max-width: 1024px) {
  .scroll-hint {
    display: block;
  }
}


/* =====================================================
   BANNER HINTERGRUND & CANVAS
   ===================================================== */

#header-wrap {
  position: relative;
}

#banner {
  height: calc(600px + var(--bleed));
  position: relative;
  overflow: hidden;
  background: #060410;
  background-image: url('../images/page/laue-brigge-hexe-header.webp');
  background-size: cover;
  background-position: center 80%;
}

#starCanvas, #boltCanvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

#boltCanvas {
  z-index: 1;
}

.banner-tint {
  position: absolute;
  inset: 0;
  background: rgba(60,10,90,0.28);
  pointer-events: none;
  z-index: 1;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.banner-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to bottom, transparent 0%, rgba(13,13,13,.4) 60%, rgba(13,13,13,.75) 100%);
  z-index: 1;
  pointer-events: none;
}

/* =====================================================
   BANNER TITEL-ANIMATION
   ===================================================== */

.banner-title-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  z-index: 2;
  padding: 0 0 0 4%;
  text-align: left;
  max-width: 60%;
  transform: translateY(-100px);
}

@media (max-width: 900px) {
  .banner-title-wrap {
    transform: translateY(-80px);
  }
}

@media (max-width: 680px) {
  .banner-title-wrap {
    transform: translateY(-60px);
  }
}

.main-title {
  font-family: 'Another Danger', Georgia, serif;
  font-weight: 400;
  font-size: clamp(2rem, 6vw, 4.5rem);
  letter-spacing: clamp(2px, 1vw, 5px);
  color: #fff;
  opacity: 0;
  filter: blur(28px);
  animation: 
    phase1 1.5s ease-out 0.1s forwards,      /* Schneller: 1.5s statt 2.5s */
    phase2 1s ease-out 1.6s forwards,        /* Schneller: 1s statt 1.5s */
    phase3 3s ease-in-out 2.8s infinite;     /* Früher starten: 2.8s statt 4.5s */
  line-height: 1.2;
}

@keyframes phase1 {
  0% {
    opacity: 0;
    filter: blur(18px);
    text-shadow: none;
  }
  50% {
    opacity: 0.6;
    filter: blur(12px);
    text-shadow: 0 0 30px rgba(184,109,232,0.3);
  }
  100% {
    opacity: 1;
    filter: blur(3px);
    text-shadow: -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000,
                 0 0 20px rgba(184,109,232,0.6);
  }
}

@keyframes phase2 {
  0% {
    filter: blur(3px);
    text-shadow: -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000,
                 0 0 20px rgba(184,109,232,0.6);
  }
  40% {
    filter: blur(0);
    text-shadow: -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000,
                 0 0 15px #b86de8, 0 0 30px #8b2fc9;
  }
  100% {
    filter: blur(0);
    text-shadow: -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000,
                 0 0 7px #fff, 0 0 10px #fff, 0 0 42px #b86de8, 0 0 82px #8b2fc9;
  }
}

@keyframes phase3 {
  0%, 35%, 44%, 100% {
    text-shadow: -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000,
                 0 0 7px #fff, 0 0 10px #fff, 0 0 42px #b86de8, 0 0 82px #8b2fc9;
    opacity: 1;
    filter: brightness(1);
  }
  38% {
    text-shadow: -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000,
                 0 0 20px #b86de8, 0 0 60px #8b2fc9;
    filter: brightness(1.5);
  }
  42% {
    text-shadow: -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000,
                 0 0 15px #b86de8, 0 0 40px #8b2fc9;
    filter: brightness(1.3);
  }
}

.sub-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  letter-spacing: clamp(1px, 0.3vw, 2px);
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0;
  filter: blur(8px);
  animation: subIn 1.2s ease-out 3.8s forwards;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000,
               0 0 10px rgba(184,109,232,0.4);
  max-width: 90vw;
}

@keyframes subIn {
  to {
    opacity: 1;
    filter: blur(0);
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000,
                 0 0 10px rgba(184,109,232,0.4);
  }
}

/* =====================================================
   HEXENBILD RECHTS IM BANNER
   ===================================================== */

.banner-hexe-right {
  position: absolute;
  right: 4%;
  bottom: 140px;
  z-index: 3;
  pointer-events: none;
}

.banner-hexe-right img {
  height: 480px;
  width: auto;
  display: block;
  object-fit: contain;
  mix-blend-mode: luminosity;
  filter: contrast(1.1) drop-shadow(0 0 20px rgba(139,47,201,0.6));
}

/* =====================================================
   KOPFZEILE IM BANNER (für Unterseiten)
   ===================================================== */

.banner-header-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  width: 70%;
  max-width: 800px;
  pointer-events: none;
}

.banner-header-content * {
  color: var(--clr-white) !important;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
  pointer-events: auto;
}

.banner-header-content h1,
.banner-header-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 3rem);
  letter-spacing: 3px;
  text-shadow: 0 0 30px rgba(184,109,232,0.6), 0 2px 10px rgba(0,0,0,0.9);
}

.banner-header-content p {
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: var(--clr-purple-light) !important;
  opacity: 0.9;
}

/* =====================================================
   NAVIGATION DESKTOP
   ===================================================== */

#nav-bar {
  margin-top: calc(-3 * var(--bleed));
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.90);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-top: 1px solid rgba(184,109,232,.25);
  border-bottom: 2px solid rgba(139,47,201,.5);
  box-shadow: 0 4px 20px rgba(0,0,0,.6);
}

#header-bleed {
  height: 0px;
  background: #060410;
  position: relative;
}

#header-bleed::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, var(--clr-black) 100%);
}

/* Mobile Toggle Checkbox - versteckt */
.menu-toggle {
  display: none;
}

/* Mobile Menu Icon - versteckt auf Desktop */
.menu-icon {
  display: none;
  cursor: pointer;
  padding: 20px;
  position: relative;
  user-select: none;
  z-index: 101;
}

.menu-icon span {
  background: rgba(255,255,255,.85);
  display: block;
  height: 2px;
  position: relative;
  transition: background 0.2s ease-out, transform 0.3s ease-out, opacity 0.3s ease-out;
  width: 22px;
}

.menu-icon span:not(:last-child) {
  margin-bottom: 5px;
}

/* Hamburger Animation */
.menu-toggle:checked ~ .menu-icon span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle:checked ~ .menu-icon span:nth-child(2) {
  opacity: 0;
}

.menu-toggle:checked ~ .menu-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================================
   DESKTOP NAVIGATION - NUR EINE NAV-EBENE!
   ============================================================ */

/* Navigation Container */
#nav-bar > nav {
  max-width: 1160px;
  margin: 0 auto;
  display: block;
  width: 100%;
}

/* Hauptmenü UL - HORIZONTAL auf Desktop */
#nav-bar > nav > ul {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

#nav-bar > nav > ul > li {
  position: relative;
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
}

/* Hauptmenü-Links (a-Tags) */
#nav-bar > nav > ul > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  height: var(--nav-height);
  padding: 0 17px;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .7px;
  text-transform: uppercase;
  color: rgba(255,255,255,.88);
  white-space: nowrap;
  text-decoration: none;
  transition: background .2s, color .2s;
  border-right: 1px solid rgba(255,255,255,.1);
}

#nav-bar > nav > ul > li:first-child > a {
  border-left: 1px solid rgba(255,255,255,.1);
}

#nav-bar > nav > ul > li > a:hover {
  background: var(--clr-purple);
  color: var(--clr-white);
}

/* Pfeil für Menüpunkte mit Submenü (nur bei a-Tags) */
#nav-bar > nav > ul > li:has(> ul) > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(255,255,255,.7);
  margin-left: 2px;
  transition: border-top-color .2s, transform .2s;
}

#nav-bar > nav > ul > li:has(> ul) > a:hover::after {
  border-top-color: var(--clr-white);
}

/* Hauptmenü – Aktive Seite (strong-Tag) */
#nav-bar > nav > ul > li > strong {
  display: flex;
  align-items: center;
  gap: 6px;
  height: var(--nav-height);
  padding: 0 17px;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .7px;
  text-transform: uppercase;
  color: var(--clr-white);
  white-space: nowrap;
  background: var(--clr-purple);
  border-right: 1px solid rgba(255,255,255,.1);
  cursor: default;
}

#nav-bar > nav > ul > li:first-child > strong {
  border-left: 1px solid rgba(255,255,255,.1);
}

/* Pfeil für aktive Seite mit Submenü (strong-Tag) */
#nav-bar > nav > ul > li:has(> ul) > strong::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--clr-white);
  margin-left: 2px;
}

/* Submenü Container */
#nav-bar > nav > ul > li > ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-top: 3px solid var(--clr-purple);
  min-width: 215px;
  box-shadow: 0 8px 28px rgba(0,0,0,.7);
  z-index: 9999;
  list-style: none;
  margin: 0;
  padding: 0;
}

#nav-bar > nav > ul > li > ul > li {
  margin-left: 0;
}

/* Submenü bei Hover anzeigen - Desktop */
#nav-bar > nav > ul > li:hover > ul {
  display: block !important;
  max-height: none !important;
}

/* Submenü-Links (a-Tags) */
#nav-bar > nav > ul > li > ul > li > a {
  display: block;
  padding: 10px 18px;
  font-size: .82rem;
  color: var(--clr-gray-light);
  text-decoration: none;
  border-bottom: 1px solid var(--clr-border);
  transition: background .15s, color .15s, padding-left .15s;
}

#nav-bar > nav > ul > li > ul > li:last-child > a {
  border-bottom: none;
}

/* Submenü-Link Hover */
#nav-bar > nav > ul > li > ul > li > a:hover {
  background: rgba(139,47,201,.18);
  color: var(--clr-white);
  padding-left: 24px;
}

/* Submenü – Aktive Seite (strong-Tag) */
#nav-bar > nav > ul > li > ul > li > strong {
  display: block;
  padding: 10px 18px;
  padding-left: 24px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--clr-white);
  background: var(--clr-purple);
  border-bottom: 1px solid var(--clr-border);
  cursor: default;
}

#nav-bar > nav > ul > li > ul > li:last-child > strong {
  border-bottom: none;
}

/* =====================================================
   NAVIGATION MOBILE
   ===================================================== */

@media (max-width: 768px) {
  /* Menu Icon anzeigen */
  .menu-icon {
    display: block !important;
  }
  
  /* Navigation verstecken auf Mobile */
  #nav-bar > nav {
    display: none !important;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    position: absolute;
    top: 60px;
    left: 0;
    box-shadow: 0 8px 20px rgba(0,0,0,.7);
    z-index: 100;
  }
  
  /* Navigation sichtbar wenn mobile-open Klasse gesetzt */
  #nav-bar > nav.mobile-open {
    display: block !important;
  }
  
  /* Hauptmenü UL - VERTIKAL auf Mobile */
  #nav-bar > nav > ul {
    display: flex !important;
    flex-direction: column !important;
    width: 100%;
  }
  
  /* Hauptmenü-Links Mobile */
  #nav-bar > nav > ul > li > a,
  #nav-bar > nav > ul > li > strong {
    height: auto !important;
    padding: 15px 20px !important;
    border-right: none !important;
    border-left: none !important;
    border-bottom: 1px solid rgba(255,255,255,.08) !important;
  }
  
  /* Pfeil rechts */
  #nav-bar > nav > ul > li:has(> ul) > a::after,
  #nav-bar > nav > ul > li:has(> ul) > strong::after {
    margin-left: auto;
    border-top: 5px solid rgba(255,255,255,.7);
  }
  
  /* Submenü Mobile */
  #nav-bar > nav > ul > li > ul {
    position: static !important;
    border: none !important;
    border-left: 3px solid var(--clr-purple) !important;
    margin-left: 20px !important;
    box-shadow: none !important;
    background: rgba(0,0,0,.5) !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  /* Submenü öffnen bei Hover/Touch */
  #nav-bar > nav > ul > li:hover > ul {
    max-height: 500px !important;
  }
}

/* =====================================================
   INHALT WRAPPER
   ===================================================== */

#wrapper {
  max-width: 1340px;
  margin: 20px auto 0;
  padding: 32px 10px;
  position: relative;
  z-index: 1;
}

.content-block,
.mod_article {
  background: #2e2e2e;
  border-radius: 3px;
  padding: 28px;
  margin-bottom: 22px;
}

.content-block h1,
.mod_article h1 {
  font-size: 1.6rem;
  padding-bottom: 12px;
  margin-bottom: 18px;
  border-bottom: 2px solid var(--clr-purple);
  position: relative;
}

.content-block h1::after,
.mod_article h1::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--clr-purple-light);
  opacity: .5;
}

.content-block p,
.mod_article p {
  color: var(--clr-text);
  margin-bottom: .9rem;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 10px;
  margin-top: 22px;
}

/* Responsive Bilder */
.ce_image img {
  max-width: 100% !important;
  height: auto !important;
  width: auto !important;
}

/* =====================================================
   FOOTER
   ===================================================== */

#footer {
  background: var(--clr-darker);
  border-top: 1px solid rgba(184,109,232,0.3);
  position: relative;
  overflow: hidden;
}

/* Gradient-Linie oben */
#footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--clr-purple) 20%, 
    var(--clr-purple-light) 50%, 
    var(--clr-purple) 80%, 
    transparent 100%);
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 40px 20px 30px;
}

/* Oberer Footer-Bereich */
.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  margin-bottom: 35px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.footer-brand {
  font-family: 'Another Danger', Georgia, serif;
  font-size: 1.8rem;
  color: var(--clr-white);
  text-shadow: 0 0 15px rgba(184,109,232,0.4);
  margin-bottom: 10px;
}

.footer-tagline {
  color: var(--clr-purple-light);
  font-size: 0.95rem;
  font-weight: 300;
}

/* Footer Navigation - zentriert */
.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav li {
  margin: 0;
  padding: 0;
}

.footer-nav ul a,
.footer-nav ul strong {
  color: var(--clr-gray-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
  position: relative;
}

.footer-nav ul a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-purple-light);
  transition: width 0.2s;
}

.footer-nav ul a:hover {
  color: var(--clr-white);
}

.footer-nav ul a:hover::after {
  width: 100%;
}

.footer-nav ul strong {
  color: var(--clr-white);
  font-weight: 500;
}

/* Verschachtelte Navigation */
.footer-nav .mod_customnav {
  display: contents;
}

.footer-nav .invisible {
  display: none !important;
}

/* Hexen-Dekoration */
.hexe-decoration {
  opacity: 0.15;
  filter: drop-shadow(0 0 20px rgba(139,47,201,0.6));
}

.hexe-decoration svg {
  width: 150px;
  height: 150px;
  fill: var(--clr-purple-light);
}

/* Unterer Footer-Bereich: Social Media + Copyright */
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--clr-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

/* Social Media Icons */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icon {
  width: 45px;
  height: 45px;
  background: var(--clr-card);
  border: 2px solid var(--clr-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gray-light);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 1.2rem;
}

.social-icon:hover {
  background: var(--clr-purple);
  border-color: var(--clr-purple);
  color: var(--clr-white);
  transform: scale(1.1) rotate(5deg);
}

/* Copyright Text */
.footer-copy {
  text-align: center;
  color: #fafafa; 
  font-size: 0.85rem;
}

/* Font-Switcher */
.font-switcher {
  display: flex;
  gap: 6px;
  align-items: center;
}

.font-switcher a {
  color: var(--clr-gray);
  font-weight: 700;
  padding: 2px 6px;
  border: 1px solid var(--clr-border);
  border-radius: 2px;
  transition: border-color .2s, color .2s;
}

.font-switcher a:first-child {
  font-size: .72rem;
}

.font-switcher a:nth-child(2) {
  font-size: .88rem;
}

.font-switcher a:last-child {
  font-size: 1.05rem;
}

.font-switcher a:hover,
.font-switcher a.active {
  border-color: var(--clr-purple);
  color: var(--clr-purple);
}

/* =====================================================
   ERDMANNFREUNDE GRID BUNDLE
   ===================================================== */

.row {
  display: flex !important;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.row > .ce_text,
.row > .mod_article,
[class*="col-"] {
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
}

/* Desktop: 12 Spalten */
.col-md-1  { width: 8.333%; }
.col-md-2  { width: 16.666%; }
.col-md-3  { width: 25%; }
.col-md-4  { width: 33.333%; }
.col-md-5  { width: 41.666%; }
.col-md-6  { width: 50%; }
.col-md-7  { width: 58.333%; }
.col-md-8  { width: 66.666%; }
.col-md-9  { width: 75%; }
.col-md-10 { width: 83.333%; }
.col-md-11 { width: 91.666%; }
.col-md-12 { width: 100%; }

/* Tablet */
@media (max-width: 900px) {
  .col-md-6 {
    width: 100%;
  }
}

.line {
  font-size: 1.6rem;
  padding-bottom: 12px;
  margin-bottom: 18px;
  border-bottom: 2px solid var(--clr-purple);
  position: relative;
}

/* =====================================================
   COUNTUP STATISTIKEN MIT FORTSCHRITTSBALKEN
   ===================================================== */

.hexen-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 0px auto;
  padding: 40px 20px;
  max-width: 1200px;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(139,47,201,0.3);
  border-color: var(--clr-purple);
}

.stat-label {
  color: var(--clr-text);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--clr-purple-light);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 15px;
  text-shadow: 0 0 20px rgba(184,109,232,0.4);
}

.stat-progress {
  width: 100%;
  height: 8px;
  background: var(--clr-darker);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.3);
}

.stat-progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--clr-purple) 0%, var(--clr-purple-light) 100%);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(184,109,232,0.6);
  transition: width 0.3s ease-out;
}

/* =====================================================
   MAGISCHER HINTERGRUND (Pulsierender Kreis)
   ===================================================== */

.magic-circle-bg {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at center, #1a0a2e 0%, #0a0512 100%);
}

.magic-circle-bg::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  margin: -150px 0 0 -150px;
  border: 2px solid rgba(138, 43, 226, 0.3);
  border-radius: 50%;
  animation: magicPulse 3s ease-in-out infinite;
  pointer-events: none;
}

.magic-circle-bg::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  margin: -200px 0 0 -200px;
  border: 1px solid rgba(75, 0, 130, 0.2);
  border-radius: 50%;
  animation: magicPulse 3s ease-in-out infinite 1.5s;
  pointer-events: none;
}

@keyframes magicPulse {
  0%, 100% { 
    transform: scale(1); 
    opacity: 0.3; 
  }
  50% { 
    transform: scale(1.2); 
    opacity: 0.6; 
  }
}

/* =====================================================
   TEAM LAYOUT - Abteilungsleitung
   ===================================================== */

.team-section {
  max-width: 1600px;
  margin: 0 auto;
  padding: 60px 20px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 30px;
}

/* Desktop: 4 Spalten */
@media (min-width: 1401px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Laptop: 3 Spalten */
@media (max-width: 1400px) and (min-width: 1025px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
  }
}

/* Tablet: 2 Spalten */
@media (max-width: 1024px) and (min-width: 769px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

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

/* =====================================================
   TEAM CARD STYLING
   ===================================================== */

.team-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1a1a;
  transition: all 0.4s ease;
  border: 1px solid #fff;
}

.team-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

/* Bild-Wrapper */
.team-img-wrapper {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-img-wrapper img {
  transform: scale(1.1);
}

/* Overlay beim Hover */
.team-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.9) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

/* Info-Bereich */
.team-info {
  padding: 30px 25px;
  background: #1a1a1a;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}

/* =====================================================
   TEAM NAME & ROLE
   ===================================================== */

.team-name {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.team-name .firstname {
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 400;
  font-size: 1.1rem;
}

.team-name .lastname {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, #8a2be2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 1.3rem;
}

.team-role {
  color: #8a2be2;
  font-size: 1rem;
  margin-bottom: 20px;
  font-weight: 400;
}

/* =====================================================
   TEAM E-MAIL ICON
   ===================================================== */

.team-email-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.team-email-link:hover {
  background: rgba(138, 43, 226, 0.2);
  border-color: rgba(138, 43, 226, 0.6);
  transform: scale(1.15);
  box-shadow: 0 0 20px rgba(138, 43, 226, 0.4);
}

/* Emoji Icon */
.email-icon {
  font-size: 1.8rem;
  transition: transform 0.3s ease;
  display: inline-block;
}

.team-email-link:hover .email-icon {
  transform: rotate(15deg);
}

/* =====================================================
   HEXEN COUNTDOWN
   ===================================================== */

.hexen-countdown {
  max-width: 1000px;
  margin: 60px auto;
  padding: 40px 20px;
  text-align: center;
}

.countdown-title {
  font-family: 'Cinzel', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
  text-align: center;
  line-height: 1.2;
  text-transform: none;
}

.countdown-display {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.countdown-unit {
  background: #1a1a1a;
  border: 2px solid rgba(138, 43, 226, 0.3);
  border-radius: 15px;
  padding: 30px 25px;
  min-width: 140px;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.countdown-unit:hover {
  border-color: rgba(138, 43, 226, 0.8);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.4),
              0 10px 30px rgba(138, 43, 226, 0.3);
  transform: translateY(-5px);
}

.countdown-number {
  font-family: 'Cinzel', serif;
  font-size: 4rem;
  font-weight: 700;
  color: #8a2be2;
  line-height: 1;
  text-shadow: 0 0 20px rgba(138, 43, 226, 0.5);
}

.countdown-label {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 15px;
}

.countdown-separator {
  font-family: 'Cinzel', serif;
  font-size: 3rem;
  color: #8a2be2;
  font-weight: 700;
  line-height: 1;
  margin: 0 10px;
}

.countdown-finished {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  color: #8a2be2;
  padding: 40px;
  background: #1a1a1a;
  border: 2px solid rgba(138, 43, 226, 0.5);
  border-radius: 15px;
  box-shadow: 0 0 30px rgba(138, 43, 226, 0.3);
}

/* Countdown Standard-Überschrift */
.hexen-countdown h1,
.hexen-countdown h2,
.hexen-countdown h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
  text-align: center;
  line-height: 1.2;
}

/* =====================================================
   RESPONSIVE - BANNER & NAVIGATION
   ===================================================== */

@media (max-width: 900px) {
  .banner-hexe-right img {
    height: 320px;
    right: 2%;
    bottom: 100px;
  }
}

@media (max-width: 768px) {
  .sub-title {
    display: none;
  }
}

/* =====================================================
   RESPONSIVE - STATISTIKEN
   ===================================================== */

@media (max-width: 900px) {
  .hexen-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 600px) {
  .hexen-stats {
    grid-template-columns: 1fr;
  }
  
  .stat-label {
    font-size: 0.85rem;
  }
}

/* =====================================================
   RESPONSIVE - TEAM
   ===================================================== */

@media (max-width: 768px) {
  .team-section {
    padding: 40px 15px;
  }
  
  .team-img-wrapper {
    height: 350px;
  }
  
  .team-name {
    font-size: 1.4rem;
  }
  
  .team-name .firstname {
    font-size: 1.2rem;
  }
  
  .team-name .lastname {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .team-info {
    padding: 25px 20px;
  }
  
  .team-name {
    font-size: 1.3rem;
  }
  
  .team-name .firstname {
    font-size: 1.1rem;
  }
  
  .team-name .lastname {
    font-size: 1.3rem;
  }
  
  .team-role {
    font-size: 0.95rem;
  }
  
  .team-email-link {
    width: 45px;
    height: 45px;
    font-size: 1.6rem;
  }
  
  .email-icon {
    font-size: 1.5rem;
  }
}

@media (max-width: 380px) {
  .team-name {
    font-size: 1.2rem;
  }
  
  .team-name .firstname {
    font-size: 1rem;
  }
  
  .team-name .lastname {
    font-size: 1.2rem;
  }
  
  .team-role {
    font-size: 0.9rem;
  }
  
  .team-img-wrapper {
    height: 300px;
  }
}

/* =====================================================
   RESPONSIVE - TIMELINE
   ===================================================== */

@media (max-width: 1024px) {
  .row.ce_rowStart {
    flex-direction: column;
    gap: 80px;
  }
  
  .row.ce_rowStart .timeline-container {
    min-height: auto;
  }
  
  .row.ce_rowStart .hexen-timeline {
    padding: 40px 20px;
  }
  
  .row.ce_rowStart .timeline-title {
    font-size: 2rem;
  }
  
  .row.ce_rowStart .timeline-item {
    margin-bottom: 80px;
  }
  
  .row.ce_rowStart .timeline-content {
    width: calc(50% - 40px);
    padding: 25px 30px;
  }
  
  .row.ce_rowStart .timeline-year {
    font-size: 1.8rem;
  }
  
  .row.ce_rowStart .timeline-name {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .timeline-container::before {
    left: 30px !important;
  }
  
  .timeline-dot {
    left: 30px !important;
  }
  
  .timeline-content {
    width: calc(100% - 80px) !important;
    margin-left: 60px !important;
    margin-right: 0 !important;
  }
  
  .timeline-left .timeline-content::before,
  .timeline-right .timeline-content::before {
    left: -15px !important;
    right: auto !important;
    border-width: 10px 15px 10px 0 !important;
    border-color: transparent rgba(138, 43, 226, 0.3) transparent transparent !important;
  }
  
  .timeline-title {
    font-size: 2rem;
  }
  
  .timeline-year {
    font-size: 1.5rem;
  }
  
  .timeline-name {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hexen-timeline {
    margin: 40px auto;
    padding: 20px 10px;
  }
  
  .timeline-content {
    padding: 20px !important;
  }
  
  .timeline-year {
    font-size: 1.3rem;
  }
}

/* =====================================================
   RESPONSIVE - COUNTDOWN
   ===================================================== */

@media (max-width: 768px) {
  .countdown-title {
    font-size: 2rem;
  }
  
  .countdown-display {
    gap: 15px;
  }
  
  .countdown-unit {
    min-width: 100px;
    padding: 20px 15px;
  }
  
  .countdown-number {
    font-size: 3rem;
  }
  
  .countdown-label {
    font-size: 0.85rem;
  }
  
  .countdown-separator {
    font-size: 2rem;
    margin: 0 5px;
  }
  
  .hexen-countdown h1,
  .hexen-countdown h2,
  .hexen-countdown h3 {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .countdown-unit {
    min-width: 70px;
    padding: 15px 10px;
  }
  
  .countdown-number {
    font-size: 2.5rem;
  }
  
  .countdown-label {
    font-size: 0.75rem;
    letter-spacing: 1px;
  }
  
  .countdown-separator {
    display: none;
  }
  
  .hexen-countdown h1,
  .hexen-countdown h2,
  .hexen-countdown h3 {
    font-size: 2rem;
  }
}

/* =====================================================
   ACCESSIBILITY - Reduced Motion
   ===================================================== */

@media (prefers-reduced-motion: reduce) {
  .timeline-item,
  .timeline-dot {
    animation: none !important;
    opacity: 1 !important;
  }
}

/* =====================================================
   KONTAKTFORMULAR (ce_form)
   ===================================================== */

/* Formular-Container */
.ce_form {
  background: #2e2e2e;
  border: 1px solid var(--clr-border);
  border-radius: 3px;
  padding: 28px;
  max-width: 100%;
  margin-top: 20px;
  box-sizing: border-box;
}

/* =====================================================
   SPALTEN-LAYOUT (ce_columns / Erdmannfreunde Grid)
   ===================================================== */

.ce_form .formbody .ce_columns .row {
  display: flex !important;
  flex-wrap: wrap !important;
  margin-left: -10px !important;
  margin-right: -10px !important;
}

/* Alle Widgets im Spaltenset: halbe Breite */
.ce_form .formbody .ce_columns .row .widget {
  width: 50% !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  box-sizing: border-box !important;
}

/* =====================================================
   WIDGET-ABSTÄNDE
   ===================================================== */

.ce_form .widget {
  margin-bottom: 16px !important;
}

/* Textarea, Checkbox, Captcha, Altcha, Submit: volle Breite */
.ce_form .formbody .widget-textarea,
.ce_form .formbody .widget-checkbox,
.ce_form .formbody .widget-captcha,
.ce_form .formbody .widget-altcha,
.ce_form .formbody .widget-submit {
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* =====================================================
   LABELS
   ===================================================== */

.ce_form .formbody label {
  display: block !important;
  font-size: 0.75rem !important;
  text-transform: uppercase !important;
  letter-spacing: 1.2px !important;
  color: var(--clr-purple-light) !important;
  font-weight: 500 !important;
  margin-bottom: 6px !important;
}

/* Pflichtfeld-Stern */
.ce_form label .mandatory {
  color: var(--clr-purple-light);
  margin-left: 2px;
}

/* =====================================================
   EINGABEFELDER – BASIS
   ===================================================== */

.ce_form .formbody input.text,
.ce_form .formbody textarea.textarea {
  background: var(--clr-darker) !important;
  border: 1px solid #3a3a3a !important;
  border-radius: 2px !important;
  color: var(--clr-text) !important;
  font-size: 0.9rem !important;
  font-family: var(--font-body) !important;
  width: 100% !important;
  box-sizing: border-box !important;
  outline: none !important;
  transition: border-color .2s, box-shadow .2s !important;
}

/* Einzeilige Felder */
.ce_form .formbody input.text {
  padding: 10px 14px 10px 38px !important;
  height: 42px !important;
}

/* Textarea */
.ce_form .formbody textarea.textarea {
  padding: 12px 14px 10px 38px !important;
  height: 180px !important;
  resize: vertical !important;
}

/* Fokus */
.ce_form .formbody input.text:focus,
.ce_form .formbody textarea.textarea:focus {
  border-color: var(--clr-purple) !important;
  box-shadow: 0 0 0 2px rgba(139,47,201,.18) !important;
}

/* =====================================================
   ICONS IN FELDERN
   ===================================================== */

/* E-Mail */
.ce_form .formbody input[type="email"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238b2fc9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'/%3E%3Cpath d='m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: 12px center !important;
}

/* Telefon (type="number" laut Quellcode) */
.ce_form .formbody input[type="number"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238b2fc9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07A19.5 19.5 0 0 1 4.69 12 19.79 19.79 0 0 1 1.65 3.18 2 2 0 0 1 3.62 1h3a2 2 0 0 1 2 1.72c.127.96.361 1.903.7 2.81a2 2 0 0 1-.45 2.11L7.91 8.82a16 16 0 0 0 6.29 6.29l.82-.91a2 2 0 0 1 2.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: 12px center !important;
  -moz-appearance: textfield !important;
}
.ce_form .formbody input[type="number"]::-webkit-outer-spin-button,
.ce_form .formbody input[type="Number"]::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
}

/* Vorname / Nachname */
.ce_form .formbody input[name="Vorname"],
.ce_form .formbody input[name="vorname"],
.ce_form .formbody input[name="Nachname"],
.ce_form .formbody input[name="nachname"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238b2fc9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M4 20c0-4 3.6-7 8-7s8 3 8 7'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: 12px center !important;
}

/* Nachricht (Textarea) */
.ce_form .formbody textarea.textarea {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238b2fc9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: 12px 13px !important;
}

/* Betreff */
.ce_form .formbody input[name="betreff"],
.ce_form .formbody input[name="subject"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238b2fc9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 3a2.85 2.83 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5Z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: 12px center !important;
}

/* URL */
.ce_form .formbody input[type="url"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238b2fc9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M2 12h20M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: 12px center !important;
}

/* Datum */
.ce_form .formbody input[type="date"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238b2fc9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cpath d='M16 2v4M8 2v4M3 10h18'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: 12px center !important;
  color-scheme: dark !important;
}

/* Uhrzeit */
.ce_form .formbody input[type="time"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238b2fc9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 6v6l4 2'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: 12px center !important;
  color-scheme: dark !important;
}

/* Passwort */
.ce_form .formbody input[type="password"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238b2fc9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: 12px center !important;
}

/* Ort / Stadt */
.ce_form .formbody input[name="ort"],
.ce_form .formbody input[name="stadt"],
.ce_form .formbody input[name="city"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238b2fc9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 6-8 12-8 12s-8-6-8-12a8 8 0 0 1 16 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: 12px center !important;
}

/* Firma */
.ce_form .formbody input[name="firma"],
.ce_form .formbody input[name="company"],
.ce_form .formbody input[name="organisation"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238b2fc9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='7' width='20' height='15' rx='2'/%3E%3Cpath d='M16 7V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v2M12 12v5M8 12v5M16 12v5'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: 12px center !important;
}

/* Zunftname */
.ce_form .formbody input[name="zunftname"],
.ce_form .formbody input[name="Zunftname"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238b2fc9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/%3E%3Cpolyline points='9 22 9 12 15 12 15 22'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: 12px center !important;
}

/* Personen / Anzahl Personen */
.ce_form .formbody input[name="personen"],
.ce_form .formbody input[name="Personen"],
.ce_form .formbody input[name="anzahl_personen"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238b2fc9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: 12px center !important;
}

/* Narrenruf */
.ce_form .formbody input[name="narrenruf"],
.ce_form .formbody input[name="Narrenruf"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238b2fc9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2a3 3 0 0 0-3 3v7a3 3 0 0 0 6 0V5a3 3 0 0 0-3-3Z'/%3E%3Cpath d='M19 10v2a7 7 0 0 1-14 0v-2'/%3E%3Cline x1='12' x2='12' y1='19' y2='22'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: 12px center !important;
}

/* =====================================================
   DROPDOWN / SELECT
   ===================================================== */

.ce_form .formbody select {
  background-color: var(--clr-darker) !important;
  border: 1px solid #3a3a3a !important;
  border-radius: 2px !important;
  color: var(--clr-text) !important;
  padding: 10px 38px 10px 38px !important;
  height: 42px !important;
  width: 100% !important;
  font-size: 0.9rem !important;
  font-family: var(--font-body) !important;
  appearance: none !important;
  cursor: pointer !important;
  outline: none !important;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238b2fc9' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238b2fc9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 6h13M8 12h13M8 18h13M3 6h.01M3 12h.01M3 18h.01'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat, no-repeat !important;
  background-position: right 12px center, left 12px center !important;
  transition: border-color .2s, box-shadow .2s !important;
}

.ce_form .formbody select:focus {
  border-color: var(--clr-purple) !important;
  box-shadow: 0 0 0 2px rgba(139,47,201,.18) !important;
}

/* =====================================================
   DATENSCHUTZ-CHECKBOX
   ===================================================== */

.ce_form .formbody .widget-checkbox .checkbox_container {
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.ce_form .formbody .widget-checkbox .checkbox_container span {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
}

.ce_form .formbody .widget-checkbox input[type="checkbox"],
.ce_form .formbody input[type="radio"] {
  accent-color: var(--clr-purple) !important;
  width: 16px !important;
  height: 16px !important;
  margin-top: 4px !important;
  flex-shrink: 0 !important;
}

.ce_form .formbody .widget-checkbox label {
  font-size: 0.82rem !important;
  color: var(--clr-gray-light) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  line-height: 1.6 !important;
  cursor: pointer !important;
}

.ce_form .formbody .widget-checkbox label p {
  margin: 0 !important;
  color: var(--clr-gray-light) !important;
}

.ce_form .formbody .widget-checkbox label p strong em {
  color: var(--clr-purple-light) !important;
  font-style: normal !important;
}

/* =====================================================
   CAPTCHA
   ===================================================== */

.ce_form .formbody .widget-captcha {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  flex-wrap: wrap !important;
}

.ce_form .formbody .widget-captcha input.captcha {
  background: var(--clr-darker) !important;
  border: 1px solid #3a3a3a !important;
  border-radius: 2px !important;
  color: var(--clr-text) !important;
  padding: 10px 14px !important;
  height: 42px !important;
  width: 80px !important;
  font-size: 0.9rem !important;
  font-family: var(--font-body) !important;
  text-align: center !important;
  outline: none !important;
  flex-shrink: 0 !important;
}

.ce_form .formbody .widget-captcha input.captcha:focus {
  border-color: var(--clr-purple) !important;
  box-shadow: 0 0 0 2px rgba(139,47,201,.18) !important;
}

.ce_form .formbody .widget-captcha .captcha_text {
  color: var(--clr-gray-light) !important;
  font-size: 0.88rem !important;
  line-height: 1.4 !important;
}

/* =====================================================
   ALTCHA SPAM-SCHUTZ
   ===================================================== */

.ce_form .formbody .widget-altcha {
  margin-bottom: 20px !important;
}

/* =====================================================
   DATEI-UPLOAD
   ===================================================== */

.ce_form .formbody input[type="file"] {
  background: var(--clr-darker) !important;
  border: 1px dashed #3a3a3a !important;
  border-radius: 2px !important;
  color: var(--clr-gray-light) !important;
  padding: 10px 14px !important;
  width: 100% !important;
  font-size: 0.85rem !important;
  cursor: pointer !important;
  box-sizing: border-box !important;
}

.ce_form .formbody input[type="file"]::file-selector-button {
  background: var(--clr-purple) !important;
  color: #fff !important;
  border: none !important;
  padding: 6px 14px !important;
  border-radius: 2px !important;
  cursor: pointer !important;
  font-size: 0.8rem !important;
  margin-right: 12px !important;
}

/* =====================================================
   ABSENDEBUTTON
   ===================================================== */

.ce_form .formbody .widget-submit {
  margin-top: 24px !important;
}

.ce_form .formbody button.submit {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  background: var(--clr-purple) !important;
  color: var(--clr-white) !important;
  border: none !important;
  padding: 13px 32px !important;
  font-size: 0.88rem !important;
  letter-spacing: 1.8px !important;
  text-transform: uppercase !important;
  border-radius: 2px !important;
  cursor: pointer !important;
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  transition: background .2s, transform .15s, box-shadow .2s !important;
  position: relative !important;
  overflow: hidden !important;
}

.ce_form .formbody button.submit:hover {
  background: var(--clr-purple-dark) !important;
  box-shadow: 0 0 18px rgba(139,47,201,.45) !important;
  transform: translateY(-1px) !important;
}

.ce_form .formbody button.submit:active {
  transform: translateY(0) !important;
  box-shadow: none !important;
}

.ce_form .formbody button.submit:disabled {
  background: var(--clr-gray-dark) !important;
  cursor: not-allowed !important;
  box-shadow: none !important;
  transform: none !important;
}

/* Papierflugzeug-Icon */
.ce_form .formbody button.submit::before {
  content: '' !important;
  display: inline-block !important;
  width: 18px !important;
  height: 18px !important;
  flex-shrink: 0 !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 2 11 13'/%3E%3Cpath d='M22 2 15 22 11 13 2 9l20-7z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  background-position: center !important;
}

/* Schimmer-Effekt beim Hover */
.ce_form .formbody button.submit::after {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: -75% !important;
  width: 50% !important;
  height: 100% !important;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.15) 50%,
    rgba(255,255,255,0) 100%
  ) !important;
  transform: skewX(-20deg) !important;
  transition: left .5s !important;
  pointer-events: none !important;
}

.ce_form .formbody button.submit:hover::after {
  left: 130% !important;
}

/* =====================================================
   MELDUNGEN
   ===================================================== */

.ce_form p.error {
  font-size: 0.78rem;
  color: #e05c5c;
  margin-top: 4px;
}

.ce_form p.confirm {
  color: #7ec87e;
  font-size: 0.9rem;
  padding: 12px;
  border: 1px solid #3a5c3a;
  border-radius: 2px;
  background: rgba(60,120,60,.15);
}

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

@media (max-width: 680px) {
  .ce_form .formbody .ce_columns .row .widget {
    width: 100% !important;
  }
}

/* ============================================================
   LBH Event-Liste — ans dunkle Theme angepasst
   ============================================================ */

/* ---- Liste ---- */
.lbh-event-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ---- Einzelnes Event ---- */
.lbh-event-item {
  display: flex;
  align-items: flex-start;
  padding: 1.75rem 1.25rem;
  border-bottom: none;                  /* Trennlinie weg, Abstand übernimmt die Trennung */
  background: rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  margin-bottom: 15px;                   /* Abstand zum nächsten Termin */
}

.lbh-event-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

/* ---- Datums-Box ---- */
.lbh-date {
  min-width: 72px;
  flex-shrink: 0;
  text-align: center;
  padding-top: 2px;
}

.lbh-date-day {
  display: block;
  font-size: 42px;
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1;
  font-family: var(--font-heading);
}

.lbh-date-month {
  display: block;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-purple-light);
  margin-top: 4px;
}

.lbh-date-year {
  display: block;
  font-size: 14px;
  color: var(--clr-white);
  margin-top: 2px;
  letter-spacing: 0.03em;
  opacity: 0.6;
}

/* ---- Trennlinie Datum/Inhalt ---- */
.lbh-divider {
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--clr-purple) 20%,
    var(--clr-purple) 80%,
    transparent
  );
  flex-shrink: 0;
  align-self: stretch;
  min-height: 60px;
  margin: 0 28px;
  opacity: 0.5;
}

/* ---- Inhalts-Spalte ---- */
.lbh-content {
  flex: 1;
  min-width: 0;
}

/* ---- Titel ---- */
.lbh-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--clr-purple-light);
  margin: 0 0 8px 0;
  line-height: 1.3;
  font-family: var(--font-heading);
}

.lbh-title a {
  color: var(--clr-white);
  text-decoration: none;
  transition: color .2s;
}

.lbh-title a:hover {
  color: var(--clr-purple-light);
}

/* ---- Beschreibung ---- */
.lbh-desc {
  font-size: 14px;
  color: var(--clr-text);
  line-height: 1.65;
  margin: 0 0 12px 0;
}

.lbh-desc p {
  margin: 0;
}

/* ---- Meta-Zeile (Uhrzeit + Ort) ---- */
.lbh-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}

.lbh-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--clr-white);
}

.lbh-meta-item svg {
  flex-shrink: 0;
  opacity: 0.7;
  stroke: var(--clr-purple-light);
}

.lbh-event-item.featured {
  background: rgba(139, 47, 201, 0.12);
  border: 1px solid rgba(139, 47, 201, 0.45);
  border-radius: 4px;
}

.lbh-featured-badge {
  display: inline-block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-white);
  background: var(--clr-purple);
  border: 1px solid var(--clr-purple);
  border-radius: 3px;
  padding: 1px 8px;
  margin-bottom: 8px;
}

/* ============================================================
   Responsive — Mobile
   ============================================================ */
@media (max-width: 580px) {
  .lbh-event-item {
    padding: 1.25rem 0;
  }

  .lbh-date {
    min-width: 48px;
  }

  .lbh-date-day {
    font-size: 30px;
  }

  .lbh-date-month {
    font-size: 11px;
  }

  .lbh-divider {
    margin: 0 16px;
  }

  .lbh-title {
    font-size: 16px;
  }

  .lbh-desc {
    font-size: 13px;
  }

  .lbh-meta {
    flex-direction: column;
    gap: 5px;
  }
}

/* =====================================================
   SCROLL ANIMATION
   ===================================================== */

.scroll-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Verzögerungen für gestaffelte Animationen */
.scroll-fade:nth-child(2) { transition-delay: 0.1s; }
.scroll-fade:nth-child(3) { transition-delay: 0.2s; }
.scroll-fade:nth-child(4) { transition-delay: 0.3s; }
.scroll-fade:nth-child(5) { transition-delay: 0.4s; }

/* Reduced Motion respektieren */
@media (prefers-reduced-motion: reduce) {
  .scroll-fade {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =====================================================
   BACK TO TOP BUTTON
   ===================================================== */

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--clr-purple);
  border: 1px solid var(--clr-purple-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .3s, visibility .3s, transform .3s, background .2s;
  z-index: 999;
  box-shadow: 0 0 20px rgba(139,47,201,0.4);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--clr-purple-dark);
  box-shadow: 0 0 30px rgba(139,47,201,0.7);
}

.back-to-top svg {
  width: 18px;
  height: 18px;
  stroke: var(--clr-white);
}

@media (max-width: 580px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 38px;
    height: 38px;
  }
}

/* =====================================================
   COOKIE BAR
   ===================================================== */

/* NUR den inneren Dialog stylen, nicht den Overlay-Container */
.contao-cookiebar .cc-inner {
  background: var(--clr-dark) !important;
  border-top: 3px solid var(--clr-purple) !important;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.6) !important;
  font-family: var(--font-body) !important;
  color: var(--clr-text) !important;
}

.contao-cookiebar .cc-head p {
  color: var(--clr-text) !important;
  font-size: 0.9rem !important;
  line-height: 1.6 !important;
}

.contao-cookiebar .cc-head a {
  color: var(--clr-purple-light) !important;
}

.contao-cookiebar .cc-group label.group {
  color: var(--clr-white) !important;
  font-weight: 500 !important;
  font-size: 0.95rem !important;
}

.contao-cookiebar .cc-cookie label.cookie {
  color: var(--clr-text) !important;
  font-size: 0.88rem !important;
}

.contao-cookiebar .cc-cookie p {
  color: var(--clr-gray-light) !important;
  font-size: 0.82rem !important;
}

.contao-cookiebar .cc-cookies {
  background: var(--clr-dark) !important;
  border: 1px solid var(--clr-border) !important;
  border-radius: 2px !important;
  padding: 12px !important;
  margin-top: 8px !important;
}

.contao-cookiebar .cc-cookie {
  background: var(--clr-dark) !important;
  border: 1px solid var(--clr-border) !important;
  border-radius: 2px !important;
  padding: 10px !important;
  margin-bottom: 8px !important;
}

.contao-cookiebar .cc-cookie-info,
.contao-cookiebar .cc-cookie-info div,
.contao-cookiebar .widget-explanation,
.contao-cookiebar .widget-explanation p {
  background: transparent !important;
  color: var(--clr-gray-light) !important;
  font-size: 0.8rem !important;
}

.contao-cookiebar .cc-cookie-info span {
  color: var(--clr-purple-light) !important;
}

.contao-cookiebar input[type="checkbox"] {
  accent-color: var(--clr-purple) !important;
}

.contao-cookiebar .cc-detail-btn {
  color: var(--clr-purple-light) !important;
  background: transparent !important;
  border: none !important;
  font-size: 0.82rem !important;
  cursor: pointer !important;
  text-decoration: underline !important;
}

.contao-cookiebar .cc-detail-btn:hover {
  color: var(--clr-white) !important;
}

.contao-cookiebar .cc-footer {
  background: transparent !important;
  border-top: 1px solid var(--clr-border) !important;
  padding-top: 16px !important;
  display: flex !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
}

.contao-cookiebar .cc-btn.save {
  background: transparent !important;
  border: 1px solid var(--clr-purple) !important;
  color: var(--clr-purple-light) !important;
  padding: 10px 24px !important;
  border-radius: 2px !important;
  font-family: var(--font-body) !important;
  font-size: 0.85rem !important;
  cursor: pointer !important;
  transition: background .2s, color .2s !important;
}

.contao-cookiebar .cc-btn.save:hover {
  background: var(--clr-purple) !important;
  color: var(--clr-white) !important;
}

.contao-cookiebar .cc-btn.success {
  background: var(--clr-purple) !important;
  border: 1px solid var(--clr-purple) !important;
  color: var(--clr-white) !important;
  padding: 10px 24px !important;
  border-radius: 2px !important;
  font-family: var(--font-body) !important;
  font-size: 0.85rem !important;
  cursor: pointer !important;
  transition: background .2s, box-shadow .2s !important;
}

.contao-cookiebar .cc-btn.success:hover {
  background: var(--clr-purple-dark) !important;
  box-shadow: 0 0 18px rgba(139,47,201,0.45) !important;
}

.contao-cookiebar .cc-info {
  border-top: 1px solid var(--clr-border) !important;
  padding-top: 12px !important;
}

.contao-cookiebar .cc-info p {
  color: var(--clr-gray-light) !important;
  font-size: 0.8rem !important;
}

.contao-cookiebar .cc-info a {
  color: var(--clr-purple-light) !important;
  font-size: 0.8rem !important;
  text-decoration: none !important;
}

.contao-cookiebar .cc-info a:hover {
  color: var(--clr-white) !important;
}

/* =====================================================
   Oberhexen Timeline - LBH Dark Theme
   Layout: Oberhexe (mit Foto) | Linie | Vizehexe
   ===================================================== */

.ce_oberhexen_timeline {
  max-width: 100%;
  margin: 3rem auto;
  padding: 0 0rem;
}

.ce_oberhexen_timeline .timeline-header {
  text-align: left;
  margin-bottom: 10px;
}

.ce_oberhexen_timeline .timeline-header h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-top: 40px;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(139,47,201,0.4);
}

.ce_oberhexen_timeline .timeline {
  position: relative;
}

.ce_oberhexen_timeline .timeline::before {
  content: '';
  position: absolute;
  left: calc(65% / (65% + 35%) * 100% + -40px);
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, 
    rgba(139,47,201,0.3) 0%, 
    rgba(139,47,201,0.7) 50%, 
    rgba(139,47,201,0.3) 100%);
}

.ce_oberhexen_timeline .timeline-item {
  display: grid;
  grid-template-columns: 1.85fr 150px 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: start;
}

.ce_oberhexen_timeline .timeline-year {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--clr-purple-dark), var(--clr-purple));
  border: 3px solid rgba(139,47,201,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--clr-white);
  box-shadow: 0 0 30px rgba(139,47,201,0.6);
  text-align: center;
  line-height: 1.2;
  margin: 0 auto;
  position: sticky;
  top: 20px;
}

.ce_oberhexen_timeline .oberhexe-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-left: 4px solid var(--clr-purple);
  border-radius: 8px;
  padding: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  justify-self: end;
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
}

.ce_oberhexen_timeline .oberhexe-card:hover {
  box-shadow: 0 8px 30px rgba(139,47,201,0.4);
  transform: translateY(-4px);
}

.ce_oberhexen_timeline .oberhexe-photo {
  width: 150px;
  height: 200px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--clr-border);
  background: var(--clr-darker);
}

.ce_oberhexen_timeline .oberhexe-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ce_oberhexen_timeline .oberhexe-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ce_oberhexen_timeline .oberhexe-name {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--clr-white);
  margin: 0 0 0.5rem 0;
}

.ce_oberhexen_timeline .oberhexe-year {
  font-size: 1rem;
  color: var(--clr-purple-light);
  font-weight: 600;
  margin-bottom: 1rem;
}

.ce_oberhexen_timeline .oberhexe-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--clr-text);
}

.ce_oberhexen_timeline .oberhexe-description p {
  margin: 0 0 0.75rem 0;
}

.ce_oberhexen_timeline .vizehexen-container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  justify-self: start;
  width: 100%;
}

.ce_oberhexen_timeline .vizehexe-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-right: 3px solid var(--clr-purple);
  border-radius: 8px;
  padding: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.ce_oberhexen_timeline .vizehexe-card:hover {
  box-shadow: 0 4px 20px rgba(139,47,201,0.3);
  transform: translateX(4px);
}

.ce_oberhexen_timeline .vizehexe-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--clr-white);
  margin-bottom: 0.5rem;
  order: 1;
}

.ce_oberhexen_timeline .vizehexe-period {
  font-size: 0.875rem;
  color: var(--clr-purple-light);
  font-weight: 600;
  order: 2;
}

@media (max-width: 768px) {
  .ce_oberhexen_timeline .timeline::before {
    left: -10px;
  }
  
  .ce_oberhexen_timeline .timeline-item {
    grid-template-columns: 1fr;
    padding-left: 80px;
    gap: 1.5rem;
  }
  
  .ce_oberhexen_timeline .timeline-year {
    position: absolute;
    left: -50px;
    width: 80px;
    height: 80px;
    font-size: 0.85rem;
  }
  
  .ce_oberhexen_timeline .oberhexe-card {
    justify-self: stretch;
    flex-direction: column;
  }
  
  .ce_oberhexen_timeline .oberhexe-photo {
    width: 100%;
    height: 250px;
  }
}

/* ═══════════════════════════════════════════════════════════
   Ticket-Booking-Bundle – Alle Styles
   Buchung · Abholung/Pickup · Stornierung
   ═══════════════════════════════════════════════════════════ */

/* ── Gemeinsame Basis ── */
/* Contao 5 Twig-Fragment-Wrapper: module-<typ>  (alte mod_*-Namen für Rückwärtskompatibilität) */
.module-ticket-booking-form,
.module-ticket-hexen-form,
.module-ticket-pickup-check,
.module-ticket-cancellation-form,
.mod_ticket_booking,
.mod_ticket_pickup,
.mod_ticket_cancellation {
  max-width: 640px;
  margin: 0 auto;
  font-family: var(--font-body, 'Raleway', sans-serif);
}

/* ── Honeypot ── */
.ticket-honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
}

/* ── Messages (für alle Module) ── */
.ticket-booking-message {
  border-radius: 3px;
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
}
.ticket-booking-message.error {
  background: rgba(244, 67, 54, 0.1);
  border: 1px solid rgba(244, 67, 54, 0.4);
  color: #ef9a9a;
}
.ticket-booking-message.success {
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.4);
  color: #a5d6a7;
}
.ticket-booking-message.waitlist {
  background: rgba(139, 47, 201, 0.1);
  border: 1px solid rgba(139, 47, 201, 0.4);
  color: var(--clr-purple-light, #b86de8);
}
.ticket-booking-message .message-icon {
  font-size: 48px;
  margin-bottom: 10px;
}
.ticket-booking-message .message-title {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 8px;
}
.ticket-booking-message .message-text {
  margin: 0;
  font-size: 14px;
}

/* ── Info-Text ── */
.ticket-booking-info {
  background: var(--clr-card, #222);
  border: 1px solid var(--clr-border, #2e2e2e);
  border-radius: 3px;
  padding: 16px;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--clr-text, #e0e0e0);
}

/* ── Kontingent ── */
.ticket-booking-availability {
  margin-bottom: 20px;
}
.ticket-booking-availability h3 {
  font-size: 14px;
  color: var(--clr-purple-light, #b86de8);
  margin: 0 0 8px;
}
.ticket-group-info {
  background: var(--clr-card, #222);
  border: 1px solid var(--clr-border, #2e2e2e);
  border-radius: 3px;
  padding: 14px;
}
.ticket-group-info strong {
  display: block;
  color: var(--clr-white, #fff);
  margin-bottom: 4px;
}
.ticket-count {
  font-size: 13px;
  color: var(--clr-text, #e0e0e0);
}
.ticket-max-info {
  display: block;
  font-size: 12px;
  color: var(--clr-gray-light, #aaa);
  margin-top: 2px;
}
.ticket-progress {
  height: 6px;
  background: var(--clr-darker, #141414);
  border-radius: 3px;
  margin-top: 8px;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.3);
}
.ticket-progress-bar {
  height: 100%;
  background: #8b2fc9;
  border-radius: 3px;
  transition: width 0.3s;
}
.ticket-group-info.sold-out .ticket-progress-bar {
  background: #e05c5c;
}

/* ── Fieldsets & Legends ── */
.ticket-booking-form fieldset,
.ticket-cancel-form fieldset {
  border: none;
  margin: 0 0 24px;
  padding: 0;
}
.ticket-booking-form legend,
.ticket-cancel-form legend {
  font-size: 15px;
  font-weight: 700;
  color: var(--clr-purple-light, #b86de8);
  margin-bottom: 12px;
  padding: 0 0 6px;
  width: 100%;
  border-bottom: 1px solid var(--clr-border, #2e2e2e);
}

/* ── Form Row Grid ── */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.form-row.full {
  grid-template-columns: 1fr;
}

/* ── Widgets ── */
.ticket-booking-form .widget,
.ticket-cancel-form .widget {
  display: flex;
  flex-direction: column;
}
.ticket-booking-form label,
.ticket-cancel-form label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--clr-purple-light, #b86de8);
  margin-bottom: 6px;
}
.ticket-booking-form label .mandatory {
  color: var(--clr-purple-light, #b86de8);
  margin-left: 2px;
}

/* ── Inputs & Selects (Buchungs- & Stornierungsformular) ── */
.ticket-booking-form input.text,
.ticket-booking-form input[type="date"].text,
.ticket-booking-form select.select,
.ticket-cancel-form select.select {
  width: 100%;
  padding: 10px 14px 10px 14px;
  font-size: 0.9rem;
  font-family: var(--font-body, inherit);
  border: 1px solid #3a3a3a;
  border-radius: 2px;
  background: var(--clr-darker, #141414);
  color: var(--clr-text, #e0e0e0);
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
  height: 42px;
  line-height: 20px;
  outline: none;
}
.ticket-booking-form input.text:focus,
.ticket-booking-form input[type="date"].text:focus,
.ticket-booking-form select.select:focus,
.ticket-cancel-form select.select:focus {
  outline: none;
  border-color: var(--clr-purple, #8b2fc9);
  box-shadow: 0 0 0 2px rgba(139, 47, 201, 0.18);
}
.ticket-booking-form input[type="date"].text {
  line-height: 1.4;
  min-height: 42px;
  color-scheme: dark;
}
.ticket-booking-form select.select,
.ticket-cancel-form select.select {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238b2fc9' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
  cursor: pointer;
}
.ticket-booking-form .help {
  font-size: 12px;
  color: var(--clr-gray-light, #aaa);
  margin: 4px 0 0;
}

/* ── Privacy ── */
.ticket-booking-form .privacy-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-weight: 400;
  font-size: 14px;
  color: var(--clr-text, #e0e0e0);
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
}
.ticket-booking-form .privacy-label input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--clr-purple, #8b2fc9);
}
.ticket-booking-form .privacy-text {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--clr-gray-light, #aaa);
  text-transform: none;
  letter-spacing: 0;
}
.ticket-booking-form .privacy-text a {
  color: var(--clr-purple-light, #b86de8);
}

/* ── Teilnehmer-Rows (Buchungsformular) ── */
.attendee-row {
  display: grid;
  grid-template-columns: 70px 1fr 1fr;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}
.attendee-row .attendee-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-purple-light, #b86de8);
  white-space: nowrap;
}
.attendee-row input.text {
  width: 100%;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-family: var(--font-body, inherit);
  border: 1px solid #3a3a3a;
  border-radius: 2px;
  background: var(--clr-darker, #141414);
  color: var(--clr-text, #e0e0e0);
  box-sizing: border-box;
  height: 42px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.attendee-row input.text:focus {
  border-color: var(--clr-purple, #8b2fc9);
  box-shadow: 0 0 0 2px rgba(139, 47, 201, 0.18);
}

/* ── Submit-Buttons (alle Module) ── */
.ticket-booking-form .widget-submit,
.ticket-cancel-form .widget-submit {
  margin-top: 8px;
}
.ticket-booking-form .submit,
.ticket-cancel-form .submit,
.ticket-pickup-submit {
  width: 100%;
  padding: 13px 32px;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: var(--font-body, inherit);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--clr-white, #fff);
  background: var(--clr-purple, #8b2fc9);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.ticket-booking-form .submit:hover,
.ticket-cancel-form .submit:hover,
.ticket-pickup-submit:hover {
  background: var(--clr-purple-dark, #5b1f8a);
  box-shadow: 0 0 18px rgba(139,47,201,0.45);
  transform: translateY(-1px);
}
.ticket-booking-form .submit:active,
.ticket-cancel-form .submit:active,
.ticket-pickup-submit:active {
  background: var(--clr-purple-dark, #5b1f8a);
  transform: translateY(0);
  box-shadow: none;
}
.ticket-pickup-submit {
  padding: 16px;
  font-size: 18px;
}

/* ── Storno-Button: kräftig rot, weiße Schrift ── */
.ticket-cancel-form .submit {
  background: #d6001c;
  color: #fff;
}
.ticket-cancel-form .submit:hover {
  background: #a80016;
  box-shadow: 0 0 18px rgba(214, 0, 28, 0.45);
}
.ticket-cancel-form .submit:active {
  background: #a80016;
}

/* ── Versteckt bis Kategorie gewählt ── */
.ticket-section-hidden {
  display: none;
}

/* ── JS-generierte Status-Texte ── */
.ticket-help-soldout {
  color: #e05c5c;
  font-weight: bold;
}
.ticket-help-waitlist {
  color: #b86de8;
  font-weight: bold;
}


/* ═══════════════════════════════════════════════════════════
   PICKUP – Passwort, Details, Messages
   ═══════════════════════════════════════════════════════════ */

/* ── Passwort-Formular ── */
.ticket-pickup-password {
  border: 1px solid var(--clr-border, #2e2e2e);
  border-radius: 3px;
  padding: 24px;
  background: var(--clr-card, #222);
  max-width: 400px;
  margin: 0 auto;
}
.ticket-pickup-password__header {
  text-align: center;
  margin-bottom: 16px;
}
.ticket-pickup-password__icon {
  font-size: 48px;
  margin-bottom: 10px;
}
.ticket-pickup-password__title {
  font-size: 20px;
  font-weight: bold;
  color: var(--clr-white, #fff);
  margin: 0 0 8px;
}
.ticket-pickup-password__subtitle {
  color: var(--clr-gray-light, #aaa);
  font-size: 14px;
  margin: 0;
}
.ticket-pickup-password__error {
  background: rgba(244, 67, 54, 0.1);
  border: 1px solid rgba(244, 67, 54, 0.4);
  border-radius: 3px;
  padding: 10px;
  text-align: center;
  margin-bottom: 16px;
}
.ticket-pickup-password__error p {
  color: #ef9a9a;
  margin: 0;
  font-size: 14px;
}
.ticket-pickup-password__field {
  margin-bottom: 16px;
}
.ticket-pickup-password__input {
  width: 100%;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-family: var(--font-body, inherit);
  border: 1px solid #3a3a3a;
  border-radius: 2px;
  background: var(--clr-darker, #141414);
  color: var(--clr-text, #e0e0e0);
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ticket-pickup-password__input:focus {
  border-color: var(--clr-purple, #8b2fc9);
  box-shadow: 0 0 0 2px rgba(139, 47, 201, 0.18);
}
.ticket-pickup-password__submit {
  width: 100%;
  padding: 13px 32px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--clr-white, #fff);
  background: var(--clr-purple, #8b2fc9);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}
.ticket-pickup-password__submit:hover {
  background: var(--clr-purple-dark, #5b1f8a);
  box-shadow: 0 0 18px rgba(139,47,201,0.45);
}

/* ── Pickup Messages ── */
.ticket-pickup-message {
  border-radius: 3px;
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
}
.ticket-pickup-message.success {
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.4);
}
.ticket-pickup-message.success .message-title {
  color: #a5d6a7;
}
.ticket-pickup-message.already {
  background: rgba(255, 152, 0, 0.1);
  border: 1px solid rgba(255, 152, 0, 0.4);
}
.ticket-pickup-message.already .message-title {
  color: #ffb74d;
}
.ticket-pickup-message.already .message-text {
  color: #ffcc80;
}
.ticket-pickup-message.error {
  background: rgba(244, 67, 54, 0.1);
  border: 1px solid rgba(244, 67, 54, 0.4);
}
.ticket-pickup-message.error .message-title,
.ticket-pickup-message.error .message-text {
  color: #ef9a9a;
}
.ticket-pickup-message .message-icon {
  font-size: 48px;
  margin-bottom: 10px;
}
.ticket-pickup-message .message-title {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 8px;
}
.ticket-pickup-message .message-text {
  margin: 0;
  font-size: 16px;
}

/* ── Pickup Details-Karte ── */
.ticket-pickup-details {
  border: 1px solid var(--clr-border, #2e2e2e);
  border-radius: 3px;
  padding: 24px;
  background: var(--clr-card, #222);
  margin-bottom: 20px;
}
.ticket-pickup-details__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--clr-border, #2e2e2e);
}
.ticket-pickup-details__name {
  font-size: 24px;
  font-weight: bold;
  color: var(--clr-white, #fff);
}
.ticket-pickup-details__org {
  color: var(--clr-gray-light, #aaa);
  font-size: 14px;
}
.ticket-pickup-details__tickets-count {
  text-align: right;
}
.ticket-pickup-details__tickets-number {
  font-size: 32px;
  font-weight: bold;
  color: #8b2fc9;
}
.ticket-pickup-details__tickets-label {
  font-size: 12px;
  color: var(--clr-gray-light, #aaa);
}

/* ── Pickup Info-Grid ── */
.ticket-pickup-details__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.ticket-pickup-details__grid-label {
  font-size: 11px;
  color: var(--clr-gray-light, #aaa);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.ticket-pickup-details__grid-value {
  font-size: 11px;
  color: var(--clr-text, #e0e0e0);
}
.ticket-pickup-details__grid-value--bold {
  font-weight: bold;
  color: var(--clr-white, #fff);
}

/* ── Pickup Teilnehmer-Liste ── */
.ticket-pickup-attendees__title {
  color: var(--clr-purple-light, #b86de8);
  margin-top: 30px;
}
.ticket-pickup-attendees__list {
  color: var(--clr-text, #e0e0e0);
  font-size: 1.05em;
  padding-left: 20px;
}
.ticket-pickup-attendees__list li {
  margin: 8px 0;
  color: var(--clr-text, #e0e0e0);
}
.ticket-pickup-attendees__name {
  color: var(--clr-white, #fff);
  font-weight: 600;
}

/* ── Stornierung ── */
.ticket-cancel-info {
  background: var(--clr-card, #222);
  border: 1px solid var(--clr-border, #2e2e2e);
  border-radius: 3px;
  padding: 16px;
  margin-bottom: 20px;
}
.ticket-cancel-info h3 {
  color: var(--clr-purple-light, #b86de8);
  margin: 0 0 12px;
}
.ticket-cancel-details {
  width: 100%;
  font-size: 14px;
  color: var(--clr-text, #e0e0e0);
}
.ticket-cancel-details td {
  padding: 4px 8px 4px 0;
  vertical-align: top;
}
.ticket-cancel-warning {
  background: rgba(255, 152, 0, 0.1);
  border: 1px solid rgba(255, 152, 0, 0.4);
  border-radius: 3px;
  padding: 12px;
  margin-top: 12px;
  font-size: 14px;
  color: #ffb74d;
}
.ticket-cancel-warning p {
  margin: 0;
}


/* ═══════════════════════════════════════════════════════════
   Responsive: Mobile (<= 600px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  .module-ticket-booking-form,
  .module-ticket-hexen-form,
  .module-ticket-pickup-check,
  .module-ticket-cancellation-form,
  .mod_ticket_booking,
  .mod_ticket_pickup,
  .mod_ticket_cancellation {
    padding: 0 4px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .attendee-row {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }
  .attendee-row .attendee-label {
    grid-column: 1 / -1;
  }

  .ticket-pickup-details__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .ticket-pickup-details__tickets-count {
    text-align: left;
  }
  .ticket-pickup-details__grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════
   Hexen-Bestellung – Passwort-Gate
   ═══════════════════════════════════════════ */
.module-ticket-hexen-form,
.mod_ticket_hexen {
  max-width: 640px;
  margin: 0 auto;
  font-family: var(--font-body, 'Raleway', sans-serif);
}
.ticket-hexen-password {
  text-align: center;
  padding: 40px 20px;
}
.ticket-hexen-password__icon {
  font-size: 48px;
  margin-bottom: 12px;
}
.ticket-hexen-password__title {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--clr-purple-light, #b86de8);
  margin: 0 0 8px;
}
.ticket-hexen-password__text {
  font-size: 14px;
  opacity: 0.6;
  margin: 0 0 24px;
}
.ticket-hexen-password__form {
  max-width: 300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ticket-hexen-password__form .ticket-label {
  text-align: left;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--clr-purple-light, #b86de8);
  margin-bottom: 6px;
}
.ticket-hexen-password__form .ticket-input {
  width: 100%;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-family: var(--font-body, inherit);
  border: 1px solid #3a3a3a;
  border-radius: 2px;
  background: var(--clr-darker, #141414);
  color: var(--clr-text, #e0e0e0);
  height: 42px;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s;
}
.ticket-hexen-password__form .ticket-input:focus {
  border-color: var(--clr-purple, #8b2fc9);
}
.ticket-hexen-password__form .ticket-submit-btn {
  display: inline-block;
  padding: 12px 32px;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--font-body, inherit);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  background: var(--clr-purple, #8b2fc9);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: box-shadow 0.2s, background 0.2s;
}
.ticket-hexen-password__form .ticket-submit-btn:hover {
  box-shadow: 0 0 14px rgba(139,47,201,0.35);
  background: var(--clr-purple-light, #b86de8);
}

/* ═══════════════════════════════════════════
   Stornierung – Teilnehmer-Liste
   ═══════════════════════════════════════════ */
.ticket-cancel-attendees {
  margin-top: 24px;
}
.ticket-cancel-attendees h3 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--clr-purple-light, #b86de8);
  margin: 0 0 8px;
}
.ticket-cancel-attendee {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ticket-cancel-attendee:last-child {
  border-bottom: none;
}
.ticket-cancel-attendee__number {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  min-width: 24px;
  flex-shrink: 0;
}
.ticket-cancel-attendee__name {
  flex: 1;
  font-size: 15px;
  font-weight: 500;
  color: var(--clr-text, #e0e0e0);
}
.ticket-cancel-attendee__form {
  flex-shrink: 0;
}
.ticket-cancel-attendee__delete {
  background: none;
  border: none;
  padding: 4px 8px;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  color: #cc3333;
  transition: all 0.2s;
  line-height: 1;
}
.ticket-cancel-attendee__delete:hover {
  color: #ff4444;
  transform: scale(1.2);
}
