/* ========================================
   SG WBO JUGEND - MAIN STYLESHEET
   ======================================== */

/* ========== ROOT VARIABLES ========== */
:root {
  --primary: #0a1628;
  --primary-light: #12203a;
  --secondary: #1e3a5f;
  --accent: #FA0000;
  --accent-glow: rgba(230, 57, 70, 0.4);
  --cyan: #00d4ff;
  --red: #e63946;
  --green: #009A5B;
  --white: #e6e6e6;
  --gray: rgba(255, 255, 255, 0.6);

  --font-display: 'Bebas Neue', sans-serif;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--primary);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

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

video,
svg,
canvas {
  max-width: 100%;
  height: auto;
}

/* Overflow-Schutz für typische "Problem"-Elemente */
iframe,
pre,
code,
table {
  max-width: 100%;
}

pre,
code {
  overflow-x: auto;
}

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

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.green {
  color: var(--green);
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: var(--font-bold);
  line-height: var(--line-height-tight);
  color: var(--white);
  overflow-wrap: break-word;
  word-wrap: break-word;
}

h1 {
  font-size: var(--text-3xl);
  font-weight: var(--font-extrabold);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-6);
  line-height: 1.1;
}

h2 {
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-5);
  line-height: 1.2;
}

h3 {
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-4);
  line-height: 1.3;
}

h4 {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-3);
  line-height: 1.4;
}

h5 {
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-2);
  line-height: var(--line-height-normal);
}

h6 {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-2);
  line-height: var(--line-height-normal);
}

p {
  margin-bottom: var(--space-4);
  line-height: var(--line-height-relaxed);
  color: var(--text-primary);
  max-width: var(--max-width-prose);
  overflow-wrap: break-word;
  word-wrap: break-word;
}



/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(3deg);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 var(--accent-glow);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 30px 10px var(--accent-glow);
  }
}

@keyframes slideIn {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px var(--accent-glow);
  }
  50% {
    box-shadow: 0 0 40px var(--accent-glow), 0 0 60px var(--accent-glow);
  }
}

@keyframes regFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes regConfettiFall {
  0% {
    transform: translateY(-100px) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(720deg);
    opacity: 0;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate {
  animation: fadeInUp 0.6s ease-out forwards;
}

.delay-1 {
  animation-delay: 0.1s;
  opacity: 0;
}

.delay-2 {
  animation-delay: 0.2s;
  opacity: 0;
}

.delay-3 {
  animation-delay: 0.3s;
  opacity: 0;
}

/* ========== PRELOADER ========== */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
  transition: all 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-icon {
  width: 400px;
  height: auto;
  background: transparent !important;
  box-shadow: none !important;
  filter: none !important;
}

.preloader-icon img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, .35)) 
          drop-shadow(0 0 28px rgba(0, 255, 255, .35));
}

.preloader-text {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 5px;
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: var(--secondary);
  border-radius: 3px;
  overflow: hidden;
}

.preloader-progress {
  height: 100%;
  background: var(--accent);
  animation: slideIn 1.5s ease-out forwards;
  transform-origin: left;
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}

.header.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  padding: 15px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 65px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 70% 100%, 0 100%);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 2px;
}

.nav {
  display: none;
  gap: 30px;
  align-items: center;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray);
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--accent);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 12px 100%);
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--accent-glow);
}

.btn-green {
  background: var(--green);
  color: var(--white);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 12px 100%);
}

.btn-green:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(46, 204, 113, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 12px 100%);
}

.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(245, 166, 35, 0.1);
}

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

/* ========== HAMBURGER MENU ========== */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  transform-origin: center;
  opacity: 1;
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Navigation */
@media (max-width: 991px) {
  .nav {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    flex-direction: column;
    gap: 18px;
    padding: 25px 20px;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    overflow-y: auto;
    z-index: 999;
  }

  .nav.is-open {
    display: flex;
  }

  body.nav-open {
    overflow: hidden;
  }
}

