/*
 * Ladies Tour Thüringen - Main Stylesheet
 * Design System: Dark Mode Editorial – Premium Event 2026
 * ABSOLUTE PREMIUM: Cinematisch, Event-Grandeur, WOW-Faktor
 */

/* ===========================
   CSS CUSTOM PROPERTIES
   =========================== */
:root {
  /* Farben - Hintergründe */
  --bg-primary: #000000;
  --bg-secondary: #050507;
  --bg-card: #0a0a0e;
  --bg-card-hover: #111116;
  
  /* Farben - Text */
  --text-primary: #FFFFFF;
  --text-secondary: #B8B8B8;
  --text-muted: #888888;
  
  /* Farben - Akzente */
  --accent-magenta: #D81B60;
  --accent-magenta-light: #FF2D78;
  --accent-magenta-dark: #A01248;
  --accent-gold: #C9A227;
  --accent-gold-light: #E8D26A;
  
  /* Gradients */
  --gradient-magenta: linear-gradient(135deg, #D81B60, #FF2D78);
  --gradient-gold: linear-gradient(135deg, #C9A227, #E8D26A);
  --gradient-dark: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
  --gradient-premium: linear-gradient(135deg, #D81B60 0%, #FF2D78 25%, #C9A227 75%, #E8D26A 100%);
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.06);
  --glass-blur: blur(20px);
  
  /* Glow */
  --glow-magenta: 0 0 40px rgba(216, 27, 96, 0.4);
  --glow-magenta-strong: 0 0 60px rgba(216, 27, 96, 0.5), 0 0 120px rgba(216, 27, 96, 0.2);
  --glow-gold: 0 0 30px rgba(201, 162, 39, 0.3);
  --glow-soft: 0 8px 32px rgba(0, 0, 0, 0.6);
  
  /* Farben - UI-Elemente */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.18);
  
  /* Schriftarten */
  --font-headline: 'Montserrat', sans-serif;
  --font-body: 'Raleway', sans-serif;
  
  /* Spacing */
  --section-padding: 120px;
  --container-gap: 80px;
  
  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
}

/* ===========================
   BOOTSTRAP OVERRIDES – ALLE BLAUTÖNE ENTFERNT!
   =========================== */
:root,
[data-bs-theme="dark"],
[data-bs-theme="light"] {
  --bs-primary: #D81B60;
  --bs-primary-rgb: 216, 27, 96;
  --bs-link-color: #FFFFFF;
  --bs-link-color-rgb: 255, 255, 255;
  --bs-link-hover-color: #C9A227;
  --bs-link-hover-color-rgb: 201, 162, 39;
  --bs-blue: #D81B60;
  --bs-info: #C9A227;
  --bs-info-rgb: 201, 162, 39;
  --bs-body-color: #B8B8B8;
  --bs-body-bg: #000000;
  --bs-emphasis-color: #FFFFFF;
  --bs-focus-ring-color: rgba(216, 27, 96, 0.25);
  --bs-border-color: rgba(255, 255, 255, 0.08);
  --bs-component-active-bg: #D81B60;
  --bs-component-active-color: #fff;
}

/* Links */
a {
  color: var(--text-primary) !important;
  text-decoration: none !important;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-gold) !important;
}

/* Navbar-Links */
.navbar-nav .nav-link {
  color: var(--text-secondary) !important;
}

.navbar-nav .nav-link:hover {
  color: var(--text-primary) !important;
}

/* AKTIVER NAV-LINK = WEISS */
.navbar-nav .nav-link.active {
  color: var(--text-primary) !important;
}

/* Buttons */
.btn-primary, .btn-outline-primary {
  background-color: var(--accent-magenta) !important;
  border-color: var(--accent-magenta) !important;
  color: #fff !important;
}

.btn-primary:hover, .btn-outline-primary:hover {
  background-color: #A01248 !important;
  border-color: #A01248 !important;
}

.btn-primary:active, .btn-primary:focus,
.btn-outline-primary:active, .btn-outline-primary:focus {
  background-color: #A01248 !important;
  border-color: #A01248 !important;
  box-shadow: 0 0 0 0.25rem rgba(216, 27, 96, 0.4) !important;
}