@media (min-width: 992px) {
  .header-inner {
    position: relative;
  }

  .nav {
    display: flex;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .logo {
    position: relative;
    z-index: 2;
  }

  .hamburger {
    display: none;
  }
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  background: rgba(10, 12, 18, .65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
}

/* Brand */
.site-nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  padding: 6px 10px;
  border-radius: 12px;
  transition: transform .15s ease, background-color .15s ease;
}

.site-nav__brand:hover {
  background: rgba(255, 255, 255, .07);
  transform: translateY(-1px);
}

.site-nav__logo {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-weight: 800;
  letter-spacing: .5px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .06));
  border: 1px solid rgba(255, 255, 255, .14);
}

.site-nav__name {
  font-weight: 700;
  opacity: .95;
}

/* Menu */
.site-nav__menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav__link {
  position: relative;
  text-decoration: none;
  color: inherit;
  font-weight: 600;
  opacity: .9;
  padding: 10px 12px;
  border-radius: 12px;
  transition: background-color .15s ease, transform .15s ease, opacity .15s ease;
  white-space: nowrap;
}

.site-nav__link:hover {
  background: rgba(255, 255, 255, .07);
  opacity: 1;
  transform: translateY(-1px);
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 7px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(.6);
  transition: opacity .15s ease, transform .15s ease;
}

.site-nav__link:hover::after {
  opacity: .35;
  transform: scaleX(1);
}

/* CTA */
.site-nav__cta {
  margin-left: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  padding: 10px 14px;
  border-radius: 14px;
  color: #0b0f18;
  background: linear-gradient(135deg, #ffd86b, #ffb84d);
  box-shadow: 0 10px 18px rgba(255, 184, 77, .25);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  white-space: nowrap;
}

.site-nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(255, 184, 77, .28);
  filter: brightness(1.02);
}

.site-nav__arrow {
  font-weight: 900;
}

/* Toggle (mobile) */
.site-nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
  border-radius: 14px;
  padding: 10px;
  cursor: pointer;
}

.site-nav__toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, .9);
  margin: 6px 0;
  transition: transform .2s ease, opacity .2s ease;
}

/* Responsive */
@media (max-width: 900px) {
  /* Wichtig: Verhindert, dass fixed-Elemente (Bottom-Bar) an einem gefilterten/transformierten Header „kleben“ */
  .header,
  .header.scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    filter: none;
    transform: none;
  }

  /* Extra Schutz gegen horizontales Überlaufen */
  .header,
  .header-inner,
  .site-nav,
  .site-nav__menu {
    max-width: 100vw;
  }

  /* Header bleibt oben fix (via .header). Oben nur Logo/Brand – schlanker Look */
  .site-nav {
    padding: 0;
    gap: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-nav__brand {
    padding: 6px 0;
  }

  .site-nav__logo {
    width: 46px;
    height: 46px;
  }

  /* Mobile: Kein Toggle (Menü ist als Bottom-Bar immer sichtbar) */
  .site-nav__toggle {
    display: none;
  }

  /* Mobile: Menü oben ausblenden – wir nutzen unten die .mobile-nav */
  .site-nav__menu {
    display: none;
  }

  /* Mobile: Bottom-Navigation aktiv */
  .mobile-nav {
    display: flex;
  }

  /* Platz für die Bottom-Navigation */
  body {
    padding-bottom: calc(86px + env(safe-area-inset-bottom));
  }
}

/* Optional: current/active link */
.site-nav__link.is-active {
  background: rgba(255, 255, 255, .08);
  opacity: 1;
}

/* ========== HERO SECTION ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(10, 22, 40, 0.95) 0%, 
    rgba(10, 22, 40, 0.7) 50%, 
    rgba(10, 22, 40, 0.9) 100%);
}

.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  opacity: 0.08;
}

.shape-1 {
  width: 500px;
  height: 500px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  top: -100px;
  right: -100px;
  animation: float 10s ease-in-out infinite;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: var(--cyan);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  bottom: 10%;
  left: -50px;
  animation: float 8s ease-in-out infinite reverse;
}

.shape-3 {
  width: 150px;
  height: 150px;
  border: 2px solid var(--accent);
  top: 30%;
  left: 20%;
  transform: rotate(45deg);
  animation: float 6s ease-in-out infinite;
}

.hero-diagonal {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 120px;
  background: var(--primary);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 150px 0 200px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.3);
  padding: 12px 24px;
  margin-bottom: 30px;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
  animation: fadeInLeft 0.8s ease-out;
}

.hero-tag-dot {
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero-tag-text {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 9rem);
  line-height: 0.9;
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-title .line {
  display: block;
}

.hero-title .outline {
  -webkit-text-stroke: 2px var(--white);
  -webkit-text-fill-color: transparent;
}

.hero-title .accent {
  color: var(--accent);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--gray);
  max-width: 550px;
  line-height: 1.8;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.hero-scroll {
  position: absolute;
  bottom: 150px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
}

.hero-scroll-text {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gray);
  margin-bottom: 15px;
}

.hero-scroll-line {
  width: 2px;
  height: 50px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  margin: 0 auto;
  animation: pulse 2s ease-in-out infinite;
}

/* ========== STORYTELLING INTRO ========== */
.story-intro {
  padding: 120px 0;
  position: relative;
}

.story-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

@media (min-width: 992px) {
  .story-intro-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.section-tag-line {
  width: 50px;
  height: 2px;
  background: var(--accent);
}

.section-tag-text {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
  margin-bottom: 30px;
}

.story-text {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 25px;
}

.story-text strong {
  color: var(--white);
}

.story-highlight {
  background: var(--primary-light);
  border-left: 4px solid var(--accent);
  padding: 25px 30px;
  margin: 30px 0;
  font-style: italic;
  color: var(--gray);
}

.story-image {
  position: relative;
}

.story-image-wrapper {
  clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
  overflow: hidden;
}

.story-image-wrapper img {
  width: 100%;
  height: 450px;
  object-fit: contain;
  transition: all 0.6s ease;
}

.story-image-wrapper:hover img {
  transform: scale(1.05);
}

.story-badge {
  position: absolute;
  bottom: -30px;
  left: 30px;
  background: var(--accent);
  color: var(--primary);
  padding: 25px 35px;
  clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 100%, 15px 100%);
  z-index: 2;
}

.story-badge-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--white);
}

.story-badge-text {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
}

.story-year-bg {
  position: absolute;
  top: -40px;
  right: -20px;
  font-family: var(--font-display);
  font-size: 15rem;
  color: var(--green);
  opacity: 0.09;
  line-height: 1;
  z-index: -1;
}

/* ========== STATS SECTION ========== */
.stats {
  padding: 100px 0;
  background: var(--primary-light);
  position: relative;
}

.stats::before,
.stats::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--primary);
}

.stats::before {
  top: 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
}

.stats::after {
  bottom: 0;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.stat-item:last-child::after {
  display: none;
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray);
  margin-top: 10px;
}

/* ========== TIMELINE SECTION ========== */
.timeline {
  padding: 120px 0;
  position: relative;
}

.timeline-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 80px;
}

.timeline-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--accent), var(--secondary), var(--accent));
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .timeline-line {
    left: 15px;
  }
}

.timeline-item {
  position: relative;
  padding: 40px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 768px) {
  .timeline-item {
    grid-template-columns: 1fr;
    padding-left: 50px;
    gap: 20px;
  }
}

.timeline-item:nth-child(odd) .timeline-content {
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
  order: 2;
}

.timeline-item:nth-child(even) .timeline-image {
  order: 1;
}