.btn-link { color: var(--accent-magenta) !important; }
.btn-link:hover { color: #FF2D78 !important; }

.text-primary { color: var(--accent-magenta) !important; }
.link-primary { color: var(--accent-magenta) !important; }
.link-primary:hover { color: #FF2D78 !important; }

/* Focus-States – kein Blau */
*:focus, *:focus-visible {
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(216, 27, 96, 0.35) !important;
}

.btn:focus, .btn:focus-visible,
.form-control:focus, .form-select:focus,
.form-check-input:focus {
  border-color: var(--accent-magenta) !important;
  box-shadow: 0 0 0 0.25rem rgba(216, 27, 96, 0.25) !important;
}

a:not(.btn):focus { box-shadow: none !important; }
.navbar-toggler:focus { box-shadow: none !important; }

.form-control:focus,
.form-select:focus {
  border-color: var(--accent-magenta) !important;
}

.form-check-input:checked {
  background-color: var(--accent-magenta) !important;
  border-color: var(--accent-magenta) !important;
}

.accordion-button:not(.collapsed) {
  background-color: rgba(216, 27, 96, 0.1) !important;
  color: var(--accent-magenta) !important;
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--border-subtle) !important;
}

.badge.bg-primary { background-color: var(--accent-magenta) !important; }
.progress-bar { background-color: var(--accent-magenta) !important; }
.page-link { color: var(--accent-magenta) !important; }
.page-item.active .page-link {
  background-color: var(--accent-magenta) !important;
  border-color: var(--accent-magenta) !important;
  color: #fff !important;
}
.dropdown-item.active, .dropdown-item:active {
  background-color: var(--accent-magenta) !important;
}
.nav-pills .nav-link.active {
  background-color: var(--accent-magenta) !important;
  color: #fff !important;
}
.spinner-border, .spinner-grow {
  color: var(--accent-magenta) !important;
}

::selection {
  background: var(--accent-magenta);
  color: #fff;
}

::-moz-selection {
  background: var(--accent-magenta);
  color: #fff;
}

/* ===========================
   GLOBALE STYLES
   =========================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-secondary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

/* ===========================
   FILM-GRAIN OVERLAY – Premium-Look
   =========================== */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

/* ===========================
   TYPOGRAFIE
   =========================== */
h1, h2, h3 {
  font-family: var(--font-headline);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-primary);
  margin-bottom: 1.8rem;
  line-height: 1.15;
}

h2 {
  background: linear-gradient(135deg, var(--text-primary) 50%, var(--accent-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h4, h5 {
  font-family: var(--font-headline);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 { font-size: clamp(36px, 5vw, 72px); }
h2 { font-size: clamp(28px, 4vw, 54px); }
h3 { font-size: clamp(22px, 3vw, 34px); }
h4 { font-size: clamp(18px, 2vw, 24px); }
h5 { font-size: 18px; }

p { margin-bottom: 1.2rem; }

/* ===========================
   SECTION TAG – WEISS
   =========================== */
.section-tag {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--text-primary);
  margin-bottom: 1.8rem;
  position: relative;
  padding-left: 60px;
  text-transform: uppercase;
}

.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 2px;
  background: var(--gradient-magenta);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(216, 27, 96, 0.5);
}

.section-tag.gold {
  color: var(--accent-gold-light);
}

.section-tag.gold::before {
  background: var(--gradient-gold);
  box-shadow: 0 0 10px rgba(201, 162, 39, 0.5);
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  padding: 1.2rem 0;
  background: transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-scrolled {
  background: rgba(0, 0, 0, 0.85) !important;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.7rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar-brand img {
  height: 48px;
  transition: all 0.4s ease;
  filter: drop-shadow(0 0 8px rgba(216, 27, 96, 0.2));
}

.navbar-brand:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 0 16px rgba(216, 27, 96, 0.5));
}

.navbar-nav {
  align-items: center;
  gap: 0.5rem;
}

.navbar-nav .nav-link {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--text-secondary) !important;
  margin-left: 1rem;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  position: relative;
  border-radius: var(--radius-sm);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 100%;
  height: 2px;
  background: var(--gradient-magenta);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 12px rgba(216, 27, 96, 0.6);
}

.navbar-nav .nav-link:hover {
  color: var(--text-primary) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

/* AKTIVER NAV-LINK = WEISS */
.navbar-nav .nav-link.active {
  color: #FFFFFF !important;
}

.navbar-toggler {
  border: 1px solid var(--border-subtle);
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-sm);
  transition: border-color 0.3s ease;
}

.navbar-toggler:hover {
  border-color: var(--accent-magenta);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

/* Mobile Dropdown */
.navbar-collapse {
  transition: all 0.3s ease;
}

@media (max-width: 991px) {
  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin-top: 0.5rem;
    border: 1px solid var(--border-subtle);
  }
}

/* ===========================
   BUTTONS – Glow-Effekt
   =========================== */
.btn-primary-custom {
  background: var(--gradient-magenta);
  color: var(--text-primary);
  padding: 18px 50px;
  border: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 3px;
  border-radius: var(--radius-sm);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(216, 27, 96, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.btn-primary-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
  z-index: 2;
}

.btn-primary-custom:hover {
  color: var(--text-primary);
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--glow-magenta-strong), 0 12px 40px rgba(216, 27, 96, 0.4);
}

.btn-primary-custom:hover::before {
  left: 100%;
}

.btn-primary-custom:active {
  transform: translateY(-1px) scale(1.01);
}

/* ===========================
   HERO SECTION – Cinematisch
   =========================== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

/* Vignette + Gradient Overlay */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}