@media (max-width: 768px) {
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    text-align: left;
    order: unset;
  }

  .timeline-item:nth-child(even) .timeline-image {
    order: unset;
  }
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50%;
  border: 4px solid var(--primary);
  z-index: 2;
  animation: glow 3s ease-in-out infinite;
}

@media (max-width: 768px) {
  .timeline-dot {
    left: 15px;
  }
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 10px;
}

.timeline-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.timeline-text {
  color: var(--gray);
  line-height: 1.8;
}

.timeline-image {
  clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
  overflow: hidden;
}

.timeline-image img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  transition: all 0.5s ease;
}

.timeline-image:hover img {
  transform: scale(1.1);
}

/* ========== AGE SELECTOR ========== */
.age-section {
  padding: 120px 0;
  background: var(--primary-light);
  position: relative;
}

.age-section::before {
  content: 'FINDE DEIN TEAM';
  font-family: var(--font-display);
  font-size: clamp(3rem, 12vw, 10rem);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  opacity: 0.02;
  pointer-events: none;
}

.age-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
}

.age-selector {
  background: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 50px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.age-label {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.age-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.age-btn {
  padding: 20px 25px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
  font-family: var(--font-body);
}

.age-btn:hover {
  border-color: var(--accent);
  background: rgba(245, 166, 35, 0.1);
}

.age-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
  transform: scale(1.05);
}

.age-btn-age {
  font-family: var(--font-display);
  font-size: 1.8rem;
  display: block;
  line-height: 1;
}

.age-btn-team {
  font-size: 0.75rem;
  opacity: 0.7;
  margin-top: 5px;
  display: block;
}

.age-result {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-light) 100%);
  padding: 40px;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, calc(100% - 20px) 100%, 20px 100%);
  animation: fadeInUp 0.5s ease-out;
}

.age-result-icon {
  font-size: 4rem;
  margin-bottom: 15px;
}

.age-result-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.age-result-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.age-result-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--gray);
}

.age-result-meta span strong {
  color: var(--white);
}

/* ========== TEAMS GRID ========== */
.teams {
  padding: 120px 0;
}

.teams-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.teams-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.team-card {
  background: var(--primary-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.4s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  border-color: rgba(245, 166, 35, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.team-card:hover::before {
  transform: scaleX(1);
}

.team-card-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

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

.team-card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent);
  color: var(--white);
  padding: 8px 16px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 8px 100%);
}

.team-card-content {
  padding: 30px;
}

.team-card-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.team-card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.team-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 20px;
}

.team-card-text {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.team-card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.team-card-link:hover {
  gap: 15px;
}

/* ========== TRAINERS ========== */
.trainers {
  padding: 120px 0;
  background: var(--primary-light);
}

.trainers-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.trainers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.trainer-card {
  background: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.trainer-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(245, 166, 35, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: all 0.4s ease;
}

.trainer-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
}

.trainer-card:hover::after {
  opacity: 1;
}

.trainer-avatar {
  width: 130px;
  height: 130px;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--accent);
  box-shadow: 0 0 30px var(--accent-glow);
  position: relative;
  z-index: 1;
}

.trainer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trainer-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
  position: relative;
  z-index: 1;
}

.trainer-role {
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.trainer-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.75rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.trainer-quote {
  font-style: italic;
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.trainer-quote::before {
  content: '"';
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.3;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

/* ========== FAQ ========== */
.faq {
  padding: 120px 0;
}

.faq-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--primary-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(245, 166, 35, 0.3);
}

.faq-question {
  width: 100%;
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  text-align: left;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--accent);
  transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-text {
  padding: 0 30px 25px;
  color: var(--gray);
  line-height: 1.8;
}

/* ========== CTA SECTION ========== */
.cta {
  padding: 150px 0;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(10, 22, 40, 0.95) 0%, 
    rgba(30, 58, 95, 0.9) 100%);
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-icon {
  font-size: 5rem;
  margin-bottom: 30px;
  animation: float 4s ease-in-out infinite;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  margin-bottom: 25px;
}

.cta-text {
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 40px;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  text-align: center;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--primary-light);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-brand-icon {
  width: 50px;
  height: 50px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 70% 100%, 0 100%);
}

.footer-brand-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 2px;
}

.footer-desc {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 25px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--gray);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

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

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 45px;
  height: 45px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 8px 100%);
}

.footer-social a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--gray);
  text-align: center;
}

/* ========== MOBILE NAV ========== */
.mobile-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;

  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;

  background: rgba(10, 12, 18, .92);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 -12px 26px rgba(0, 0, 0, .35);

  z-index: 3000;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 4px;

  padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
  overscroll-behavior-x: contain;

  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.mobile-nav::-webkit-scrollbar {
  display: none;
}

.mobile-nav-item {
  flex: 0 0 76px;
  width: 76px;
  min-width: 76px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
  user-select: none;

  padding: 10px 6px;
  border-radius: 14px;

  color: var(--gray);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;

  transition: background-color .15s ease, color .15s ease, transform .15s ease;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.mobile-nav-icon {
  font-size: 1.4rem;
  margin-bottom: 4px;
  line-height: 1;
}

.mobile-nav-label {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.1;
}

@media (min-width: 901px) {
  .mobile-nav {
    display: none;
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: calc(86px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 420px) {
  .mobile-nav {
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
  }

  .mobile-nav-item {
    flex-basis: 72px;
    width: 72px;
    min-width: 72px;
    padding: 8px 6px;
  }

  .mobile-nav-item {
    font-size: 0.62rem;
    letter-spacing: 0.6px;
  }

  .mobile-nav-icon {
    font-size: 1.25rem;
    margin-bottom: 2px;
  }
}

/* ========== PAGE SPECIFIC STYLES ========== */

/* ========== COMMUNICATION GRID (Kontrast) ========== */
.comm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.comm-card {
  background: rgba(18, 32, 58, 0.92); /* stärkerer Kontrast */
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
  padding: 22px 22px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}

.comm-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.0) 55%);
  pointer-events: none;
}

.comm-card:hover {
  transform: translateY(-4px);
  border-color: rgba(250, 0, 0, 0.35);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
}

.comm-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  margin-bottom: 14px;
}

.comm-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.96);
  margin-bottom: 10px;
}

.comm-text {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 600px) {
  .comm-card {
    padding: 18px;
  }
  .comm-title {
    font-size: 1rem;
  }
  .comm-text {
    font-size: 0.95rem;
  }
}

/* Contact, Info, Schedule Pages */
.page-header {
  padding: 150px 0 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  position: relative;
  text-align: center;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--primary);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.page-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.3);
  padding: 10px 20px;
  margin-bottom: 20px;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
}

.page-tag-text {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 1;
  margin-bottom: 20px;
}

.page-subtitle {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

.back-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}

.back-link:hover {
  color: var(--accent);
}

/* Form Elements */
.form-group {
  margin-bottom: 25px;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: var(--gray);
}