/* Pulsierender Magenta-Glow */
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  height: 60vh;
  background: radial-gradient(ellipse, rgba(216, 27, 96, 0.15) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
  animation: heroGlowPulse 4s ease-in-out infinite;
}

@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  padding: 0 20px;
}

.hero-logo {
  width: 100%;
  max-width: 400px;
  margin-bottom: 40px;
  filter: drop-shadow(0 0 30px rgba(216, 27, 96, 0.3));
  animation: heroFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero h1 {
  margin-bottom: 24px;
  background: linear-gradient(135deg, #FFFFFF 30%, var(--accent-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero-subline {
  font-size: clamp(16px, 2.5vw, 24px);
  color: var(--accent-gold);
  margin-bottom: 48px;
  font-weight: 700;
  letter-spacing: 5px;
  animation: heroFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
  text-shadow: 0 0 20px rgba(201, 162, 39, 0.3);
}

.hero .btn-primary-custom {
  animation: heroFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll-Indikator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator i {
  font-size: 24px;
  color: var(--accent-gold);
  opacity: 0.7;
  animation: scrollBounce 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(14px); opacity: 1; }
}

/* ===========================
   DEKORATIVE LICHTSTREIFEN
   =========================== */
.light-streak {
  position: absolute;
  width: 1px;
  height: 200px;
  background: linear-gradient(180deg, transparent, var(--accent-magenta), transparent);
  opacity: 0.15;
  z-index: 1;
  pointer-events: none;
  animation: lightStreakMove 8s ease-in-out infinite;
}

.light-streak:nth-child(1) { left: 15%; animation-delay: 0s; }
.light-streak:nth-child(2) { left: 45%; animation-delay: 2s; animation-duration: 10s; }
.light-streak:nth-child(3) { left: 75%; animation-delay: 4s; animation-duration: 12s; }
.light-streak:nth-child(4) { left: 90%; animation-delay: 1s; height: 150px; }

@keyframes lightStreakMove {
  0% { transform: translateY(-100%) rotate(15deg); opacity: 0; }
  20% { opacity: 0.15; }
  80% { opacity: 0.15; }
  100% { transform: translateY(100vh) rotate(15deg); opacity: 0; }
}

/* ===========================
   FLOATING ORB DECORATIONS
   =========================== */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
  animation: orbFloat 10s ease-in-out infinite;
}

.orb-magenta {
  background: rgba(216, 27, 96, 0.08);
  width: 300px;
  height: 300px;
}

.orb-gold {
  background: rgba(201, 162, 39, 0.06);
  width: 250px;
  height: 250px;
  animation-delay: 3s;
  animation-duration: 12s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.1); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* ===========================
   SECTIONS
   =========================== */
section {
  padding: var(--section-padding) 0;
  position: relative;
}

.bg-primary {
  background-color: var(--bg-primary);
}

.bg-secondary {
  background-color: var(--bg-secondary);
  position: relative;
}

/* Animierter Gradient-Trenner */
section + section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 27, 96, 0.3), rgba(201, 162, 39, 0.3), transparent);
  z-index: 2;
}