.form-label span {
  color: var(--red);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 15px 20px;
  background: var(--primary);
  border: 2px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-select {
  cursor: pointer;
}

.form-select option {
  background: var(--primary);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Registration Page */
.registration-page .container {
  max-width: 1200px;
}

.registration-page .form-container {
  max-width: 700px;
  margin: 0 auto;
  background: var(--primary-light);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 50px;
}

.progress-steps {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  position: relative;
}

.progress-steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.progress-step-number {
  width: 40px;
  height: 40px;
  background: var(--secondary);
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  transition: all 0.3s ease;
}

.progress-step.active .progress-step-number,
.progress-step.completed .progress-step-number {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.progress-step.completed .progress-step-number::after {
  content: '✓';
}

.progress-step-label {
  font-size: 0.8rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.progress-step.active .progress-step-label {
  color: var(--accent);
}

.form-step {
  display: none;
  animation: regFadeIn 0.5s ease;
}

.form-step.active {
  display: block;
}

.form-step-title {
  font-family: var(--font-display);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 10px;
}

.form-step-subtitle {
  text-align: center;
  color: var(--gray);
  margin-bottom: 40px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  cursor: pointer;
}

.form-checkbox input {
  display: none;
}

.form-checkbox-box {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: var(--primary);
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.form-checkbox input:checked + .form-checkbox-box {
  background: var(--accent);
  border-color: var(--accent);
}

.form-checkbox input:checked + .form-checkbox-box::after {
  content: '✓';
  color: var(--white);
  font-weight: bold;
}

.form-checkbox-text {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.5;
}

.form-checkbox-text a {
  color: var(--accent);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
}

.team-option {
  background: var(--primary);
  border: 2px solid rgba(255, 255, 255, 0.1);
  padding: 20px 15px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.team-option:hover {
  border-color: var(--accent);
}

.team-option.selected {
  border-color: var(--accent);
  background: rgba(245, 166, 35, 0.1);
}

.team-option-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.team-option-name {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-option-age {
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 5px;
}

.form-buttons {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
}

.success-screen {
  text-align: center;
  padding: 40px 0;
}

.success-icon {
  font-size: 6rem;
  margin-bottom: 30px;
  animation: regBounce 1s ease infinite;
}

.success-title {
  font-family: var(--font-display);
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--green);
}

.success-text {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 30px;
  line-height: 1.8;
}

.success-details {
  background: var(--primary);
  padding: 30px;
  margin: 30px 0;
  text-align: left;
}

.success-details h4 {
  font-family: var(--font-heading);
  color: var(--accent);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.success-details p {
  color: var(--gray);
  margin-bottom: 10px;
}

.success-details strong {
  color: var(--white);
}

.confetti {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

.confetti-piece {
  position: absolute;
  width: 10px;
  height: 10px;
  animation: regConfettiFall 3s ease-out forwards;
}

.info-box {
  background: rgba(0, 212, 255, 0.1);
  border-left: 4px solid var(--cyan);
  padding: 20px;
  margin: 30px 0;
}

.info-box-title {
  font-family: var(--font-heading);
  color: var(--cyan);
  margin-bottom: 10px;
}

.info-box-text {
  color: var(--gray);
  font-size: 0.9rem;
}

/* Schedule/Program Page */
.filter-section {
  padding: 60px 0 40px;
  background: var(--primary-light);
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.filter-tab {
  padding: 12px 25px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
}

.filter-tab:hover {
  border-color: var(--accent);
}

.filter-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
}

.schedule-section {
  padding: 60px 0 120px;
}

.location-group {
  margin-bottom: 60px;
}

.location-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.location-icon {
  width: 60px;
  height: 60px;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 70% 100%, 0 100%);
}

.location-title {
  font-family: var(--font-display);
  font-size: 2rem;
}

.location-address {
  color: var(--gray);
  font-size: 0.9rem;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 25px;
}

.schedule-card {
  background: var(--primary-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: all 0.4s ease;
}

.schedule-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.schedule-card-header {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-light) 100%);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.schedule-card-icon {
  font-size: 2.5rem;
}

.schedule-card-team {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.schedule-card-age {
  font-size: 0.8rem;
  color: var(--accent);
}

.schedule-card-body {
  padding: 25px;
}

.schedule-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.schedule-item:last-child {
  border-bottom: none;
}

.schedule-day {
  min-width: 100px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--accent);
}

.schedule-time {
  font-size: 1.1rem;
  font-weight: 600;
}

.schedule-trainer {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 5px;
}

.schedule-card-footer {
  background: var(--primary);
  padding: 15px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.schedule-card-link {
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.schedule-card-link:hover {
  gap: 15px;
}

/* Info/Content Pages */
.content-section {
  padding: 80px 0;
}

.content-text {
  color: var(--gray);
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 25px;
}

.content-text strong {
  color: var(--white);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.info-card {
  background: var(--primary-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 35px;
  transition: all 0.3s ease;
}

.info-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
}

.info-card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.info-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.info-card-text {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

.checklist {
  background: var(--primary-light);
  padding: 40px;
  margin: 40px 0;
  border-left: 4px solid var(--accent);
}

.checklist-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  color: var(--accent);
}

.checklist-items {
  list-style: none;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.checklist-item:last-child {
  border-bottom: none;
}

.checklist-icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--white);
  font-weight: bold;
}

.checklist-text {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.6;
}

.checklist-text strong {
  color: var(--white);
}

/* Contact Page */
.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: var(--primary-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: var(--accent);
  transform: translateX(5px);
}

.contact-card-icon {
  font-size: 2rem;
  min-width: 50px;
}

.contact-card-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
  margin-bottom: 5px;
}

.contact-card-value {
  font-size: 1.1rem;
  color: var(--white);
}

.contact-card-value a {
  color: var(--accent);
  transition: all 0.3s ease;
}

.contact-card-value a:hover {
  opacity: 0.8;
}

.contact-form-wrapper {
  background: var(--primary-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px;
}

.form-title {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
}

/* Map Section */
.map-section {
  padding: 80px 0;
}

.map-header {
  text-align: center;
  margin-bottom: 40px;
}

.map-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.map-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.map-card {
  background: var(--primary-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.map-card:hover {
  border-color: var(--accent);
}

.map-card-image {
  height: 200px;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.map-card-image video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.map-card-content {
  padding: 25px;
}

.map-card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.map-card-address {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.map-card-link {
  color: var(--accent);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.map-card-link:hover {
  gap: 12px;
}

/* Simple Header Variant */
.header-simple {
  background: rgba(10, 22, 40, 0.95);
  position: relative;
  padding: 20px 0;
}

.header-simple .nav,
.header-simple .nav-link {
  display: none !important;
}

/* ========================================
   GALLERY ERGÄNZUNGEN FÜR STYLE_FIXED.CSS
   Diese Styles zu style_fixed.css hinzufügen
   ======================================== */

/* ========== GALLERY SECTION ========== */
.gallery-section {
  padding: 40px 0 120px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--primary-light);
  transition: all 0.4s ease;
}

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

@media (max-width: 768px) {
  .gallery-item.featured {
    grid-column: span 1;
    grid-row: span 1;
  }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-item.featured img {
  min-height: 520px;
}

@media (max-width: 768px) {
  .gallery-item.featured img {
    min-height: 250px;
  }
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.9) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-category {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 10px;
}

.gallery-item-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
}

.gallery-item-date {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 5px;
}

.gallery-item-zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 60px;
  height: 60px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  z-index: 2;
}

.gallery-item:hover .gallery-item-zoom {
  transform: translate(-50%, -50%) scale(1);
}

/* Video Item */
.gallery-item.video::before {
  content: '▶';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(250, 0, 0, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  z-index: 2;
  transition: all 0.3s ease;
}

.gallery-item.video:hover::before {
  transform: translate(-50%, -50%) scale(1.1);
}

/* ========== LIGHTBOX ========== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
  height: 40px;
  background: var(--accent);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  transition: all 0.3s ease;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 70% 100%, 0 100%);
}

.lightbox-close:hover {
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  transition: all 0.3s ease;
}

.lightbox-nav:hover {
  background: var(--accent);
  color: var(--white);
}

.lightbox-prev {
  left: -70px;
}

.lightbox-next {
  right: -70px;
}

@media (max-width: 768px) {
  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }
}

.lightbox-info {
  text-align: center;
  margin-top: 20px;
}

.lightbox-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
}

.lightbox-date {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 5px;
}

/* ========== LOAD MORE ========== */
.load-more {
  text-align: center;
  margin-top: 60px;
}