/* ===========================
   KEY FACTS – Glassmorphism
   =========================== */
.key-fact {
  text-align: center;
  padding: 48px 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* Gradient-Border beim Hover */
.key-fact::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(216, 27, 96, 0.3), transparent, rgba(201, 162, 39, 0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.key-fact:hover::before {
  opacity: 1;
}

.key-fact:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-color: transparent;
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(216, 27, 96, 0.1);
}

.key-fact-icon {
  font-size: 40px;
  margin-bottom: 24px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(201, 162, 39, 0.3));
}

.key-fact-number {
  font-family: var(--font-headline);
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 900;
  margin-bottom: 12px;
  display: block;
  line-height: 1;
  background: linear-gradient(135deg, #FFFFFF 60%, var(--accent-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

/* KEY FACT LABEL = WEISS */
.key-fact-label {
  font-size: 13px;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 700;
  opacity: 0.85;
}

/* ===========================
   VISION SECTION
   =========================== */
.vision-image {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: saturate(1.1);
}

.vision-image:hover {
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
  filter: saturate(1.2) brightness(1.05);
}

.vision-content {
  padding: 40px 50px;
}

.vision-text {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-secondary);
}

/* ===========================
   CTA SECTIONS – Dramatisch
   =========================== */
.cta-section {
  position: relative;
  padding: calc(var(--section-padding) * 1.2) 0;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at center bottom, rgba(216, 27, 96, 0.1) 0%, transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}

.cta-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 27, 96, 0.5), transparent);
  z-index: 2;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: clamp(32px, 5vw, 58px);
  margin-bottom: 20px;
}

/* ===========================
   PAGE HEADER
   =========================== */
.page-header {
  position: relative;
  height: 55vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  margin-top: 70px;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}

/* Ambient Glow */
.page-header::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 60vw;
  height: 40vh;
  background: radial-gradient(ellipse, rgba(216, 27, 96, 0.1) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.page-header-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.badge-custom {
  background: var(--glass-bg);
  color: var(--text-muted);
  padding: 8px 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: var(--radius-xl);
  display: inline-block;
  margin-top: 20px;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.badge-warning-custom {
  background: var(--gradient-gold);
  color: #000;
  padding: 8px 24px;
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-xl);
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 3px;
  box-shadow: var(--glow-gold), 0 4px 15px rgba(201, 162, 39, 0.3);
}

/* ===========================
   DATA BOX
   =========================== */
.data-box {
  background: var(--bg-card);
  border-left: 3px solid var(--accent-magenta);
  padding: 40px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.data-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(216, 27, 96, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.data-box::after {
  content: '';
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(216, 27, 96, 0.2), transparent);
}

.data-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.data-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.data-label {
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-gold);
  margin-bottom: 6px;
  opacity: 0.9;
}

.data-value {
  font-size: 22px;
  color: var(--text-primary);
  font-weight: 700;
  font-family: var(--font-headline);
}

/* ===========================
   TEAM GRID
   =========================== */
.team-placeholder {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  font-size: 12px;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.team-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  padding: 1px;
  background: linear-gradient(135deg, var(--accent-magenta), transparent, var(--accent-gold));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.team-placeholder:hover {
  border-color: transparent;
  background: rgba(216, 27, 96, 0.06);
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 15px 40px rgba(216, 27, 96, 0.15);
}

.team-placeholder:hover::before {
  opacity: 1;
}

/* ===========================
   FEATURE BOXES
   =========================== */
.feature-box {
  text-align: center;
  padding: 44px 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--glass-border);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Shimmer */
.feature-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
  transition: left 0.8s ease;
}

.feature-box:hover::after {
  left: 200%;
}

.feature-box:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-color: var(--border-hover);
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(216, 27, 96, 0.08);
}

.feature-icon {
  font-size: 44px;
  margin-bottom: 24px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 10px rgba(201, 162, 39, 0.3));
  transition: filter 0.4s ease;
}

.feature-box:hover .feature-icon {
  filter: drop-shadow(0 0 15px rgba(201, 162, 39, 0.5));
}

.feature-icon-circle {
  width: 84px;
  height: 84px;
  border: 2px solid var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 30px;
  color: var(--accent-gold);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.feature-icon-circle::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 39, 0.2);
  transition: all 0.5s ease;
  opacity: 0;
}

.feature-box:hover .feature-icon-circle {
  background: var(--gradient-gold);
  color: #000;
  border-color: transparent;
  box-shadow: 0 0 30px rgba(201, 162, 39, 0.4);
  transform: scale(1.1);
}

.feature-box:hover .feature-icon-circle::before {
  opacity: 1;
  inset: -10px;
}

.feature-title {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.feature-description {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ===========================
   SPONSORING PAKETE
   =========================== */
.package-card {
  background: var(--bg-card);
  padding: 48px 36px;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}

.package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 150px;
  opacity: 0.05;
  transition: all 0.5s ease;
}

/* Border-Glow */
.package-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(180deg, rgba(255,255,255,0.1), transparent 40%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.package-card:hover {
  transform: translateY(-15px);
  border-color: transparent;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.package-card:hover::before {
  opacity: 0.1;
}

.package-card:hover::after {
  opacity: 1;
}

.package-card.platin {
  border-top: 4px solid #E5E4E2;
}
.package-card.platin::before {
  background: linear-gradient(180deg, #E5E4E2, transparent);
}
.package-card.platin:hover {
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(229, 228, 226, 0.1);
}

.package-card.gold {
  border-top: 4px solid var(--accent-gold);
}
.package-card.gold::before {
  background: linear-gradient(180deg, var(--accent-gold), transparent);
}
.package-card.gold:hover {
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(201, 162, 39, 0.15);
}

.package-card.silber {
  border-top: 4px solid #A7A7AD;
}
.package-card.silber::before {
  background: linear-gradient(180deg, #A7A7AD, transparent);
}

.package-name {
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.package-price {
  font-family: var(--font-headline);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 900;
  background: var(--gradient-magenta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 10px rgba(216, 27, 96, 0.3));
}

.package-price-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 32px;
  letter-spacing: 1px;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.package-features li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 14px;
  transition: color 0.3s ease;
}

.package-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient-magenta);
  box-shadow: 0 0 6px rgba(216, 27, 96, 0.3);
}

.package-card:hover .package-features li {
  color: var(--text-primary);
}

.disclaimer {
  color: var(--text-secondary);
  font-size: 15px;
  text-align: center;
  font-style: italic;
  margin-top: 56px;
  line-height: 1.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding: 24px 20px;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

/* ===========================
   CONTACT BOX
   =========================== */
.contact-box {
  background: var(--bg-card);
  border-left: 3px solid var(--accent-magenta);
  padding: 40px;
  margin-top: 32px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.contact-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(216, 27, 96, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  padding: 14px 0;
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateX(8px);
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item i {
  font-size: 22px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-right: 18px;
  width: 32px;
  text-align: center;
  filter: drop-shadow(0 0 6px rgba(201, 162, 39, 0.3));
}

.contact-item-text {
  font-size: 15px;
  color: var(--text-secondary);
}

.contact-item-text strong {
  color: var(--text-primary);
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ===========================
   FOOTER
   =========================== */
footer {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 30px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-magenta), var(--accent-gold), transparent);
  opacity: 0.5;
}

.footer-logo {
  width: 100px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(216, 27, 96, 0.2));
}

.footer-text {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.8;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-muted) !important;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-links a:hover {
  color: var(--text-primary) !important;
  padding-left: 8px;
}

.footer-title {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.social-links a {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted) !important;
  font-size: 17px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--glass-bg);
}

.social-links a:hover {
  border-color: var(--accent-magenta);
  color: var(--accent-magenta) !important;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(216, 27, 96, 0.25);
  background: rgba(216, 27, 96, 0.08);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  margin-top: 48px;
  border-top: 1px solid var(--border-subtle);
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* ===========================
   REVEAL ANIMATION
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered reveal */
.reveal.active .col-md-4:nth-child(1),
.reveal.active .col-md-3:nth-child(1),
.reveal.active .col-6:nth-child(1) { transition-delay: 0s; }
.reveal.active .col-md-4:nth-child(2),
.reveal.active .col-md-3:nth-child(2),
.reveal.active .col-6:nth-child(2) { transition-delay: 0.12s; }
.reveal.active .col-md-4:nth-child(3),
.reveal.active .col-md-3:nth-child(3),
.reveal.active .col-6:nth-child(3) { transition-delay: 0.24s; }
.reveal.active .col-md-3:nth-child(4),
.reveal.active .col-6:nth-child(4) { transition-delay: 0.36s; }

/* ===========================
   PREMIUM H2 ACCENT LINE
   =========================== */
.text-center h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 24px;
  margin-bottom: 2rem;
}

.text-center h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-magenta);
  border-radius: 3px;
  box-shadow: 0 0 12px rgba(216, 27, 96, 0.4);
}

/* In text-center Kontexten: Section-Tag zentrieren */
.text-center .section-tag {
  padding-left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.text-center .section-tag::before {
  position: static;
  transform: none;
  width: 30px;
  flex-shrink: 0;
}

.text-center .section-tag::after {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--gradient-magenta);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(216, 27, 96, 0.5);
  flex-shrink: 0;
}

.text-center .section-tag.gold::after {
  background: var(--gradient-gold);
  box-shadow: 0 0 10px rgba(201, 162, 39, 0.5);
}

/* Absätze nach zentrierten Überschriften – mehr Luft */
.text-center p {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.9;
}

/* ===========================
   PREMIUM QUOTE
   =========================== */
blockquote {
  position: relative;
}

blockquote::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(201, 162, 39, 0.3);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 992px) {
  :root {
    --section-padding: 80px;
  }
  
  .hero-logo {
    max-width: 280px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }
  
  .hero-logo {
    max-width: 220px;
  }
  
  .navbar-nav .nav-link {
    margin-left: 0;
    padding: 0.75rem 0;
  }
  
  .vision-image {
    clip-path: none;
    border-radius: var(--radius-md);
    margin-bottom: 30px;
    min-height: 250px;
  }
  
  .vision-content {
    padding: 20px 0;
  }
  
  .page-header {
    height: 40vh;
  }
  
  .package-card {
    margin-bottom: 24px;
  }
  
  .feature-box {
    margin-bottom: 16px;
  }
  
  .data-box {
    margin-top: 30px;
  }
  
  .light-streak,
  .orb {
    display: none;
  }
}

@media (max-width: 576px) {
  .btn-primary-custom {
    padding: 14px 30px;
    font-size: 14px;
    width: 100%;
  }
  
  .section-tag {
    font-size: 11px;
    padding-left: 45px;
    letter-spacing: 3px;
  }
  
  .section-tag::before {
    width: 32px;
  }
  
  .key-fact {
    padding: 24px 16px;
  }
  
  .package-card {
    padding: 30px 20px;
  }
}

/* ===========================
   SCROLLBAR
   =========================== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: rgba(216, 27, 96, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-magenta);
}

/* ===========================
   FALLBACK: BLAU-VERNICHTUNG
   =========================== */
.navbar-toggler:focus,
.navbar-toggler:active {
  outline: none !important;
  box-shadow: none !important;
}

.collapse.show .nav-link,
body a,
body a:link,
body a:visited {
  color: inherit;
  text-decoration: none;
}

footer a,
footer a:link,
footer a:visited {
  color: var(--text-muted) !important;
}

footer a:hover {
  color: var(--text-primary) !important;
}

.footer-links a,
.footer-links a:link,
.footer-links a:visited {
  color: var(--text-muted) !important;
}

.footer-links a:hover {
  color: var(--text-primary) !important;
  padding-left: 8px;
}

.btn-primary-custom,
.btn-primary-custom:link,
.btn-primary-custom:visited,
.btn-primary-custom:active {
  color: #FFFFFF !important;
  text-decoration: none !important;
}

.contact-item a,
.contact-item a:link,
.contact-item a:visited {
  color: var(--accent-magenta) !important;
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--accent-magenta-light) !important;
}

.social-links a,
.social-links a:link,
.social-links a:visited {
  color: var(--text-muted) !important;
}

.social-links a:hover {
  color: var(--accent-magenta) !important;
}

/* NAVBAR ACTIVE = WEISS (absolut letzte Regel) */
.navbar-dark .navbar-nav .nav-link.active,
.navbar .navbar-nav .nav-link.active,
nav .nav-link.active {
  color: #FFFFFF !important;
}
