﻿/*
Theme Name: NO LIMIT Kletterhalle
Theme URI: https://kletterhalle-leipzig.de
Author: ZATO
Author URI: https://www.zato-bungee.de
Description: Custom WordPress Theme fuer Kletterhalle NO LIMIT Leipzig. Dark Theme mit Coral Akzent, mobile-first Design.
Version: 1.0.1
Requires at least: 6.0
Tested up to: 6.8.3
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nolimit
Tags: custom-menu, custom-logo, featured-images, dark-mode
*/

/* ==========================================================================
   Kletterhalle NO LIMIT Leipzig - Stylesheet
   Design System: Dark Theme mit Coral Akzent
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
  /* === BASE FARBEN (nicht direkt verwenden!) === */
  --coral: #F49B31;
  --coral-glow: #F6AC4D;
  --blue: #4A90FF;
  --blue-glow: #6FA8FF;
  --green: #4ADE80;
  --green-glow: #6FE89A;
  --gold: #FFB84A;
  --gold-glow: #FFC86F;
  --purple: #A855F7;
  --purple-glow: #BB77F9;

  --dark-900: #0A0A0B;
  --dark-800: #121214;
  --dark-700: #1A1A1E;
  --dark-600: #242429;
  --dark-500: #2E2E35;
  --gray-400: #6B6B76;
  --gray-300: #9090A0;
  --gray-200: #B8B8C8;
  --white: #FAFAFA;
  --success: #4ADE80;

  /* === SEMANTISCHE VARIABLEN (diese verwenden!) === */
  --accent: var(--coral);
  --accent-glow: var(--coral-glow);
  --accent-rgb: 244, 155, 49;

  --bg-dark: var(--dark-900);
  --bg-primary: var(--dark-900);
  --bg-secondary: var(--dark-800);
  --bg-elevated: var(--dark-700);
  --bg-card: var(--dark-600);

  --text-primary: var(--white);
  --text-secondary: var(--gray-300);
  --text-muted: var(--gray-400);
  --text-on-accent: var(--dark-900);

  /* Typografie */
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Outfit', sans-serif;

  /* Borders */
  --border-color: rgba(255, 255, 255, 0.1);
  --border-color-strong: rgba(255, 255, 255, 0.2);

  /* Shadows fuer Dark Mode */
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-card-hover: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* ==========================================================================
   FARBSCHEMA-SYSTEM - Theme Varianten
   Aktivierung via URL: ?themes oder Body-Klasse
   ========================================================================== */

/* --- Theme 1: Dark + Coral (Standard) --- */
[data-theme="coral"], .theme-coral {
  --accent: var(--coral);
  --accent-glow: var(--coral-glow);
  --accent-rgb: 244, 155, 49;
}

/* --- Theme 2: Dark + Blue --- */
[data-theme="blue"], .theme-blue {
  --accent: var(--blue);
  --accent-glow: var(--blue-glow);
  --accent-rgb: 74, 144, 255;
}

/* --- Theme 3: Dark + Green --- */
[data-theme="green"], .theme-green {
  --accent: var(--green);
  --accent-glow: var(--green-glow);
  --accent-rgb: 74, 222, 128;
}

/* --- Theme 4: Dark + Gold --- */
[data-theme="gold"], .theme-gold {
  --accent: var(--gold);
  --accent-glow: var(--gold-glow);
  --accent-rgb: 255, 184, 74;
}

/* --- Theme 5: Dark + Purple --- */
[data-theme="purple"], .theme-purple {
  --accent: var(--purple);
  --accent-glow: var(--purple-glow);
  --accent-rgb: 168, 85, 247;
}

/* --- Theme 6: Light + Coral --- */
[data-theme="light"], .theme-light {
  --accent: #D88A28; /* Etwas dunkler fuer besseren Kontrast auf hellem Hintergrund */
  --accent-glow: var(--coral);
  --accent-rgb: 216, 138, 40;

  --bg-dark: #F5F5F7;
  --bg-primary: #F5F5F7;
  --bg-secondary: #FFFFFF;
  --bg-elevated: #EAEAEC;
  --bg-card: #FFFFFF;

  --text-primary: #4D4D4D;
  --text-secondary: #6B6B76;
  --text-muted: #9090A0;
  --text-on-accent: #FFFFFF;

  /* Override dark colors for light mode */
  --dark-900: #F5F5F7;
  --dark-800: #FFFFFF;
  --dark-700: #EAEAEC;
  --dark-600: #D4D4D8;
  --dark-500: #C4C4C8;
  --white: #4D4D4D;
  --gray-300: #6B6B76;
  --gray-400: #9090A0;

  /* WICHTIG: Sichtbare Borders im Light Mode */
  --border-color: rgba(0, 0, 0, 0.1);
  --border-color-strong: rgba(0, 0, 0, 0.2);

  /* Shadows fuer Light Mode - WICHTIG fuer Karten-Sichtbarkeit */
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-card-hover: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/* --- Theme 7: Light + Blue --- */
[data-theme="light-blue"], .theme-light-blue {
  --accent: #2563EB;
  --accent-glow: #3B82F6;
  --accent-rgb: 37, 99, 235;

  --bg-dark: #F0F9FF;
  --bg-primary: #F0F9FF;
  --bg-secondary: #FFFFFF;
  --bg-elevated: #E0F2FE;
  --bg-card: #FFFFFF;

  --text-primary: #4D4D4D;
  --text-secondary: #6B6B76;
  --text-muted: #9090A0;
  --text-on-accent: #FFFFFF;

  --dark-900: #F0F9FF;
  --dark-800: #FFFFFF;
  --dark-700: #E0F2FE;
  --dark-600: #BAE6FD;
  --white: #4D4D4D;
  --gray-300: #6B6B76;
  --gray-400: #9090A0;
}

/* --- Theme 8: Light + Green --- */
[data-theme="light-green"], .theme-light-green {
  --accent: #16A34A;
  --accent-glow: #22C55E;
  --accent-rgb: 22, 163, 74;

  --bg-dark: #F0FDF4;
  --bg-primary: #F0FDF4;
  --bg-secondary: #FFFFFF;
  --bg-elevated: #DCFCE7;
  --bg-card: #FFFFFF;

  --text-primary: #4D4D4D;
  --text-secondary: #6B6B76;
  --text-muted: #9090A0;
  --text-on-accent: #FFFFFF;

  --dark-900: #F0FDF4;
  --dark-800: #FFFFFF;
  --dark-700: #DCFCE7;
  --dark-600: #BBF7D0;
  --white: #4D4D4D;
  --gray-300: #6B6B76;
  --gray-400: #9090A0;
}

/* --- Theme 9: Light + Purple --- */
[data-theme="light-purple"], .theme-light-purple {
  --accent: #7C3AED;
  --accent-glow: #8B5CF6;
  --accent-rgb: 124, 58, 237;

  --bg-dark: #FAF5FF;
  --bg-primary: #FAF5FF;
  --bg-secondary: #FFFFFF;
  --bg-elevated: #F3E8FF;
  --bg-card: #FFFFFF;

  --text-primary: #4D4D4D;
  --text-secondary: #6B6B76;
  --text-muted: #9090A0;
  --text-on-accent: #FFFFFF;

  --dark-900: #FAF5FF;
  --dark-800: #FFFFFF;
  --dark-700: #F3E8FF;
  --dark-600: #E9D5FF;
  --white: #4D4D4D;
  --gray-300: #6B6B76;
  --gray-400: #9090A0;
}

/* ==========================================================================
   Light Theme Karten-Fixes
   Sichtbare Shadows statt unsichtbare Borders
   ========================================================================== */

[data-theme="light"] .kurs-card,
[data-theme="light"] .preise-card,
[data-theme="light"] .kurse-highlight-card,
[data-theme="light"] .contact-cta-card,
[data-theme="light"] .info-card,
[data-theme="light-blue"] .kurs-card,
[data-theme="light-green"] .kurs-card,
[data-theme="light-purple"] .kurs-card {
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-color);
}

[data-theme="light"] .kurs-card:hover,
[data-theme="light"] .preise-card:hover,
[data-theme="light"] .info-card:hover,
[data-theme="light-blue"] .kurs-card:hover,
[data-theme="light-green"] .kurs-card:hover,
[data-theme="light-purple"] .kurs-card:hover {
  box-shadow: var(--shadow-card-hover);
}

[data-theme="light"] .kurs-highlight-card,
[data-theme="light-blue"] .kurs-highlight-card,
[data-theme="light-green"] .kurs-highlight-card {
  border: 2px solid var(--accent);
  box-shadow: 0 8px 30px rgba(var(--accent-rgb), 0.15);
}

/* Badge-Farbe im Light Mode anpassen */
[data-theme="light"] .kurs-badge,
[data-theme="light-blue"] .kurs-badge,
[data-theme="light-green"] .kurs-badge {
  color: #ffffff;
}

/* Tabellen-Borders im Light Mode */
[data-theme="light"] .preise-tabelle tr,
[data-theme="light-blue"] .preise-tabelle tr {
  border-bottom: 1px solid var(--border-color);
}

/* Filter-Tabs im Light Mode */
[data-theme="light"] .filter-tab:not(.active),
[data-theme="light-blue"] .filter-tab:not(.active) {
  background: var(--bg-card);
  border-color: var(--border-color);
}

/* ==========================================================================
   Preise-Seite Light Mode Fixes
   ========================================================================== */

/* Pricing Cards */
[data-theme="light"] .pricing-card,
[data-theme="light-blue"] .pricing-card,
[data-theme="light-green"] .pricing-card,
[data-theme="light-coral"] .pricing-card,
[data-theme="light-purple"] .pricing-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .pricing-card:hover,
[data-theme="light-blue"] .pricing-card:hover,
[data-theme="light-green"] .pricing-card:hover,
[data-theme="light-coral"] .pricing-card:hover,
[data-theme="light-purple"] .pricing-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

[data-theme="light"] .pricing-card.highlighted,
[data-theme="light-blue"] .pricing-card.highlighted,
[data-theme="light-green"] .pricing-card.highlighted,
[data-theme="light-coral"] .pricing-card.highlighted,
[data-theme="light-purple"] .pricing-card.highlighted {
  border: 2px solid var(--accent);
  box-shadow: 0 4px 20px rgba(var(--accent-rgb), 0.15);
}

/* Calculator Card */
[data-theme="light"] .calculator-card,
[data-theme="light-blue"] .calculator-card,
[data-theme="light-green"] .calculator-card,
[data-theme="light-coral"] .calculator-card,
[data-theme="light-purple"] .calculator-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* Booking Summary */
[data-theme="light"] .booking-summary,
[data-theme="light-blue"] .booking-summary,
[data-theme="light-green"] .booking-summary,
[data-theme="light-coral"] .booking-summary,
[data-theme="light-purple"] .booking-summary {
  background: rgba(var(--accent-rgb), 0.08);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
}

/* Accordion */
[data-theme="light"] .accordion,
[data-theme="light-blue"] .accordion,
[data-theme="light-green"] .accordion,
[data-theme="light-coral"] .accordion,
[data-theme="light-purple"] .accordion {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .accordion-header,
[data-theme="light-blue"] .accordion-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* Calculator Accordion Light Mode */
[data-theme="light"] .calculator-accordion-header,
[data-theme="light-blue"] .calculator-accordion-header,
[data-theme="light-green"] .calculator-accordion-header,
[data-theme="light-coral"] .calculator-accordion-header,
[data-theme="light-purple"] .calculator-accordion-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--text-primary);
}

/* Activity Tabs */
[data-theme="light"] .activity-tab,
[data-theme="light-blue"] .activity-tab,
[data-theme="light-green"] .activity-tab,
[data-theme="light-coral"] .activity-tab,
[data-theme="light-purple"] .activity-tab {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .activity-tab.active,
[data-theme="light-blue"] .activity-tab.active,
[data-theme="light-green"] .activity-tab.active {
  background: var(--accent);
  border-color: var(--accent);
}

/* Stepper Rows */
[data-theme="light"] .stepper-row,
[data-theme="light-blue"] .stepper-row,
[data-theme="light-green"] .stepper-row {
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Toggle Buttons */
[data-theme="light"] .toggle-btn,
[data-theme="light-blue"] .toggle-btn,
[data-theme="light-green"] .toggle-btn {
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .toggle-btn.active,
[data-theme="light-blue"] .toggle-btn.active,
[data-theme="light-green"] .toggle-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

/* Rental Options */
[data-theme="light"] .rental-option,
[data-theme="light-blue"] .rental-option,
[data-theme="light-green"] .rental-option {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Detail Tables */
[data-theme="light"] .detail-table,
[data-theme="light-blue"] .detail-table {
  border: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .detail-table th,
[data-theme="light-blue"] .detail-table th {
  background: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .detail-table td,
[data-theme="light-blue"] .detail-table td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* --------------------------------------------------------------------------
   Reset & Base Styles
   -------------------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}


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

img {
  max-width: 100%;
  height: auto;
}

/* --------------------------------------------------------------------------
   Lucide Icons - Globale Styles
   -------------------------------------------------------------------------- */
[data-lucide] {
  width: 1em;
  height: 1em;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  vertical-align: -0.125em;
  display: inline-block;
}

/* Icon-Container Groessen */
.bento-icon [data-lucide],
.card-icon [data-lucide],
.info-icon [data-lucide],
.extras-icon [data-lucide] {
  width: 2.5rem;
  height: 2.5rem;
  stroke: var(--accent);
  color: var(--accent);
}

.tab-icon [data-lucide] {
  width: 1.5rem;
  height: 1.5rem;
}

.stepper-icon [data-lucide] {
  width: 1.25rem;
  height: 1.25rem;
}

.trust-icon [data-lucide] {
  width: 2rem;
  height: 2rem;
  color: var(--coral);
}

.calculator-icon [data-lucide] {
  width: 2rem;
  height: 2rem;
}

.family-icon [data-lucide] {
  width: 1.5rem;
  height: 1.5rem;
}

.upsell-icon [data-lucide] {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--coral);
}

.stat-number [data-lucide] {
  width: 3rem;
  height: 3rem;
}

.type-icon [data-lucide] {
  width: 2rem;
  height: 2rem;
}

/* Check Icons */
[data-lucide="check"] {
  color: var(--success);
  margin-right: 0.5rem;
}

/* Accordion Icon Animation */
.accordion-icon [data-lucide] {
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon [data-lucide] {
  transform: rotate(180deg);
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, var(--dark-900), transparent);
  backdrop-filter: blur(10px);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 45px;
  width: auto;
  transition: opacity 0.3s ease;
}

.logo:hover .logo-img {
  opacity: 0.8;
}

/* Fallback für altes Text-Logo */
.logo span {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: var(--accent);
}

/* Mobile Logo */
@media (max-width: 768px) {
  .logo-img {
    height: 40px;
  }
}

@media (max-width: 480px) {
  .logo-img {
    height: 35px;
  }
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--gray-300);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

/* Hover-Effekt: sanfter Übergang zu weiß */
.nav-links a:hover {
  color: var(--white);
}

/* Aktiver Menüpunkt: Orange hervorheben */
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a,
.nav-links .current-menu-ancestor > a {
  color: var(--accent);
}

/* Hover auf aktivem Punkt behält Orange */
.nav-links .current-menu-item > a:hover,
.nav-links .current_page_item > a:hover,
.nav-links .current-menu-ancestor > a:hover {
  color: var(--accent);
}

.nav-cta {
  background: var(--accent);
  color: var(--dark-900);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s;
  box-shadow: 0 0 20px rgba(255, 107, 74, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 107, 74, 0.5);
}

/* Mobile Navigation Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
  z-index: 1001;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Menu Open State */
.nav-links.is-open,
.nav-links.active {
  display: flex;
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-primary, #0a0a0b);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255, 107, 74, 0.15), transparent),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(255, 107, 74, 0.08), transparent);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--dark-700);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--gray-200);
  margin-bottom: 1.5rem;
  border: 1px solid var(--dark-500);
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-badge .dot.open {
  background: var(--success);
}

.hero-badge .dot.closed {
  background: #EF4444;
  animation: pulse-closed 2s infinite;
}

@keyframes pulse-closed {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 10rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero h1 .highlight {
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray-300);
  max-width: 500px;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--accent);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Hero Grid Layout */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  position: relative;
  z-index: 2;
}

/* Hero Video Container - kein grauer Streifen */
.hero-video-container {
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s ease-out 0.5s both;
  background: transparent;
  line-height: 0;
  font-size: 0;
  overflow: hidden;
  border-radius: 20px;
}

.hero-video-link {
  display: block;
  cursor: pointer;
  line-height: 0;
}

.hero-video-placeholder {
  aspect-ratio: 16/9;
  min-height: 375px; /* 25% groesser als 300px */
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(255, 107, 74, 0.3);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.hero-video-placeholder:hover {
  border-color: rgba(255, 107, 74, 0.6);
  background: rgba(0, 0, 0, 0.7);
}

.video-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 107, 74, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: all 0.3s ease;
}

.hero-video-placeholder:hover .video-icon {
  background: rgba(255, 107, 74, 0.3);
  transform: scale(1.1);
}

.video-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: 0.1em;
}

.video-subtext {
  font-size: 0.9rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* Hero Video - 25% groesser */
.hero-video {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  min-height: 375px; /* 25% groesser als 300px */
  object-fit: cover;
  border-radius: 20px;
  border: 2px solid rgba(255, 107, 74, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: border-color 0.3s ease;
  display: block;
  line-height: normal;
  font-size: initial;
  vertical-align: top;
}

.hero-video:hover {
  border-color: rgba(255, 107, 74, 0.6);
}

/* Genereller Fix fuer Video/Img im Hero-Container */
.hero-video-container video,
.hero-video-container img {
  display: block;
  vertical-align: top;
  margin: 0;
  padding: 0;
  border: 0;
  line-height: normal;
  font-size: initial;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--dark-900);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s;
  box-shadow: 0 0 30px rgba(255, 107, 74, 0.3);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(255, 107, 74, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--dark-700);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  text-decoration: none;
  font-size: 1rem;
  border: 1px solid var(--dark-500);
  transition: all 0.3s;
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--dark-600);
  border-color: var(--gray-400);
}

/* --------------------------------------------------------------------------
   Animationen
   -------------------------------------------------------------------------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

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

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   News Ticker
   -------------------------------------------------------------------------- */
.ticker-wrapper {
  background: var(--dark-800);
  border-top: 1px solid var(--dark-600);
  border-bottom: 1px solid var(--dark-600);
  padding: 1rem 0;
  overflow: hidden;
}

.ticker {
  display: flex;
  animation: scroll 30s linear infinite;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
  padding: 0 3rem;
  color: var(--gray-300);
  font-size: 0.95rem;
}

.ticker-item .icon {
  color: var(--accent);
}

.ticker-item strong {
  color: var(--white);
}

/* --------------------------------------------------------------------------
   News Section & Grid
   -------------------------------------------------------------------------- */
.news-section {
  padding: 6rem 2rem;
  background: var(--dark-800);
}

.news-container {
  max-width: 1400px;
  margin: 0 auto;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.news-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--dark-600);
  display: flex;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

.news-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
}

.news-card-date {
  flex-shrink: 0;
  width: 60px;
  height: 70px;
  background: var(--dark-700);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--dark-500);
}

.news-card-date .date-day {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--accent);
  line-height: 1;
}

.news-card-date .date-month {
  font-size: 0.75rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.news-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card-tag {
  display: inline-block;
  font-size: 0.7rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.news-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.news-card-title a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}

.news-card-title a:hover {
  color: var(--accent);
}

.news-card-excerpt {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.news-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.3s;
}

.news-card-link:hover {
  gap: 0.75rem;
}

.news-card-link svg {
  transition: transform 0.3s;
}

.news-card-link:hover svg {
  transform: translateX(3px);
}

@media (max-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-card {
    flex-direction: column;
    gap: 1rem;
  }

  .news-card-date {
    width: auto;
    height: auto;
    flex-direction: row;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    align-self: flex-start;
  }

  .news-card-date .date-day {
    font-size: 1.25rem;
  }
}

/* --------------------------------------------------------------------------
   Section Headers
   -------------------------------------------------------------------------- */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 0.02em;
  color: var(--text-primary, #ffffff);
}

/* Klettern-Seite: Section Titles immer gut lesbar */
.content-section .section-title {
  color: var(--text-primary, #ffffff);
}

/* --------------------------------------------------------------------------
   Bento Grid (Activities)
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   Parallax Section mit animiertem WebP
   -------------------------------------------------------------------------- */
.parallax-wrapper {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  isolation: isolate; /* Stacking Context fuer z-index */
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
  overflow: hidden;
}

.parallax-bg-image,
.parallax-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 11, 0.85) 0%,
    rgba(10, 10, 11, 0.6) 30%,
    rgba(10, 10, 11, 0.6) 70%,
    rgba(10, 10, 11, 0.9) 100%
  );
  pointer-events: none;
}

.parallax-content {
  position: relative;
  z-index: 1;
}

/* Verbesserte Lesbarkeit für Texte über Hintergrundbildern */
.parallax-content h1,
.parallax-content h2,
.parallax-content h3,
.parallax-content p {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6), 0 4px 16px rgba(0, 0, 0, 0.4);
}

/* Fallback für alte .parallax-section Klasse */
.parallax-section {
  position: relative;
  overflow: hidden;
}

.parallax-section > .parallax-bg:not(:has(img)) {
  position: absolute;
  top: -50%;
  left: 0;
  right: 0;
  bottom: -50%;
  background:
    radial-gradient(ellipse 100% 70% at 30% 20%, rgba(var(--accent-rgb), 0.12), transparent 50%),
    radial-gradient(ellipse 80% 60% at 70% 80%, rgba(var(--accent-rgb), 0.08), transparent 50%),
    linear-gradient(180deg, var(--dark-900) 0%, var(--dark-800) 50%, var(--dark-900) 100%);
  /* Parallax-Effekt entfernt für bessere Performance und Mobile-Kompatibilität */
  background-attachment: scroll;
  z-index: 0;
  pointer-events: none;
}

.activities-content {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

/* Reduced Motion: Animation pausieren */
@media (prefers-reduced-motion: reduce) {
  .parallax-bg-image {
    animation-play-state: paused !important;
  }
}

.activities {
  padding: 6rem 2rem;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.bento-card {
  background: var(--dark-800);
  border-radius: 24px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--dark-600);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  color: var(--white);
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 107, 74, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s;
}

.bento-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 20px 60px rgba(255, 107, 74, 0.15);
}

.bento-card:hover::before {
  opacity: 1;
}

.bento-card.large {
  grid-column: span 3;
  aspect-ratio: 21/9;
}

.bento-card.wide {
  grid-column: span 1;
}

.bento-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.bento-card.large .bento-icon {
  font-size: 5rem;
}

.bento-label {
  font-size: 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.9),
    0 2px 6px rgba(0, 0, 0, 0.5);
}

.bento-title {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
  color: #ffffff;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.8),
    0 4px 8px rgba(0, 0, 0, 0.4);
}

.bento-card.large .bento-title {
  font-size: 3rem;
}

.bento-desc {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  position: relative;
  z-index: 1;
  line-height: 1.4;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.9),
    0 2px 6px rgba(0, 0, 0, 0.5);
}

.bento-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--accent);
  color: var(--dark-900);
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  animation: bounce 2s infinite;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Bento Card Video Background */
.bento-card.has-video {
  background: var(--dark-900);
}

.bento-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.9;
  transition: opacity 0.4s ease, transform 0.6s ease;
}

.bento-card.has-video:hover .bento-video {
  opacity: 1;
  transform: scale(1.05);
}

/* Bento Grid Placeholder Images - volle Helligkeit */
.bento-placeholder-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 1;
  filter: none;
  transition: opacity 0.4s ease, transform 0.6s ease;
}

.bento-card.has-image:hover .bento-placeholder-image {
  opacity: 1;
  /* Kein transform hier - Zoom wird per Customizer gesteuert */
  filter: brightness(1.1);
}

/* Transform-Origin fuer korrektes Zoom-Verhalten */
.bento-placeholder-image {
  transform-origin: center center;
}

/* Gradient Overlay - minimal fuer Video-Sichtbarkeit */
.bento-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.1) 30%,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 1;
  pointer-events: none;
  transition: background 0.3s ease;
}

/* Hover: noch weniger Overlay */
.bento-card:hover .bento-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.05) 30%,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0) 100%
  );
}

/* Accent-Linie am unteren Rand bei Hover */
.bento-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: 3;
}

.bento-card:hover::after {
  transform: scaleX(1);
}

.bento-content {
  position: relative;
  z-index: 2;
}

.bento-content .bento-icon,
.bento-content .bento-label,
.bento-content .bento-title,
.bento-content .bento-desc {
  position: relative;
  z-index: 2;
}

/* Text-Schatten fuer bessere Lesbarkeit auf Videos */
.bento-card.has-video .bento-title {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9), 0 4px 25px rgba(0, 0, 0, 0.6);
}

.bento-card.has-video .bento-desc {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.9);
}

.bento-card.has-video .bento-label {
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.7);
}

/* Reduced motion: Pause videos */
@media (prefers-reduced-motion: reduce) {
  .bento-video {
    animation: none;
  }
}

/* Mobile: Video voll sichtbar */
@media (max-width: 768px) {
  .bento-video {
    opacity: 0.9;
  }

  .bento-card.has-video:hover .bento-video {
    opacity: 1;
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   Info Cards Section
   -------------------------------------------------------------------------- */
.info-section {
  padding: 6rem 2rem;
  background: var(--dark-800);
}

.info-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.info-card {
  background: var(--dark-700);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid var(--dark-500);
  transition: all 0.3s;
}

.info-card:hover {
  border-color: var(--dark-400);
  transform: translateY(-4px);
}

.info-icon {
  width: 60px;
  height: 60px;
  background: var(--dark-600);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.info-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

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

.info-text strong {
  color: var(--accent);
  font-size: 1.25rem;
}

/* Click-to-Map Address Links */
.address-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

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

.address-link strong {
  color: var(--accent);
}

/* --------------------------------------------------------------------------
   CTA Section
   -------------------------------------------------------------------------- */
.cta-section {
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(255, 107, 74, 0.15), transparent);
}

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

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6), 0 4px 16px rgba(0, 0, 0, 0.4);
}

.cta-text {
  color: var(--gray-300);
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--dark-800);
  border-top: 1px solid var(--dark-600);
  padding: 4rem 2rem 2rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand {
  max-width: 300px;
}

/* Footer Logo - Bild statt Text */
.footer-logo-img {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .footer-logo-img {
    height: 35px;
  }
}

/* Fallback für altes Text-Logo */
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-logo span {
  color: var(--accent);
}

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

.footer-title {
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--white);
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

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

/* WordPress Menu Classes */
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 0.75rem;
}

.footer-menu a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

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

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--dark-600);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--gray-400);
  font-size: 0.85rem;
}

.footer-partner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-partner span {
  color: var(--gray-400);
}

/* Footer Social Icons */
.footer-social {
  margin-top: 0;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark-700);
  color: var(--gray-300);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--accent);
  color: var(--white);
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

/* --------------------------------------------------------------------------
   Page Header (fuer Unterseiten)
   -------------------------------------------------------------------------- */
.page-header {
  padding: 10rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 107, 74, 0.1), transparent);
}

/* Preise-Seite: Kein oranger Gradient im Header */
.page-template-page-preise .page-header::before,
body.page-template-page-preise .page-header::before,
body.page-template-page-preise-php .page-header::before {
  display: none !important;
}

.page-header-content {
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   AKTIVITAETEN-SEITEN HEADER (Bouldern, Beach, Ninja)
   Einheitliches Design wie Klettern-Seite
   ========================================================================== */

/* Page Header mit Video - identisch zu .klettern-hero */
.page-header.has-video {
  position: relative;
  min-height: 80vh;
  min-height: 80dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Video - identisch zu .klettern-video */
.page-header-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.75; /* Identisch zu Klettern */
}

/* Overlay - identisch zu .klettern-video-overlay */
.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 11, 0.15) 0%,
    rgba(10, 10, 11, 0.15) 50%,
    rgba(10, 10, 11, 0.5) 100%
  );
  z-index: 1;
}

/* Content ueber Overlay */

.page-header-content {
  position: relative;
  z-index: 5;
  max-width: 800px;
  padding: 0 2rem;
  text-align: center;
  margin: 0 auto;
}

/* Section Tag - identisch zu Klettern */
.page-header.has-video .section-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent, #F49B31);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Page Title - identisch zu Klettern */
.page-header.has-video .page-title {
  font-family: var(--font-display, 'Bebas Neue', sans-serif);
  font-size: clamp(3rem, 10vw, 6rem);
  color: var(--white, #FAFAFA);
  margin-bottom: 1rem;
  line-height: 1;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.page-header.has-video .page-title .text-coral {
  color: var(--accent, #F49B31);
}

/* Subtitle - identisch zu Klettern (weiss!) */
.page-header.has-video .page-subtitle {
  font-size: 1.25rem;
  color: white;
  max-width: 600px;
  margin: 0 auto 2rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

@media (prefers-reduced-motion: reduce) {
  .page-header-video {
    display: none;
  }
}

/* Mobile Responsive - identisch zu Klettern */
@media (max-width: 768px) {
  .page-header.has-video {
    min-height: 70vh;
    height: 70vh;
  }

  .page-header-video {
    opacity: 0.75; /* Gleich wie Desktop */
  }

  .page-header.has-video .page-title {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .page-header.has-video .page-subtitle {
    font-size: 1rem;
  }
}

/* ==========================================================================
   UNIFIED ACTIVITY HERO - Alle Aktivitaets-Seiten
   ========================================================================== */

.activity-hero {
    position: relative;
    min-height: 80vh;
    min-height: 80dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* Video/Bild Wrapper - KEIN Parallax mehr, scrollt mit */
.activity-hero-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.activity-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
    transition: opacity 0.5s ease;
}

.activity-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: opacity 0.5s ease;
    transform-origin: center center;
}

.activity-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 11, 0) 0%,
        rgba(10, 10, 11, 0) 60%,
        rgba(10, 10, 11, 0.25) 100%
    );
    transition: opacity 0.5s ease;
}

/* Content */
.activity-hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 2rem;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.activity-hero-title {
    font-size: clamp(3.5rem, 10vw, 7rem);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
    margin-bottom: 1rem;
    color: var(--white, #ffffff);
    font-family: var(--font-headline, 'Bebas Neue', sans-serif);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
}

.activity-hero-title .text-coral {
    color: var(--accent, #F49B31);
}

.activity-hero-subtitle {
    font-size: 1.25rem;
    color: white !important;
    max-width: 600px;
    margin: 0 auto 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Hero CTAs */
.activity-hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.activity-hero-ctas .btn-secondary {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
}

.activity-hero-ctas .btn-secondary span {
    color: #ffffff !important;
}

.activity-hero-ctas .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff !important;
}

/* Scroll Indicator */
.activity-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: scroll-bounce 2s infinite;
    z-index: 20;
}

.activity-scroll-indicator .scroll-line {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), transparent);
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* Hero Spacer - nicht mehr noetig da kein Fixed-Parallax */
.activity-hero-spacer {
    display: none;
}

/* Immersive Mode */
.activity-hero.immersive-active .activity-hero-video {
    opacity: 1;
}

.activity-hero.immersive-active .activity-hero-overlay {
    opacity: 0;
}

.activity-hero.immersive-active .activity-hero-content {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
}

.activity-hero.immersive-active .activity-scroll-indicator {
    opacity: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .activity-hero {
        min-height: 70vh;
        min-height: 70dvh;
    }

    .activity-hero-wrapper {
        height: 100%;
    }

    .activity-hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .activity-hero-subtitle {
        font-size: 1rem;
    }

    .activity-hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .activity-hero-ctas .btn-primary,
    .activity-hero-ctas .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* Spacer nicht mehr noetig */

    .activity-scroll-indicator {
        bottom: 1rem;
    }
}

/* ==========================================================================
   KLETTERN SEITE - IMMERSIVE VIDEO HERO (Legacy Support)
   ========================================================================== */

.klettern-hero {
    position: relative;
    min-height: 80vh;
    min-height: 80dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* Video Wrapper - Fixed fuer Sticky-Effekt */
.klettern-video-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80vh;
    height: 80dvh;
    z-index: -1;
    overflow: hidden;
}

.klettern-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
    transition: opacity 0.5s ease;
}

/* Desktop: Native Controls verstecken, wir nutzen Custom Controls */
@media (min-width: 769px) {
    .klettern-video::-webkit-media-controls {
        display: none !important;
    }
    .klettern-video::-webkit-media-controls-enclosure {
        display: none !important;
    }
}

.klettern-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 11, 0.15) 0%,
        rgba(10, 10, 11, 0.15) 50%,
        rgba(10, 10, 11, 0.5) 100%
    );
    transition: opacity 0.5s ease;
}

/* Content */
.klettern-hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 2rem;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.klettern-hero-content .page-title {
    font-size: clamp(3.5rem, 10vw, 7rem);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
    margin-bottom: 1rem;
    color: var(--white, #ffffff);
}

/* Highlight-Text (IN LEIPZIG) bleibt orange */
.klettern-hero-content .page-title .text-coral {
    color: var(--accent, #F49B31);
}

/* Fix 4: Subtext weiss fuer bessere Lesbarkeit */
.klettern-hero-content .page-subtitle {
    font-size: 1.25rem;
    color: white !important;
    max-width: 600px;
    margin: 0 auto 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Hero CTAs */
.klettern-hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Klettern Hero - Secondary Button weiss */
.klettern-hero-ctas .btn-secondary {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
}

.klettern-hero-ctas .btn-secondary span {
    color: #ffffff !important;
}

.klettern-hero-ctas .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff !important;
}

/* Video Controls */
.klettern-video-controls {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 100;
    background: rgba(10, 10, 11, 0.8);
    backdrop-filter: blur(10px);
    padding: 0.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 1;
    transition: all 0.3s ease;
}

.klettern-video-controls.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.klettern-control-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.klettern-control-btn:hover {
    background: var(--accent);
    color: var(--dark-900);
}

.klettern-control-btn svg.hidden {
    display: none;
}

/* Speed Controls */
.klettern-speed-control {
    display: flex;
    gap: 0.25rem;
    padding-left: 0.75rem;
    margin-left: 0.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.klettern-speed-btn {
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    background: transparent;
    border: none;
    color: var(--gray-400);
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.klettern-speed-btn:hover {
    color: var(--white);
}

.klettern-speed-btn.active {
    background: var(--accent);
    color: var(--dark-900);
}

/* Immersive Mode */
.klettern-hero.immersive-active .klettern-video {
    opacity: 1;
}

.klettern-hero.immersive-active .klettern-video-overlay {
    opacity: 0;
}

.klettern-hero.immersive-active .klettern-hero-content {
    opacity: 0;
    pointer-events: none;
    transform: translateY(30px);
}

.klettern-hero.immersive-active .klettern-scroll-indicator {
    opacity: 0;
}

.klettern-hero.immersive-active .klettern-video-controls {
    background: rgba(10, 10, 11, 0.5);
}

/* Immersive Hint */
.klettern-immersive-hint {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    color: var(--white);
    font-size: 0.9rem;
    opacity: 0;
    pointer-events: none;
    z-index: 200;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.klettern-hero.immersive-active .klettern-immersive-hint {
    animation: kletternFadeHint 3s ease forwards;
}

@keyframes kletternFadeHint {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.9); }
    10% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    70% { opacity: 1; }
    100% { opacity: 0; }
}

/* Scroll Indicator */
.klettern-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-400);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    animation: kletternBounce 2s infinite;
    transition: opacity 0.3s ease;
}

@keyframes kletternBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Hero Spacer */
.klettern-hero-spacer {
    height: 30vh;
    pointer-events: none;
}

/* Section Titles weiss mit Text-Shadow fuer Lesbarkeit ueber Video */
.page-template-page-klettern .section-title {
    color: var(--white, #ffffff);
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.9),
        0 4px 20px rgba(0, 0, 0, 0.8);
}

.page-template-page-klettern .section-tag {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

/* === KLETTERN RESPONSIVE === */
@media (max-width: 768px) {
    /* Fix 1: Video groesser auf Mobile damit Buttons reinpassen */
    .klettern-hero {
        min-height: 70vh;
        height: 70vh;
    }

    .klettern-video-wrapper {
        height: 70vh;
        position: absolute; /* Statt fixed - scrollt mit Content */
    }

    .klettern-hero-content .page-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .klettern-hero-content .page-subtitle {
        font-size: 1rem;
    }

    .klettern-hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .klettern-hero-ctas .btn-primary,
    .klettern-hero-ctas .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* Fix 3: Mobile - Custom Controls verstecken, native Controls nutzen */
    .klettern-video-controls {
        display: none;
    }

    /* Native Video Controls auf Mobile anzeigen */
    .klettern-video::-webkit-media-controls {
        display: flex !important;
        opacity: 1;
    }

    .klettern-video::-webkit-media-controls-panel {
        background: linear-gradient(transparent, rgba(0,0,0,0.7));
    }

    .klettern-speed-control {
        display: none;
    }

    .klettern-scroll-indicator {
        display: none;
    }

    .klettern-hero-spacer {
        height: 50px;       /* Feste Hoehe statt vh */
    }

    /* Mobile: Text-Effekte entfernen, normale Textfarbe */
    .page-template-page-klettern .section-title {
        text-shadow: none;
        -webkit-text-stroke: 0;
        color: var(--text-primary);
    }

    .page-template-page-klettern .section-tag {
        text-shadow: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .klettern-video {
        display: none;
    }

    .klettern-video-wrapper {
        background: var(--bg-primary);
    }

    .klettern-scroll-indicator {
        animation: none;
    }
}

/* ==========================================================================
   UNIVERSAL VIDEO CONTROLS
   Generische Steuerung fuer alle Aktivitaetsseiten
   ========================================================================== */

/* Native Browser Controls IMMER ausblenden */
video::-webkit-media-controls,
video::-webkit-media-controls-panel,
video::-webkit-media-controls-start-playback-button {
    display: none !important;
    -webkit-appearance: none;
}

video::-moz-media-controls {
    display: none !important;
}

.page-header-video,
.klettern-video {
    pointer-events: none; /* Verhindert Rechtsklick-Menü */
}

.video-controls {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(10, 10, 11, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.video-controls.controls-hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

/* Control Buttons */
.video-control-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.video-control-btn:hover {
    background: var(--accent, #F49B31);
    color: var(--bg-primary, #0a0a0b);
}

.video-control-btn svg.hidden {
    display: none;
}

/* Speed Controls */
.video-speed-controls {
    display: flex;
    gap: 0.25rem;
    margin-left: 0.5rem;
    padding-left: 0.75rem;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.video-speed-btn {
    padding: 0.4rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.video-speed-btn:hover {
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
}

.video-speed-btn.active {
    background: var(--accent, #F49B31);
    color: var(--bg-primary, #0a0a0b);
    border-color: var(--accent, #F49B31);
}

/* Mobile Progress Bar */
.video-progress-mobile {
    display: none;
}

/* Immersive Hint */
.video-immersive-hint {
    position: fixed;
    bottom: 6rem;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 101;
}

.video-immersive-hint.visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Immersive Mode Active */
body.immersive-mode {
    overflow: hidden;
}

body.immersive-mode .video-controls {
    bottom: 1.5rem;
    right: 50%;
    transform: translateX(50%);
    background: rgba(0, 0, 0, 0.5);
}

body.immersive-mode .site-header,
body.immersive-mode footer {
    opacity: 0;
    pointer-events: none;
}

/* ----------------------------------------
   VIDEO CONTROLS - MOBILE
   Alle Features wie Desktop, mit Scroll-Hide
   ---------------------------------------- */
@media (max-width: 768px) {
    .video-controls {
        /* Mobile: unten zentriert */
        position: fixed;
        bottom: 1rem;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        padding: 0.5rem 0.75rem;
        gap: 0.35rem;
    }

    /* Scroll-Hide auf Mobile: Transform anpassen */
    .video-controls.controls-hidden {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
        pointer-events: none;
    }

    /* Groessere Touch-Targets */
    .video-control-btn {
        width: 48px;
        height: 48px;
    }

    .video-control-btn svg {
        width: 22px;
        height: 22px;
    }

    /* Speed Controls: Kompakter auf Mobile */
    .video-speed-controls {
        margin-left: 0.25rem;
        padding-left: 0.5rem;
    }

    .video-speed-btn {
        padding: 0.3rem 0.5rem;
        font-size: 0.7rem;
    }

    /* Mobile Progress Bar anzeigen */
    .video-progress-mobile {
        display: block;
        position: absolute;
        bottom: -4px;
        left: 0;
        right: 0;
        height: 3px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 0 0 50px 50px;
        overflow: hidden;
    }

    .video-progress-bar {
        height: 100%;
        position: relative;
    }

    .video-progress-fill {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 0%;
        background: var(--accent, #F49B31);
        transition: width 0.1s linear;
    }

    .video-immersive-hint {
        display: none;
    }
}

/* Kleine Handys */
@media (max-width: 480px) {
    .video-controls {
        bottom: 0.75rem;
        padding: 0.4rem 0.6rem;
        gap: 0.25rem;
    }

    .video-control-btn {
        width: 42px;
        height: 42px;
    }

    .video-control-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* ==========================================================================
   ANNOUNCEMENT MODAL
   ========================================================================== */

.announcement-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.announcement-modal.is-visible {
    opacity: 1;
    visibility: visible;
}

/* Backdrop */
.announcement-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

/* Content - Bug 4: Viewport-Limits damit Modal nie groesser als Bildschirm */
.announcement-content {
    position: relative;
    background: var(--bg-elevated, #1a1a1e);
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    /* Bug 4: Viewport-Limits */
    max-height: 90vh;
    overflow-y: auto;
}

.announcement-modal.is-visible .announcement-content {
    transform: scale(1) translateY(0);
}

/* Modal Groessen-Varianten (Customizer) - mit Viewport-Limits */
.announcement-content.size-small { max-width: min(400px, 95vw); }
.announcement-content.size-medium { max-width: min(500px, 95vw); }
.announcement-content.size-large { max-width: min(650px, 95vw); }

/* Close Button - Bug 3: Dunkler Hintergrund fuer Sichtbarkeit auf hellen Bildern */
.announcement-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}

.announcement-close:hover {
    background: rgba(0, 0, 0, 0.9);
    color: white;
}

/* Image */
.announcement-image {
    margin: -2.5rem -2.5rem 1.5rem;
    border-radius: 24px 24px 0 0;
    overflow: hidden;
}

.announcement-image img {
    width: 100%;
    height: auto;
    display: block;
    /* Bug 1b: Bessere Rendering-Qualitaet */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    object-fit: contain;
}

/* Icon */
.announcement-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1;
}

/* Title */
.announcement-title {
    font-family: var(--font-display, 'Bebas Neue', sans-serif);
    font-size: 2rem;
    color: var(--white, #fff);
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

/* Text */
.announcement-text {
    color: var(--gray-300, #B8B8C8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Actions */
.announcement-actions {
    margin-bottom: 1rem;
}

.announcement-btn {
    min-width: 180px;
    justify-content: center;
}

/* Dismiss Checkbox */
.announcement-dismiss {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--gray-400, #6B6B76);
    cursor: pointer;
    transition: color 0.2s ease;
}

.announcement-dismiss:hover {
    color: var(--gray-300, #9090A0);
}

.announcement-dismiss input {
    width: 16px;
    height: 16px;
    accent-color: var(--accent, #FF6B4A);
}

/* === ANNOUNCEMENT RESPONSIVE === */
@media (max-width: 480px) {
    .announcement-content {
        padding: 2rem 1.5rem;
        margin: 0.5rem;
        border-radius: 20px;
    }

    .announcement-image {
        margin: -2rem -1.5rem 1.5rem;
        border-radius: 20px 20px 0 0;
    }

    .announcement-title {
        font-size: 1.75rem;
    }

    .announcement-icon {
        font-size: 3rem;
    }
}

/* Light Mode Support */
[data-theme="light"] .announcement-content,
[data-theme="light-blue"] .announcement-content,
[data-theme="light-green"] .announcement-content,
[data-theme="light-purple"] .announcement-content {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .announcement-title,
[data-theme="light-blue"] .announcement-title,
[data-theme="light-green"] .announcement-title,
[data-theme="light-purple"] .announcement-title {
    color: #1a1a1a;
}

[data-theme="light"] .announcement-text,
[data-theme="light-blue"] .announcement-text,
[data-theme="light-green"] .announcement-text,
[data-theme="light-purple"] .announcement-text {
    color: #4a4a4a;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

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

/* --------------------------------------------------------------------------
   Content Sections
   -------------------------------------------------------------------------- */
.content-section {
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.content-section.alt-bg {
  background: var(--dark-800);
  max-width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
}

.content-section.alt-bg > * {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile: News-Seite & Content-Sections - volle Breite */
@media (max-width: 576px) {
  .content-section {
    padding: 2rem 1rem;
  }

  .content-section.alt-bg {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Post Content volle Breite auf Mobile (überschreibt inline max-width: 800px) */
  .post-content {
    max-width: 100% !important;
    font-size: 1rem;
    line-height: 1.7;
  }

  .post-navigation {
    max-width: 100% !important;
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .post-navigation .nav-next {
    text-align: left !important;
  }
}

/* --------------------------------------------------------------------------
   Cards Grid
   -------------------------------------------------------------------------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--dark-700);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--dark-600);
  transition: all 0.3s;
}

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

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.card-text {
  color: var(--gray-400);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.card-price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
}

.card-price small {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gray-400);
}

/* --------------------------------------------------------------------------
   Tables (Preislisten)
   -------------------------------------------------------------------------- */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.price-table th,
.price-table td {
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--dark-600);
}

.price-table th {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--gray-300);
  text-transform: uppercase;
}

.price-table td {
  color: var(--gray-200);
}

.price-table tbody tr:hover {
  background: var(--dark-700);
}

.price-table .price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--accent);
}

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--gray-200);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--dark-700);
  border: 1px solid var(--dark-500);
  border-radius: 12px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 107, 74, 0.1);
}

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

/* Form Messages */
.form-message {
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.form-message.success {
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid var(--success);
  color: var(--success);
}

.form-message.error {
  background: rgba(255, 107, 74, 0.1);
  border: 1px solid var(--accent);
  color: var(--accent);
}

/* --------------------------------------------------------------------------
   Partner Cards (Kletterpartner)
   -------------------------------------------------------------------------- */
.partner-card {
  background: var(--dark-700);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--dark-600);
  transition: all 0.3s;
}

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

.partner-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.partner-avatar {
  width: 50px;
  height: 50px;
  background: var(--dark-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.partner-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

.partner-meta {
  font-size: 0.85rem;
  color: var(--gray-400);
}

.partner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.partner-tag {
  background: var(--dark-600);
  color: var(--gray-200);
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  font-size: 0.8rem;
}

.partner-tag.highlight {
  background: var(--accent);
  color: var(--dark-900);
  font-weight: 600;
}

.partner-text {
  color: var(--gray-300);
  font-size: 0.95rem;
  line-height: 1.6;
}

.partner-contact {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--dark-600);
}

/* Filter Bar */
.filter-bar {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.filter-btn {
  background: var(--dark-700);
  color: var(--gray-300);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  border: 1px solid var(--dark-600);
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  color: var(--dark-900);
  border-color: var(--accent);
}

/* --------------------------------------------------------------------------
   Single Post (News)
   -------------------------------------------------------------------------- */
/* FIX: Body NICHT begrenzen - nur Article Content */
body.single-post {
  max-width: none;
  margin: 0;
  padding: 0;
}

/* Nur der Article-Content soll begrenzt sein */
.single-post article,
.single-post .post-content,
body.single-post .content-section .post-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

/* Mobile: Weniger Padding für News-Artikel */
@media (max-width: 768px) {
  .single-post .post-content,
  body.single-post .content-section .post-content {
    padding: 0.5rem;
  }

  .single-post .post-navigation {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .single-post .post-navigation .nav-next {
    text-align: left !important;
  }
}

.post-meta {
  color: var(--gray-400);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.post-content {
  font-size: 1.1rem;
  line-height: 1.8;
}

.post-content p {
  margin-bottom: 1.5rem;
}

.post-content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 2rem 0 1rem;
}

.post-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 1.5rem 0 0.75rem;
}

.post-content ul,
.post-content ol {
  margin: 1rem 0 1.5rem 2rem;
}

.post-content li {
  margin-bottom: 0.5rem;
}

.post-content a {
  color: var(--accent);
  text-decoration: underline;
}

.post-content a:hover {
  color: var(--accent-glow);
}

.post-content img {
  border-radius: 12px;
  margin: 2rem 0;
}

/* Single Post: Footer volle Viewport-Breite erzwingen */
/* KORREKTUR: 100vw + calc Trick fuer edge-to-edge */
.single .site-footer,
.single-post .site-footer,
body.single .site-footer,
body.single-post .site-footer {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  position: relative !important;
  box-sizing: border-box !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Footer Content soll zentriert bleiben */
.single .site-footer .footer-content,
.single .site-footer .footer-bottom,
.single-post .site-footer .footer-content,
.single-post .site-footer .footer-bottom {
  max-width: var(--container-width, 1200px);
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* --------------------------------------------------------------------------
   Legal Pages (Impressum, Datenschutz)
   -------------------------------------------------------------------------- */
.legal-page {
  min-height: 100vh;
}

.legal-content {
  padding: 4rem 2rem 6rem;
  background: var(--dark-900);
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
}

.legal-toc {
  background: var(--dark-800);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 3rem;
  border: 1px solid var(--dark-600);
}

.legal-toc h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.legal-toc ol {
  margin: 0;
  padding-left: 1.5rem;
}

.legal-toc li {
  margin-bottom: 0.5rem;
}

.legal-toc a {
  color: var(--gray-300);
  text-decoration: none;
  transition: color 0.3s;
}

.legal-toc a:hover {
  color: var(--accent);
}

.legal-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--dark-600);
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-section h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.legal-section h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--accent);
  margin: 2rem 0 1rem;
}

.legal-section p {
  color: var(--gray-300);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
  color: var(--gray-300);
  margin: 1rem 0 1.5rem 1.5rem;
  line-height: 1.8;
}

.legal-section li {
  margin-bottom: 0.5rem;
}

.legal-section a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s;
}

.legal-section a:hover {
  color: var(--accent-glow);
  text-decoration: underline;
}

.legal-section strong {
  color: var(--white);
}

.contact-block {
  font-style: normal;
  background: var(--dark-800);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 3px solid var(--accent);
  margin: 1rem 0;
  line-height: 1.8;
}

/* --------------------------------------------------------------------------
   404 Error Page
   -------------------------------------------------------------------------- */
.error-404-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.error-404-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.error-404-icon {
  color: var(--accent);
  margin-bottom: 2rem;
  animation: pulse 2s infinite;
}

.error-404-title {
  margin-bottom: 1rem;
}

.error-number {
  font-family: var(--font-display);
  font-size: clamp(8rem, 20vw, 12rem);
  line-height: 1;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-glow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.error-404-heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--white);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.error-404-text {
  font-size: 1.125rem;
  color: var(--gray-300);
  margin-bottom: 2rem;
}

.error-404-suggestions {
  text-align: left;
  background: var(--dark-800);
  padding: 1.5rem 2rem;
  border-radius: 16px;
  margin-bottom: 2.5rem;
  border: 1px solid var(--dark-600);
}

.error-404-suggestions p {
  color: var(--gray-400);
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.error-404-suggestions ul {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--gray-300);
}

.error-404-suggestions li {
  margin-bottom: 0.5rem;
}

.error-404-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.error-404-contact {
  color: var(--gray-400);
  font-size: 0.9rem;
}

.error-404-contact a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.error-404-contact a:hover {
  text-decoration: underline;
}

/* 404 Decorative Background */
.error-404-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.climbing-holds {
  position: absolute;
  width: 100%;
  height: 100%;
}

.hold {
  position: absolute;
  width: 40px;
  height: 40px;
  background: var(--dark-700);
  border-radius: 50% 30% 50% 30%;
  opacity: 0.3;
}

.hold-1 { top: 15%; left: 10%; transform: rotate(45deg); }
.hold-2 { top: 25%; right: 15%; transform: rotate(-30deg); }
.hold-3 { top: 60%; left: 8%; transform: rotate(60deg); }
.hold-4 { top: 70%; right: 12%; transform: rotate(-45deg); }
.hold-5 { top: 85%; left: 20%; transform: rotate(30deg); }

@media (max-width: 768px) {
  .error-404-ctas {
    flex-direction: column;
    align-items: center;
  }

  .error-404-ctas .btn-primary,
  .error-404-ctas .btn-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .legal-content {
    padding: 3rem 1rem 4rem;
  }

  .legal-toc {
    padding: 1.5rem;
  }

  .contact-block {
    padding: 1rem;
  }
}

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */
.text-coral {
  color: var(--accent);
}

.text-muted {
  color: var(--gray-400);
}

.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Screen Reader Only */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* Skip Link - sichtbar bei Focus */
.skip-link {
  background: var(--accent);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 0 0 12px 12px;
  font-weight: 600;
  text-decoration: none;
  z-index: 100000;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  transition: transform 0.3s ease;
}

.skip-link:focus {
  transform: translateX(-50%) translateY(0);
  clip: auto;
  clip-path: none;
  height: auto;
  width: auto;
  margin: 0;
  overflow: visible;
}

/* --------------------------------------------------------------------------
   WordPress Specific
   -------------------------------------------------------------------------- */
.wp-block-image img {
  border-radius: 12px;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignleft {
  float: left;
  margin-right: 1.5rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
}

/* --------------------------------------------------------------------------
   Responsive Design
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .bento-card.large {
    grid-column: span 2;
    grid-row: span 1;
  }

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

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-video-container {
    order: -1;
  }

  .hero-video-placeholder {
    min-height: 200px;
  }
}

@media (max-width: 768px) {
  /* Mobile Nav Layout */
  .site-nav {
    flex-wrap: wrap;
  }

  /* Hide desktop nav links by default */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark-900);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0;
    border-bottom: 1px solid var(--dark-600);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 999;
  }

  .nav-links li {
    border-bottom: 1px solid var(--dark-600);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  /* Show nav links when active */
  .nav-links.is-open,
  .nav-links.active {
    display: flex;
  }

  /* Show hamburger button */
  .nav-toggle {
    display: flex !important;
    order: 2;
  }

  /* Hide CTA on mobile (or move to menu) */
  .nav-cta {
    display: none;
  }

  /* Hamburger Ã¢â€ â€™ X Animation */
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* Body overlay when menu open */
  body.nav-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    animation: fadeIn 0.3s ease;
  }

  body.nav-open {
    overflow: hidden;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .hero-video-placeholder {
    min-height: 180px;
  }

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

  .bento-card.large,
  .bento-card.wide {
    grid-column: span 1;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

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

  .page-title {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .site-nav {
    padding: 1rem;
  }

  .hero {
    padding: 6rem 1rem 3rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .stat-value {
    font-size: 2rem;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    justify-content: center;
  }
}

/* ==========================================================================
   THEME SWITCHER
   Aktivierung via URL: ?themes
   ========================================================================== */
.theme-switcher {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  font-family: var(--font-body);
}

.theme-switcher-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-accent);
  box-shadow:
    0 4px 20px rgba(var(--accent-rgb), 0.4),
    0 0 40px rgba(var(--accent-rgb), 0.2);
  transition: all 0.3s ease;
}

.theme-switcher-toggle:hover {
  transform: scale(1.1);
  box-shadow:
    0 6px 30px rgba(var(--accent-rgb), 0.5),
    0 0 60px rgba(var(--accent-rgb), 0.3);
}

.theme-switcher-toggle svg {
  width: 28px;
  height: 28px;
}

.theme-switcher-panel {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 280px;
  background: var(--bg-secondary);
  border: 1px solid var(--bg-card);
  border-radius: 16px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 1px rgba(255, 255, 255, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.theme-switcher-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.theme-switcher-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--bg-card);
}

.theme-switcher-header h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin: 0;
}

.theme-switcher-close {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.2s;
}

.theme-switcher-close:hover {
  background: var(--bg-card);
  color: var(--text-primary);
}

.theme-group {
  padding: 0.75rem 1.25rem;
}

.theme-group-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.theme-options {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
}

.theme-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem;
  background: transparent;
  border: 2px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

.theme-option:hover {
  background: var(--bg-elevated);
}

.theme-option.active {
  border-color: var(--accent);
  background: rgba(var(--accent-rgb), 0.1);
}

.theme-preview {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--preview-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  border: 3px solid var(--bg-secondary);
}

.theme-preview-light {
  background: var(--preview-bg, #F5F5F7);
  border: 3px solid var(--preview-color);
  position: relative;
}

.theme-preview-light::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--preview-color);
}

.theme-name {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.theme-option.active .theme-name {
  color: var(--accent);
}

.theme-check {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  opacity: 0;
  color: var(--accent);
  transition: opacity 0.2s;
}

.theme-option.active .theme-check {
  opacity: 1;
}

.theme-switcher-footer {
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--bg-card);
  text-align: center;
}

.theme-switcher-footer small {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* Theme Tabs */
.theme-tabs {
  display: flex;
  gap: 0.25rem;
  padding: 0 1rem;
  margin-bottom: 1rem;
  background: var(--bg-card);
  border-radius: 8px;
  margin: 0 1rem 1rem;
}

.theme-tab {
  flex: 1;
  padding: 0.625rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  background: transparent;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.theme-tab:hover {
  color: var(--text-primary);
}

.theme-tab.active {
  color: var(--accent);
  background: rgba(255, 107, 74, 0.1);
}

/* Tab Content */
.theme-tab-content {
  display: none;
}

.theme-tab-content.active {
  display: block;
}

/* Custom Color Section */
.custom-color-section {
  padding: 0 1.25rem;
}

.color-picker-group {
  margin-bottom: 1rem;
}

.color-picker-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.color-picker-row {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.color-picker-input {
  width: 48px;
  height: 36px;
  padding: 2px;
  border: 2px solid var(--bg-elevated);
  border-radius: 8px;
  background: var(--bg-card);
  cursor: pointer;
  overflow: hidden;
}

.color-picker-input::-webkit-color-swatch-wrapper {
  padding: 0;
}

.color-picker-input::-webkit-color-swatch {
  border: none;
  border-radius: 4px;
}

.color-hex-input {
  flex: 1;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-family: 'Outfit', monospace;
  color: var(--text-primary);
  background: var(--bg-card);
  border: 2px solid var(--bg-elevated);
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.color-hex-input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-color: var(--accent);
}

/* Color Sliders */
.color-slider-group {
  margin-bottom: 1rem;
}

.hue-slider,
.saturation-slider,
.lightness-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  margin-top: 0.5rem;
}

.hue-slider {
  background: linear-gradient(to right,
    hsl(0, 100%, 50%),
    hsl(60, 100%, 50%),
    hsl(120, 100%, 50%),
    hsl(180, 100%, 50%),
    hsl(240, 100%, 50%),
    hsl(300, 100%, 50%),
    hsl(360, 100%, 50%)
  );
}

.saturation-slider {
  background: linear-gradient(to right,
    hsl(var(--preview-hue, 14), 0%, 50%),
    hsl(var(--preview-hue, 14), 100%, 50%)
  );
}

.lightness-slider {
  background: linear-gradient(to right,
    hsl(var(--preview-hue, 14), 100%, 20%),
    hsl(var(--preview-hue, 14), 100%, 50%),
    hsl(var(--preview-hue, 14), 100%, 80%)
  );
}

.hue-slider::-webkit-slider-thumb,
.saturation-slider::-webkit-slider-thumb,
.lightness-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--bg-dark);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  cursor: grab;
}

.hue-slider::-webkit-slider-thumb:active,
.saturation-slider::-webkit-slider-thumb:active,
.lightness-slider::-webkit-slider-thumb:active {
  cursor: grabbing;
}

/* Mode Toggle */
.mode-toggle-group {
  margin-bottom: 1rem;
}

.mode-toggle {
  display: flex;
  gap: 0.5rem;
}

.mode-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.625rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 2px solid var(--bg-elevated);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.mode-btn:hover {
  color: var(--text-primary);
  border-color: var(--text-muted);
}

.mode-btn.active {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(255, 107, 74, 0.1);
}

.mode-btn svg {
  width: 14px;
  height: 14px;
}

/* Custom Preview */
.custom-preview {
  margin-bottom: 1rem;
}

.custom-preview-box {
  padding: 1rem;
  border-radius: 12px;
  background: var(--bg-card);
  border: 2px solid var(--bg-elevated);
  transition: all 0.3s;
  --preview-accent: #F49B31;
}

.custom-preview-box.preview-light {
  background: #F5F5F7;
  border-color: #E5E5E7;
}

.preview-label {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.preview-light .preview-label {
  color: #6B6B76;
}

.preview-elements {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.preview-btn {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
  background: var(--preview-accent);
  border-radius: 6px;
}

.preview-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--preview-accent);
}

.preview-light .preview-text {
  color: var(--preview-accent);
}

.preview-accent {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--preview-accent);
}

/* Apply Button */
.custom-apply-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  background: var(--accent);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 0.5rem;
}

.custom-apply-btn:hover {
  background: var(--accent-glow);
  transform: translateY(-1px);
}

.custom-apply-btn svg {
  width: 16px;
  height: 16px;
}

/* Theme Feedback Toast */
.theme-feedback {
  position: absolute;
  bottom: 70px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
  background: var(--success, #4ADE80);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(74, 222, 128, 0.3);
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  transition: all 0.3s ease;
  white-space: nowrap;
  z-index: 10001;
}

.theme-feedback.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.theme-feedback svg {
  flex-shrink: 0;
}

/* Custom Theme Support */
[data-theme="custom"] {
  /* Custom theme uses inline styles for --accent */
}

[data-theme="custom"][data-mode="light"] {
  --bg-dark: #FAFAFA;
  --bg-primary: #FAFAFA;
  --bg-secondary: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-elevated: #F5F5F7;
  --text-primary: #1A1A1E;
  --text-secondary: #6B6B76;
  --text-muted: #9090A0;
  --dark-900: #FAFAFA;
  --dark-800: #FFFFFF;
  --dark-700: #F5F5F7;
  --dark-600: #EAEAEC;
  --white: #1A1A1E;
}

/* Responsive fuer Theme Switcher */
@media (max-width: 480px) {
  .theme-switcher {
    bottom: 1rem;
    right: 1rem;
  }

  .theme-switcher-toggle {
    width: 48px;
    height: 48px;
  }

  .theme-switcher-panel {
    width: 260px;
    right: -0.5rem;
  }
}

/* ============================================
   AKTIVITAETEN SEITEN (Klettern, Bouldern, etc.)
   ============================================ */

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-elevated);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}

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

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Cards Grid Varianten */
.cards-grid.two-col {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
  .cards-grid.two-col {
    grid-template-columns: 1fr;
  }
}

/* Three Column Grid (z.B. Beach Tarife) */
.cards-grid.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

/* Cards in three-col Grid - gleiche Hoehe, Preis+Button immer unten */
.cards-grid.three-col .card {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Buttons nicht stretchen */
  height: 100%;
}

/* Liste fuellt variablen Platz - schiebt Preis+Button nach unten */
.cards-grid.three-col .card ul {
  flex-grow: 1;
}

.cards-grid.three-col .card .card-price {
  margin-top: auto; /* Falls keine Liste vorhanden */
  margin-bottom: 1rem;
}

@media (max-width: 1024px) {
  .cards-grid.three-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .cards-grid.three-col {
    grid-template-columns: 1fr;
  }
}

/* Difficulty Grid */
.difficulty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.difficulty-card {
  background: var(--bg-card);
  border: 2px solid var(--bg-elevated);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}

.difficulty-card:hover {
  transform: translateY(-4px);
}

.difficulty-card.easy {
  border-color: #4ADE80;
}

.difficulty-card.easy .difficulty-grade {
  color: #4ADE80;
}

.difficulty-card.medium {
  border-color: #FBBF24;
}

.difficulty-card.medium .difficulty-grade {
  color: #FBBF24;
}

.difficulty-card.hard {
  border-color: #F97316;
}

.difficulty-card.hard .difficulty-grade {
  color: #F97316;
}

.difficulty-card.expert {
  border-color: #EF4444;
}

.difficulty-card.expert .difficulty-grade {
  color: #EF4444;
}

.difficulty-grade {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.difficulty-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.difficulty-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0;
}

/* Boulder Farbsystem - 6 Schwierigkeitsgrade */
.difficulty-grid-6 {
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.difficulty-color {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  margin: 0 auto 0.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.difficulty-dots {
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.difficulty-grid-6 .difficulty-grade {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.difficulty-grid-6 .difficulty-label {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.difficulty-grid-6 .difficulty-desc {
  font-size: 0.8rem;
}

@media (max-width: 900px) {
  .difficulty-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .difficulty-grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .difficulty-grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .difficulty-grid {
    grid-template-columns: 1fr;
  }

  .difficulty-grade {
    font-size: 2rem;
  }

  .difficulty-grid-6 .difficulty-card {
    padding: 1rem;
  }

  .difficulty-color {
    width: 40px;
    height: 40px;
  }
}

/* Price Table */
.price-table-container {
  max-width: 700px;
  margin: 0 auto;
  overflow-x: auto;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
}

.price-table th,
.price-table td {
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--bg-elevated);
}

.price-table th {
  background: var(--bg-elevated);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
}

.price-table td {
  font-size: 1rem;
  color: var(--text-primary);
}

.price-table td:not(:first-child) {
  font-weight: 600;
  color: var(--accent);
}

.price-table tbody tr:last-child td {
  border-bottom: none;
}

.price-table tbody tr:hover {
  background: rgba(var(--accent-rgb), 0.05);
}

.price-table small {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
}

@media (max-width: 600px) {
  .price-table th,
  .price-table td {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
}

/* ============================================
   PRICE PAGE - Tab Navigation & Enhanced Styles
   ============================================ */

/* Tab Navigation Wrapper */
.price-tabs-wrapper {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--bg-elevated);
  position: sticky;
  top: 70px;
  z-index: 100;
  padding: 0;
}

.price-tabs {
  display: flex;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.price-tabs::-webkit-scrollbar {
  display: none;
}

.price-tab {
  flex: 1;
  padding: 1rem 1.5rem;
  text-align: center;
  color: var(--text-secondary);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
}

.price-tab:hover {
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.05);
}

.price-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* Price Section with scroll margin */
.price-section {
  scroll-margin-top: 140px;
}

/* Section Subtitle */
.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

/* Early Bird Highlight Row */
.price-row-highlight {
  background: rgba(var(--accent-rgb), 0.1) !important;
  position: relative;
}

.price-row-highlight td:first-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent);
}

.price-row-highlight td {
  position: relative;
}

/* Price Label in tables */
.price-label {
  display: block;
  font-weight: 600;
  color: var(--text-primary);
}

.price-table td small {
  display: block;
  margin-top: 0.25rem;
}

/* Price Info Box */
.price-info-box {
  max-width: 700px;
  margin: 1.5rem auto 0;
  padding: 1rem 1.5rem;
  background: var(--bg-elevated);
  border-radius: 12px;
  text-align: center;
}

.price-info-box p {
  color: var(--text-secondary);
  margin: 0.5rem 0;
  font-size: 0.95rem;
}

.price-info-box.highlight {
  background: rgba(var(--accent-rgb), 0.1);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
}

.price-info-box.highlight p {
  color: var(--accent);
}

.price-info-box.small {
  font-size: 0.85rem;
  padding: 0.75rem 1rem;
  margin-top: 1rem;
}

.price-info-box.small p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Price CTA */
.price-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* Price Subsection */
.price-subsection {
  margin-bottom: 3rem;
}

.price-subsection:last-of-type {
  margin-bottom: 0;
}

.price-subsection-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}

.price-subsection-title small {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .price-tabs-wrapper {
    top: 60px;
  }

  .price-tab {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    flex: none;
    min-width: auto;
  }

  .price-section {
    scroll-margin-top: 120px;
  }

  .price-cta {
    flex-direction: column;
    align-items: center;
  }

  .price-cta a {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

/* ============================================
   MODAL
   ============================================ */

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  overflow-y: auto;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.modal.is-open {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  opacity: 1;
}

.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--bg-elevated);
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  margin: 2rem auto;
  animation: modalSlideIn 0.3s ease;
}

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

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 2rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
}

.modal-close:hover {
  background: var(--bg-elevated);
  color: var(--accent);
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.modal-subtitle {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* Form Styles */
.partner-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.partner-form .form-group {
  margin-bottom: 1.25rem;
}

.partner-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.partner-form input,
.partner-form select,
.partner-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--bg-primary);
  border: 1px solid var(--bg-elevated);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.partner-form input:focus,
.partner-form select:focus,
.partner-form textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.2);
}

.partner-form input::placeholder,
.partner-form textarea::placeholder {
  color: var(--text-muted);
}

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

.partner-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B6B76' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-hint {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.form-message {
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  text-align: center;
}

.form-message.success {
  background: rgba(74, 222, 128, 0.15);
  color: #4ADE80;
  border: 1px solid rgba(74, 222, 128, 0.3);
}

.form-message.error {
  background: rgba(239, 68, 68, 0.15);
  color: #EF4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

@media (max-width: 600px) {
  .modal {
    padding: 1rem;
  }

  .modal-content {
    padding: 1.5rem;
    margin: 1rem auto;
  }

  .modal-title {
    font-size: 1.5rem;
  }
}

/* ============================================
   PRICE CALCULATOR v2
   ============================================ */

/* Early Bird Banner */
.early-bird-banner {
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-glow) 100%);
  padding: 12px 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-900);
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.early-bird-banner.active {
  background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
}

.early-bird-prices {
  opacity: 0.9;
}

/* Activity Tabs */
.activity-tabs-wrapper {
  padding: 0 20px 32px;
  max-width: 900px;
  margin: 0 auto;
}

.activity-tabs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.activity-tabs::-webkit-scrollbar {
  display: none;
}

.activity-tab {
  flex: 1 0 auto;
  min-width: 140px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--text-secondary);
}

.activity-tab:hover {
  background: rgba(var(--accent-rgb), 0.1);
  border-color: rgba(var(--accent-rgb), 0.3);
}

.activity-tab.active {
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.2) 0%, rgba(var(--accent-rgb), 0.1) 100%);
  border-color: var(--accent);
  color: var(--text-primary);
}

.activity-tab .tab-icon {
  font-size: 28px;
}

.activity-tab .tab-label {
  font-weight: 600;
  font-size: 14px;
}

.activity-tab .tab-sub {
  font-size: 11px;
  opacity: 0.7;
}

/* Activity Tabs - Overflow Fix fuer Mobile */
.activity-tabs-wrapper {
  overflow: visible;
}

.activity-tabs {
  padding-right: 3rem; /* Mehr Platz fuer letzte Card (Bug 2 Fix) */
}

/* ============================================================
   PREISSEITE LAYOUT - Stacked (untereinander)
   Mobile-first, 50/50 Grid auf großen Screens
   ============================================================ */
.price-calculator-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 20px;
  max-width: 900px;
  margin: 0 auto;
}

/* Preise Detail Section - Gleiche Breite wie Calculator */
.preise-detail-section {
  width: 800px;
  max-width: 100%;
  order: 1 !important; /* MUSS zuerst erscheinen */
  padding: 0 20px;
  margin: 0 auto;
  box-sizing: border-box;
}

.preise-detail-section .section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 24px;
}

/* Calculator Section - Volle Breite, DANACH anzeigen */
.calculator-section {
  max-width: 100%;
  width: 800px;
  order: 2 !important; /* MUSS danach erscheinen */
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Desktop: Auch untereinander (stacked), nur breiter */
@media (min-width: 1100px) {
  .price-calculator-main {
    max-width: 900px;
    gap: 32px;
  }

  .calculator-section,
  .preise-detail-section {
    width: 800px;
  }
}

/* ============================================================
   CALCULATOR CARD - Einklappbar mit Smooth Animation
   Basierend auf CSS Grid 0fr/1fr Technik (Best Practice)
   ============================================================ */
.calculator-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  overflow: hidden;
}

/* Der innere Accordion Container */
.calculator-accordion {
  background: transparent;
  border: none;
  border-radius: 0;
  margin-bottom: 0;
}

/* Header/Toggle Button */
.calculator-accordion-header {
  width: 100%;
  padding: 24px 28px;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.calculator-accordion-header:hover {
  background: rgba(255, 255, 255, 0.02);
}

.calculator-accordion-header:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: -2px;
}

.calculator-title-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.calculator-icon {
  color: var(--coral);
  display: flex;
  align-items: center;
}

.calculator-icon svg {
  width: 28px;
  height: 28px;
}

/* Chevron Icon Animation */
.calculator-accordion .accordion-icon {
  color: var(--coral);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
}

.calculator-accordion[data-state="open"] .accordion-icon,
.calculator-accordion.open .accordion-icon {
  transform: rotate(180deg);
}

/* ============================================================
   GRID 0fr/1fr ANIMATION - Smooth Height Transition
   ============================================================ */
.calculator-accordion-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.calculator-accordion[data-state="open"] .calculator-accordion-wrapper,
.calculator-accordion.open .calculator-accordion-wrapper {
  grid-template-rows: 1fr;
}

/* Der Content muss min-height: 0 haben fuer Grid Animation */
.calculator-accordion-content {
  overflow: hidden;
  min-height: 0;
}

/* Inner Wrapper fuer Padding (ausserhalb des overflow) */
.calculator-accordion-inner {
  padding: 24px 28px;
}

/* ============================================================
   REDUCED MOTION - Accessibility
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .calculator-accordion-wrapper {
    transition: none;
  }
  .calculator-accordion .accordion-icon {
    transition: none;
  }
}

/* ============================================================
   DESKTOP LAYOUT - Sticky Calculator (ab 1100px, konsistent mit Grid)
   ============================================================ */
@media (min-width: 1100px) {
  .calculator-card {
    max-height: calc(100vh - 140px);
    overflow-y: auto;
  }

  /* Scrollbar Styling */
  .calculator-card::-webkit-scrollbar {
    width: 6px;
  }

  .calculator-card::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
  }

  .calculator-card::-webkit-scrollbar-thumb {
    background: var(--coral);
    border-radius: 3px;
  }
}

/* ============================================================
   MOBILE OPTIMIERUNG
   ============================================================ */
@media (max-width: 767px) {
  .calculator-accordion-header {
    padding: 20px;
    font-size: clamp(1.1rem, 4vw, 1.25rem);
  }

  .calculator-accordion-inner {
    padding: 20px;
  }

  .calculator-icon svg {
    width: 24px;
    height: 24px;
  }

  /* Safe area fuer iOS */
  .calculator-card {
    margin-bottom: calc(80px + env(safe-area-inset-bottom, 0px));
  }
}

/* ============================================================
   ACTIVITY TABS IM CALCULATOR CONTENT
   Kompaktere Version fuer den einklappbaren Bereich
   ============================================================ */
.calculator-accordion-inner .activity-tabs-wrapper {
  margin: 0 0 24px 0;
  padding: 0;
  background: transparent;
  position: static;
}

.calculator-accordion-inner .activity-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 0;
  overflow: visible;
}

.calculator-accordion-inner .activity-tab {
  padding: 12px 8px;
  border-radius: 12px;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.calculator-accordion-inner .activity-tab .tab-icon {
  font-size: 1.25rem;
}

.calculator-accordion-inner .activity-tab .tab-icon svg {
  width: 20px;
  height: 20px;
}

.calculator-accordion-inner .activity-tab .tab-label {
  font-size: 0.8rem;
}

.calculator-accordion-inner .activity-tab .tab-sub {
  font-size: 0.65rem;
}

/* 4 Spalten auf groesseren Screens innerhalb Calculator */
@media (min-width: 500px) {
  .calculator-accordion-inner .activity-tabs {
    grid-template-columns: repeat(4, 1fr);
  }

  .calculator-accordion-inner .activity-tab {
    padding: 10px 6px;
  }
}

/* Person Stepper */
.person-stepper {
  margin-bottom: 24px;
}

.stepper-label {
  display: block;
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 12px;
}

.stepper-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.stepper-icon {
  font-size: 20px;
}

.stepper-name {
  display: block;
  font-weight: 500;
}

.stepper-sub {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
}

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

.stepper-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--text-primary);
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s;
}

.stepper-btn:hover {
  background: rgba(var(--accent-rgb), 0.3);
}

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

.stepper-value {
  width: 32px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}

/* Family Badge */
.family-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(76, 175, 80, 0.15);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 20px;
}

.family-icon {
  font-size: 24px;
}

.family-text {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
}

/* Beach Selector */
.beach-selector {
  margin-bottom: 24px;
}

.beach-options {
  display: flex;
  gap: 12px;
}

.beach-option {
  flex: 1;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.beach-option input {
  display: none;
}

.beach-option:hover {
  border-color: rgba(var(--accent-rgb), 0.3);
}

.beach-option.active {
  background: rgba(var(--accent-rgb), 0.1);
  border-color: var(--accent);
}

.beach-duration {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
}

.beach-price {
  display: block;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.2rem;
}

/* Beach Tarif Toggle - 3 Buttons nebeneinander */
.beach-tarif-toggle {
  margin-bottom: 0;
}

.beach-tarif-toggle .toggle-btn[data-tarif="sommer"] {
  border-color: var(--coral);
}

.beach-tarif-toggle .toggle-btn[data-tarif="sommer"].active {
  background: rgba(255, 107, 74, 0.15);
  border-color: var(--coral);
  color: var(--coral);
}

/* Beach Note Text */
.beach-note {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Time Toggle */
.time-toggle {
  margin-bottom: 24px;
}

.toggle-label {
  display: block;
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 10px;
}

.toggle-buttons {
  display: flex;
  gap: 10px;
}

.toggle-btn {
  flex: 1;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
}

.toggle-btn:hover {
  border-color: rgba(var(--accent-rgb), 0.3);
}

.toggle-btn.active {
  background: rgba(var(--accent-rgb), 0.15);
  border-color: var(--accent);
  color: var(--accent);
}

.toggle-sub {
  display: block;
  font-size: 12px;
  opacity: 0.7;
  margin-top: 2px;
}

/* Rental Section */
.rental-section {
  margin-bottom: 24px;
}

.rental-label {
  display: block;
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 12px;
}

.rental-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.rental-option:hover {
  border-color: rgba(var(--accent-rgb), 0.3);
}

.rental-option input:checked + .rental-info,
.rental-option input:checked ~ .rental-name {
  color: var(--accent);
}

.rental-option input:checked ~ .rental-price {
  color: var(--accent);
}

.rental-option.disabled {
  opacity: 0.4;
  pointer-events: none;
}

.rental-option.rental-paket {
  background: rgba(var(--accent-rgb), 0.08);
  border-color: rgba(var(--accent-rgb), 0.2);
}

.rental-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.rental-info {
  flex: 1;
}

.rental-name {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.rental-badge {
  font-size: 10px;
  padding: 2px 6px;
  background: var(--accent);
  color: var(--dark-900);
  border-radius: 4px;
  font-weight: 600;
}

.rental-desc {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
}

.rental-price {
  color: var(--text-secondary);
  font-size: 14px;
}

.rental-divider {
  text-align: center;
  color: var(--text-muted);
  font-size: 12px;
  margin: 12px 0;
}

/* Price Breakdown */
.price-breakdown {
  background: rgba(var(--accent-rgb), 0.08);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  font-size: 14px;
}

.breakdown-row.highlight {
  color: #4CAF50;
}

.breakdown-sub {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
}

.breakdown-price {
  font-weight: 500;
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 600;
  font-size: 16px;
}

.total-price {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--accent);
}

/* Booking Summary (Pre-Selection Flow) */
.booking-summary {
  background: rgba(var(--accent-rgb), 0.08);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  border-radius: 16px;
  padding: 24px;
  margin-top: 24px;
}

.booking-summary .summary-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.booking-summary .summary-content p {
  margin: 8px 0;
  color: var(--text-secondary);
  font-size: 14px;
}

.booking-summary .summary-content strong {
  color: var(--text-primary);
}

.booking-summary .summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  margin: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.booking-summary .summary-total .total-price {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--accent);
}

.booking-summary .summary-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.booking-summary .cta-button.btn-large {
  display: block;
  width: 100%;
  padding: 18px 24px;
  text-align: center;
  font-size: 18px;
}

/* iframe Modal (Webclimber Booking) - MUSS ueber allem sein */
.modal-overlay {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95) !important;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999 !important; /* Hoeher als ALLES, inkl. fixed Videos */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.modal-container {
  z-index: 100000 !important;
  position: relative;
  background: var(--bg-primary);
  border-radius: 16px;
  width: 95%;
  max-width: 900px;
  height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-header {
  padding: 16px 24px;
  background: var(--bg-card);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  color: var(--text-primary);
  font-family: var(--font-display);
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  transition: color 0.2s;
}

.modal-close:hover {
  color: var(--accent);
}

.modal-body {
  flex: 1;
  position: relative;
}

.modal-body iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.iframe-error {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 40px;
  display: none;
}

.iframe-error p {
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.iframe-error .btn-primary {
  display: inline-block;
  padding: 12px 24px;
  background: var(--accent);
  color: var(--bg-primary);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

/* Modal Loading Spinner */
.modal-body .loading-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
}

.modal-body .spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: modalSpin 1s linear infinite;
  margin: 0 auto 16px;
}

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

.modal-body .loading-spinner p {
  color: var(--text-secondary);
  font-size: 14px;
}

/* iframe fade transition */
.modal-body iframe {
  transition: opacity 0.3s ease;
}

/* Upsell Box */
.upsell-box {
  display: flex;
  gap: 12px;
  background: rgba(255, 200, 50, 0.1);
  border: 1px solid rgba(255, 200, 50, 0.2);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 20px;
}

.upsell-icon {
  font-size: 24px;
}

.upsell-text {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--text-secondary);
}

/* CTA Button */
.cta-button {
  display: block;
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-glow) 100%);
  border: none;
  border-radius: 12px;
  color: var(--dark-900);
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 1px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(var(--accent-rgb), 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(var(--accent-rgb), 0.4);
}

/* Trust Bar */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-muted);
}

/* Pricing Cards Section */
.pricing-cards-section {
  width: 100%;
}

.cards-section-title {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

/* Pricing Card */
.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 24px;
  position: relative;
  transition: transform 0.2s, border-color 0.2s;
}

.pricing-card:hover {
  border-color: rgba(var(--accent-rgb), 0.3);
}

.pricing-card.highlighted {
  background: rgba(var(--accent-rgb), 0.08);
  border-color: var(--accent);
  transform: scale(1.02);
}

.pricing-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--dark-900);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.pricing-badge.secondary {
  background: #4CAF50;
}

.pricing-title {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 16px;
  text-align: center;
  margin-top: 8px;
}

.pricing-price {
  text-align: center;
  margin-bottom: 8px;
}

.price-number {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--accent);
}

.price-unit {
  font-size: 16px;
  color: var(--text-secondary);
  margin-left: 4px;
}

.pricing-per-unit {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.pricing-features li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-cta {
  display: block;
  width: 100%;
  padding: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
}

.pricing-cta:hover {
  background: rgba(255, 255, 255, 0.15);
}

.pricing-cta.highlighted {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-glow) 100%);
  border: none;
  color: var(--dark-900);
}

.pricing-note {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  padding: 12px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  margin-top: auto;
}

/* Accordion Section */
.accordion-section {
  padding: 48px 20px;
  max-width: 100%;
  width: 800px;
  margin: 0 auto;
  box-sizing: border-box;
}

.accordion {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  padding: 18px 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header:hover {
  background: rgba(255, 255, 255, 0.02);
}

.accordion-icon {
  color: var(--accent);
  transition: transform 0.3s;
}

.accordion.open .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  display: none;
  padding: 0 24px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.accordion.open .accordion-content {
  display: block;
}

/* Detail Tables */
.price-detail-section {
  margin-top: 20px;
}

.price-detail-section h4 {
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.detail-table {
  width: 100%;
  border-collapse: collapse;
}

.detail-table th,
.detail-table td {
  padding: 12px 8px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-table th {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 12px;
}

.detail-table td {
  color: var(--text-secondary);
  font-size: 14px;
}

.detail-table td:nth-child(2) {
  color: var(--accent);
  font-weight: 600;
}

.detail-table .early-price {
  color: #4CAF50;
}

.detail-table .per-visit {
  color: var(--text-muted);
  font-size: 12px;
}

.detail-table .highlight-row {
  background: rgba(var(--accent-rgb), 0.1);
}

.table-badge {
  font-size: 10px;
  padding: 2px 6px;
  background: var(--accent);
  color: var(--dark-900);
  border-radius: 4px;
  font-weight: 600;
  margin-left: 8px;
}

.detail-note {
  margin-top: 16px;
  font-size: 14px;
}

.detail-note a {
  color: var(--accent);
  text-decoration: none;
}

/* Vor-Ort Hinweis bei nicht-buchbaren Preisen */
.vor-ort-hinweis {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(var(--accent-rgb), 0.08);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 13px;
}

.vor-ort-hinweis svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

/* Klickbare Preistabellen-Zeilen */
.detail-table-clickable .clickable-row {
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.detail-table-clickable .clickable-row:hover {
  background: rgba(var(--accent-rgb), 0.15);
}

.detail-table-clickable .clickable-row:active {
  transform: scale(0.99);
}

.detail-table .book-link {
  text-align: right;
  white-space: nowrap;
}

.detail-table .book-link span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
}

.detail-table .book-link svg {
  width: 14px;
  height: 14px;
}

/* Price Section Header mit Link */
.price-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.price-section-header .price-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.price-section-header .price-link:hover {
  background: rgba(var(--accent-rgb), 0.15);
}

.price-section-header .price-link svg {
  width: 14px;
  height: 14px;
}

.detail-note a:hover {
  text-decoration: underline;
}

/* Trust Section */
.trust-section {
  padding: 48px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.trust-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-icon {
  font-size: 32px;
}

.trust-item p {
  margin: 4px 0;
}

.trust-item small {
  color: var(--text-muted);
  font-size: 12px;
}

/* Wertgutscheine Section */
.gutschein-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(255, 107, 74, 0.1) 0%, rgba(255, 107, 74, 0.02) 100%);
  border-top: 1px solid rgba(255, 107, 74, 0.2);
  border-bottom: 1px solid rgba(255, 107, 74, 0.2);
}

.gutschein-content {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: center;
}

@media (max-width: 768px) {
  .gutschein-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.gutschein-info .section-tag {
  display: inline-block;
  background: rgba(255, 107, 74, 0.15);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.gutschein-info .section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.gutschein-info > p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.7;
}

.gutschein-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.gutschein-features li {
  padding: 8px 0;
  color: var(--text-secondary);
}

.gutschein-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Gutschein Preview Card */
.gutschein-visual {
  display: flex;
  justify-content: center;
}

.gutschein-card-preview {
  width: 260px;
  height: 160px;
  background: linear-gradient(135deg, var(--accent) 0%, #ff8a6a 100%);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 40px rgba(255, 107, 74, 0.3);
  transform: rotate(-3deg);
  transition: transform 0.3s ease;
}

.gutschein-card-preview:hover {
  transform: rotate(0deg) scale(1.02);
}

.preview-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(0, 0, 0, 0.6);
}

.preview-logo {
  font-family: var(--font-display);
  font-size: 28px;
  color: #0a0a0a;
  letter-spacing: 2px;
}

.preview-amount {
  font-family: var(--font-display);
  font-size: 36px;
  color: #0a0a0a;
}

.preview-tagline {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.6);
}

/* Partner Section */
.partner-section {
  text-align: center;
  padding: 32px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.partner-label {
  color: var(--text-muted);
  font-size: 12px;
  margin-bottom: 16px;
}

.partner-logos {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.partner-logo-link {
  text-decoration: none;
  transition: opacity 0.2s;
}

.partner-logo-link:hover {
  opacity: 0.8;
}

.partner-logo {
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 768px) {

  /* === MOBILE HORIZONTAL SPACING FIX === */
  .price-calculator-main {
    padding: 0 12px !important;
    gap: 16px !important;
  }

  .calculator-section,
  .preise-detail-section {
    padding: 0 !important;
    width: 100% !important;
  }

  .preise-detail-section .section-title {
    margin-bottom: 16px;
  }

  .calculator-card {
    padding: 16px 12px !important;
    border-radius: 16px;
  }

  .calculator-accordion-header {
    padding: 14px 12px;
  }

  .accordion {
    margin-bottom: 8px;
  }

  .accordion-header {
    padding: 14px 12px;
  }

  .accordion-content {
    padding: 12px;
  }
  /* === END MOBILE HORIZONTAL SPACING FIX === */

  .activity-tab {
    min-width: 120px;
    padding: 12px 16px;
  }

  .activity-tab .tab-icon {
    font-size: 24px;
  }

  .activity-tab .tab-label {
    font-size: 13px;
  }

  /* === MOBILE STEPPER FIX === */
  .stepper-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
  }

  .stepper-info {
    flex: 1;
    min-width: 0;
    gap: 8px;
  }

  .stepper-info > div {
    min-width: 0;
  }

  .stepper-name {
    font-size: 14px;
    word-break: break-word;
  }

  .stepper-sub {
    font-size: 11px;
    word-break: break-word;
  }

  .stepper-icon {
    font-size: 18px;
    flex-shrink: 0;
  }

  .stepper-controls {
    flex-shrink: 0;
    gap: 8px;
  }

  .stepper-btn {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .stepper-value {
    min-width: 24px;
    text-align: center;
  }
  /* === END MOBILE STEPPER FIX === */

  /* === MOBILE ACTIVITY TABS FIX === */
  .calculator-card .activity-tabs,
  .calculator-section .activity-tabs,
  .calculator-accordion-inner .activity-tabs {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px;
    width: 100%;
    padding: 0 !important;
  }

  .calculator-card .activity-tab,
  .calculator-section .activity-tab,
  .calculator-accordion-inner .activity-tab {
    min-width: unset !important;
    width: 100%;
    min-height: 70px;
    padding: 10px 8px;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .calculator-card .activity-tab .tab-icon,
  .calculator-section .activity-tab .tab-icon,
  .calculator-accordion-inner .activity-tab .tab-icon {
    font-size: 20px;
    margin-bottom: 4px;
  }

  .calculator-card .activity-tab .tab-label,
  .calculator-section .activity-tab .tab-label,
  .calculator-accordion-inner .activity-tab .tab-label {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
  }

  .calculator-card .activity-tab .tab-sub,
  .calculator-section .activity-tab .tab-sub,
  .calculator-accordion-inner .activity-tab .tab-sub {
    font-size: 9px;
    line-height: 1.2;
    opacity: 0.7;
  }
  /* === END MOBILE ACTIVITY TABS FIX === */

  /* === MOBILE RENTAL OPTIONS FIX === */
  .rental-section {
    margin-top: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .rental-section .rental-label {
    grid-column: 1 / -1;
  }

  .rental-option {
    margin-bottom: 0;
    padding: 10px 8px;
    flex-direction: column;
    text-align: center;
    gap: 2px;
    min-height: 55px;
    justify-content: center;
    position: relative;
  }

  .rental-option input[type="checkbox"] {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 14px;
    height: 14px;
  }

  .rental-option .rental-info {
    flex-direction: column;
    align-items: center;
  }

  .rental-name {
    font-size: 11px;
    line-height: 1.2;
  }

  .rental-price {
    font-size: 10px;
    opacity: 0.8;
  }

  .rental-badge {
    font-size: 7px;
    padding: 1px 3px;
  }

  .rental-sub {
    font-size: 8px;
  }
  /* === END MOBILE RENTAL OPTIONS FIX === */

  /* === MOBILE WHITESPACE REDUKTION === */
  .person-stepper {
    margin-bottom: 16px;
  }

  .stepper-label,
  .rental-label {
    margin-bottom: 8px;
    font-size: 13px;
  }

  .stepper-row {
    padding: 10px 0;
  }

  .calculator-accordion-inner {
    padding: 16px !important;
  }

  .booking-summary {
    margin-top: 16px;
  }
  /* === END MOBILE WHITESPACE REDUKTION === */

  /* === MOBILE GESAMT-ANZEIGE FIX === */
  .price-breakdown,
  .total-row {
    text-align: center;
  }

  .total-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 16px;
  }

  .total-price {
    font-size: 28px;
    font-weight: 700;
  }

  .booking-summary {
    padding: 16px;
  }

  .summary-total {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }
  /* === END MOBILE GESAMT-ANZEIGE FIX === */

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

  .pricing-card.highlighted {
    transform: none;
  }
}

/* ==========================================================================
   KURSSEITEN KOMPONENTEN
   ========================================================================== */

/* --- Filter Tabs --- */
.kurse-filter {
  padding: 0 20px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.filter-tab {
  padding: 12px 24px;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 100px;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

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

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

/* Focus state fuer Accessibility */
.filter-tab:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* --- Highlight-Sektion --- */
.kurs-highlight-section {
  padding: 0 20px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.kurs-highlight-card {
  background: linear-gradient(135deg, var(--dark-700) 0%, var(--dark-800) 100%);
  border: 2px solid var(--accent);
  border-radius: 24px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.kurs-highlight-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.highlight-badge-wrapper {
  position: absolute;
  top: 20px;
  right: 20px;
}

.highlight-badge {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-glow) 100%);
  color: var(--dark-900);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: auto;
  max-width: max-content;
}

.highlight-content {
  position: relative;
  z-index: 1;
}

.highlight-label {
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.highlight-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.1;
}

.highlight-description {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.highlight-features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.highlight-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 14px;
}

.highlight-feature svg {
  color: var(--accent);
  flex-shrink: 0;
}

.highlight-cta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.highlight-price-box {
  background: var(--dark-900);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  min-width: 200px;
}

.highlight-price-label {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 4px;
}

.highlight-price {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
}

.highlight-price-suffix {
  color: var(--text-secondary);
  font-size: 16px;
  display: block;
  margin-top: 4px;
}

.highlight-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-glow) 100%);
  border-radius: 12px;
  color: var(--dark-900);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(var(--accent-rgb), 0.3);
}

.highlight-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(var(--accent-rgb), 0.4);
}

/* --- Kurse Grid --- */
.kurse-grid-section {
  padding: 0 20px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Kategorie-Bilder - nur EIN Bild sichtbar */
.kategorie-bilder {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto 2rem;
}

.kategorie-bild {
  display: none;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.kategorie-bild.active {
  display: block;
  animation: fadeIn 0.3s ease forwards;
}

.kategorie-bild img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.kategorie-bild-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.kategorie-bild-label span {
  color: white;
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.kurse-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text-primary);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.kurse-section-title::before {
  content: '';
  width: 4px;
  height: 24px;
  background: var(--accent);
  border-radius: 2px;
}

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

.kurs-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-card);
}

.kurs-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-card-hover);
}

.kurs-card.hidden {
  display: none;
}

.kurs-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.kurs-icon {
  width: 48px;
  height: 48px;
  background: rgba(var(--accent-rgb), 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 24px;
}

/* Dezenterer Badge - positioniert am oberen Rand */
.kurs-badge {
  position: absolute;
  top: -10px;
  left: 20px;
  background: var(--accent);
  color: var(--bg-primary);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(var(--accent-rgb), 0.3);
}

.kurs-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.kurs-description {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.kurs-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--text-muted);
}

.kurs-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.kurs-meta-item svg {
  color: var(--accent);
  width: 16px;
  height: 16px;
}

.kurs-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--accent);
  border: none;
  border-radius: 100px;
  color: var(--bg-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.kurs-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(var(--accent-rgb), 0.3);
}

/* --- FAQ Sektion --- */
.kurse-faq-section {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 40px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--dark-700);
  border: 1px solid var(--dark-600);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item[open] {
  border-color: var(--accent);
}

.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 16px;
  list-style: none;
  transition: color 0.3s ease;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 24px;
  color: var(--accent);
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-item[open] .faq-question {
  color: var(--accent);
}

.faq-answer {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

/* --- Kontakt CTA --- */
.kurse-contact-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-cta-card {
  background: linear-gradient(135deg, var(--dark-700) 0%, var(--dark-800) 100%);
  border: 1px solid var(--dark-600);
  border-radius: 24px;
  padding: 48px;
  text-align: center;
}

.contact-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text-primary);
  margin-bottom: 16px;
}

.contact-cta-text {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

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

.contact-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
}

.contact-button.primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-glow) 100%);
  color: var(--dark-900);
}

.contact-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(var(--accent-rgb), 0.3);
}

.contact-button.secondary {
  background: var(--dark-600);
  color: var(--text-primary);
  border: 1px solid var(--dark-500);
}

.contact-button.secondary:hover {
  background: var(--dark-500);
  border-color: var(--accent);
}

/* --- Filter Animationen --- */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}

/* --- Responsive Kursseiten --- */
@media (max-width: 900px) {
  .kurs-highlight-card {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .highlight-cta {
    align-items: stretch;
  }

  .highlight-price-box {
    min-width: auto;
  }

  .highlight-badge-wrapper {
    position: static;
    margin-bottom: 16px;
  }

  .highlight-badge {
    display: inline-flex;
  }
}

@media (max-width: 600px) {
  .filter-tabs {
    gap: 8px;
  }

  .filter-tab {
    padding: 10px 16px;
    font-size: 13px;
    flex: 1 1 calc(50% - 4px);
    justify-content: center;
  }

  .kurse-grid {
    grid-template-columns: 1fr;
    overflow-x: hidden;
  }

  /* Kurse Container - kein Overflow nach rechts */
  .kurse-liste,
  .courses-list {
    overflow-x: hidden;
  }

  .kurs-card {
    padding: 20px;
    overflow: hidden;
    border-radius: 16px;
    width: 100%;
    max-width: 100%;
    flex-shrink: 0;
  }

  .kurs-card img {
    max-width: 100%;
    height: auto;
  }

  .contact-cta-card {
    padding: 32px 20px;
  }

  .contact-cta-buttons {
    flex-direction: column;
  }

  .contact-button {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   STARTSEITE NEUE SEKTIONEN
   ========================================================================== */

/* --- Extras Sektion (Sauna & Fitness) --- */
.extras-section {
  padding: 80px 20px;
  background: var(--dark-800);
}

.extras-content {
  max-width: 1200px;
  margin: 0 auto;
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .extras-grid {
    grid-template-columns: 1fr;
  }
}

.extras-card {
  background: var(--dark-700);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--dark-600);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.extras-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--coral);
}

.extras-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.extras-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.75rem 0;
  letter-spacing: 0.02em;
}

.extras-desc {
  font-size: 1rem;
  color: var(--gray-300);
  line-height: 1.6;
  margin: 0 0 1.25rem 0;
  flex-grow: 1;
}

.extras-badge {
  display: inline-block;
  background: var(--coral);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: auto;
}

/* Badge Variante: Info (z.B. "Vor Ort buchbar") - gleicher Style wie Standard */
.extras-badge.extras-badge-info {
  background: var(--coral);
  color: var(--white);
  border: none;
  border-radius: 20px;
}

/* Light Mode */
[data-theme="light"] .extras-section,
[data-theme="light-coral"] .extras-section {
  background: var(--bg-secondary, #f5f5f5);
}

[data-theme="light"] .extras-card,
[data-theme="light-coral"] .extras-card {
  background: var(--bg-card, #ffffff);
  border-color: var(--border-color, #e5e5e5);
}

[data-theme="light"] .extras-title,
[data-theme="light-coral"] .extras-title {
  color: var(--text-primary);
}

[data-theme="light"] .extras-desc,
[data-theme="light-coral"] .extras-desc {
  color: var(--text-secondary);
}

/* --- USP Sektion --- */
.usp-section {
  padding: 80px 20px;
  background: var(--dark-800);
}

.usp-container {
  max-width: 1200px;
  margin: 0 auto;
}

.usp-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 48px;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.usp-item {
  text-align: center;
  padding: 24px;
}

.usp-icon {
  width: 72px;
  height: 72px;
  background: rgba(var(--accent-rgb), 0.15);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--accent);
}

.usp-item-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.usp-item-text {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* --- Preise Teaser --- */
.preise-teaser-section {
  padding: 80px 20px;
  background: var(--dark-900);
}

.preise-teaser-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.preise-teaser-label {
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 12px;
}

.preise-teaser-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1;
}

.preise-teaser-text {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.preise-preview-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.preise-preview-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--dark-700);
  border: 1px solid var(--dark-600);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.preise-preview-item.highlighted {
  border-color: var(--accent);
  background: rgba(var(--accent-rgb), 0.1);
}

.preise-preview-icon {
  width: 48px;
  height: 48px;
  background: var(--dark-600);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.preise-preview-item.highlighted .preise-preview-icon {
  background: var(--accent);
  color: var(--dark-900);
}

.preise-preview-info {
  display: flex;
  flex-direction: column;
}

.preise-preview-name {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 15px;
}

.preise-preview-price {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.preise-preview-hint {
  color: var(--text-muted);
  font-size: 12px;
}

.preise-teaser-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: transparent;
  border: 2px solid var(--accent);
  border-radius: 12px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.preise-teaser-button:hover {
  background: var(--accent);
  color: var(--dark-900);
}

.preise-teaser-visual {
  display: flex;
  justify-content: center;
}

.preise-visual-card {
  background: linear-gradient(135deg, var(--dark-700) 0%, var(--dark-800) 100%);
  border: 2px solid var(--accent);
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  position: relative;
  max-width: 320px;
}

.preise-visual-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--dark-900);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.preise-visual-icon {
  color: var(--accent);
  margin-bottom: 20px;
}

.preise-visual-title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.preise-visual-text {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.5;
}

/* --- Kurse Highlight --- */
.kurse-highlight-section {
  padding: 80px 20px;
  background: var(--dark-800);
}

.kurse-highlight-container {
  max-width: 1200px;
  margin: 0 auto;
}

.kurse-highlight-header {
  text-align: center;
  margin-bottom: 48px;
}

.kurse-highlight-label {
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 12px;
}

.kurse-highlight-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-primary);
  margin-bottom: 12px;
}

.kurse-highlight-subtitle {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto;
}

.kurse-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.kurse-highlight-card {
  background: var(--dark-700);
  border: 1px solid var(--dark-600);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  /* Flexbox fuer gleiche Hoehe und ausgerichtete Elemente */
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.kurse-highlight-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(var(--accent-rgb), 0.1) 0%, var(--dark-700) 100%);
}

.kurse-card-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--accent);
  color: var(--dark-900);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.kurse-card-badge.party {
  background: linear-gradient(135deg, #a855f7, #ec4899);
  color: #fff;
}

.kurse-card-badge.neu {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
}

.kurse-card-icon {
  width: 64px;
  height: 64px;
  background: rgba(var(--accent-rgb), 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--accent);
}

.kurse-card-icon i,
.kurse-card-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--accent);
  color: var(--accent);
}

.kurse-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.kurse-card-text {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
  min-height: 42px;
  flex-grow: 1; /* Fuellt variablen Platz - schiebt Meta+Button nach unten */
}

.kurse-card-meta {
  display: flex;
  justify-content: center;
  gap: 16px;
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 24px;
}

.kurse-card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  background: transparent;
  border: 1px solid var(--accent);
  border-radius: 12px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
}

.kurse-card-button:hover {
  background: var(--accent);
  color: var(--dark-900);
}

.kurse-highlight-card.featured .kurse-card-button {
  background: var(--accent);
  color: var(--dark-900);
}

.kurse-highlight-card.featured .kurse-card-button:hover {
  background: var(--accent-glow);
}

.kurse-highlight-footer {
  text-align: center;
}

.kurse-alle-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--dark-600);
  border: 1px solid var(--dark-500);
  border-radius: 12px;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
}

.kurse-alle-button:hover {
  background: var(--dark-500);
  border-color: var(--accent);
}

/* --- Partner Sektion Startseite --- */
.partner-section-home {
  padding: 60px 20px;
  background: var(--dark-900);
  border-top: 1px solid var(--dark-700);
}

.partner-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.partner-label {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 24px;
}

.partner-logos-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.partner-logo-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 32px;
  background: var(--dark-800);
  border: 1px solid var(--dark-600);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.partner-logo-item:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.partner-logo-icon {
  color: var(--accent);
}

.partner-logo-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.partner-name {
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.partner-subtitle {
  color: var(--text-muted);
  font-size: 13px;
}

/* --- Responsive Startseite Sektionen --- */
@media (max-width: 1024px) {
  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .preise-teaser-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .preise-teaser-visual {
    order: -1;
  }

  .kurse-highlight-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 600px) {
  .usp-section {
    padding: 60px 20px;
  }

  .usp-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .usp-item {
    padding: 16px;
  }

  .preise-teaser-section,
  .kurse-highlight-section {
    padding: 60px 20px;
  }

  .preise-visual-card {
    padding: 32px 24px;
  }

  .kurse-highlight-card {
    padding: 24px;
  }

  .partner-logo-item {
    padding: 16px 24px;
  }
}

/* ===================================================================
   KURSE-SEITE - KOMPLETTES REDESIGN
   =================================================================== */

/* --- Filter Tabs --- */
.kurse-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 0 20px 40px;
  max-width: 800px;
  margin: 0 auto;
}

.filter-tab {
  padding: 10px 20px;
  border: 1px solid var(--dark-600);
  border-radius: 999px;
  background: transparent;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

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

.filter-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  box-shadow: 0 4px 12px rgba(255, 107, 74, 0.3);
}

/* --- Featured Kurs Section (Hero-Style) --- */
.kurs-featured-section {
  padding: 0 20px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.kurs-featured-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 48px;
  background: linear-gradient(135deg, var(--dark-800) 0%, var(--dark-700) 100%);
  border: 1px solid var(--dark-600);
  border-radius: 24px;
  overflow: hidden;
}

.kurs-featured-badge {
  position: absolute;
  top: 0;
  left: 48px;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-glow) 100%);
  color: white;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 4px 12px rgba(255, 107, 74, 0.4);
}

.kurs-featured-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.kurs-featured-kategorie {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.kurs-featured-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
  margin: 0;
}

.kurs-featured-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.kurs-featured-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}

.kurs-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
}

.kurs-meta-item .icon {
  font-size: 18px;
}

.kurs-featured-preis {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 16px;
}

.kurs-featured-preis .preis-label {
  font-size: 14px;
  color: var(--text-muted);
}

.kurs-featured-preis .preis-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
}

.kurs-featured-preis .preis-suffix {
  font-size: 14px;
  color: var(--text-muted);
}

.kurs-featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--accent);
  color: white;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-top: 16px;
  width: fit-content;
}

.kurs-featured-cta:hover {
  background: var(--accent-glow);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 74, 0.4);
}

.kurs-featured-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--dark-700);
}

.kurs-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kurs-featured-image .placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 80px;
  background: linear-gradient(135deg, var(--dark-700) 0%, var(--dark-600) 100%);
}

/* --- Kurse Grid Section --- */
.kurse-grid-section {
  padding: 0 20px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.kurse-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 40px;
}

/* --- Kategorie-Header Sections --- */
.kategorie-header-section {
  max-width: 1200px;
  margin: 0 auto 2rem;
  padding: 0 1rem;
}

.kategorie-header-section.hidden {
  display: none;
}

.kategorie-header-card {
  display: flex;
  flex-direction: column;
  background: var(--dark-800);
  border: 1px solid var(--dark-600);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .kategorie-header-card {
    flex-direction: row;
    align-items: stretch;
  }
}

.kategorie-header-image {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .kategorie-header-image {
    width: 280px;
    height: auto;
    min-height: 200px;
  }
}

.kategorie-header-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kategorie-header-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .kategorie-header-content {
    padding: 2rem;
  }
}

.kategorie-header-badge {
  display: inline-block;
  width: fit-content;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  background: var(--accent);
  color: white;
}

/* Kategorie-spezifische Badge-Farben */
.kategorie-header-badge.kinder {
  background: #ec4899; /* Pink */
}

.kategorie-header-badge.gruppen {
  background: #3b82f6; /* Blau */
}

.kategorie-header-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.75rem 0;
  color: var(--text-primary);
}

@media (min-width: 768px) {
  .kategorie-header-title {
    font-size: 1.75rem;
  }
}

.kategorie-header-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Kategorie-spezifische Card-Akzente (farbige Leiste) */
/* Mobile: links, Desktop: oben */
.kategorie-einsteiger {
  border-left: 4px solid var(--accent);
}

.kategorie-kinder {
  border-left: 4px solid #ec4899;
}

.kategorie-gruppen {
  border-left: 4px solid #3b82f6;
}

@media (min-width: 768px) {
  .kategorie-einsteiger,
  .kategorie-kinder,
  .kategorie-gruppen {
    border-left: none;
  }

  .kategorie-einsteiger {
    border-top: 4px solid var(--accent);
  }

  .kategorie-kinder {
    border-top: 4px solid #ec4899;
  }

  .kategorie-gruppen {
    border-top: 4px solid #3b82f6;
  }
}

/* --- Section Title hidden state --- */
.kurse-section-title.hidden,
[data-title-alle].hidden {
  display: none;
}

/* --- Kurs Card Termin-Zeile --- */
.kurs-card-termin {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: var(--dark-700);
  border-radius: 0.5rem;
  margin: 0.75rem 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.kurs-card-termin .icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--accent);
}

/* --- Kurs Card Preis-Box --- */
.kurs-card-preis-box {
  background: var(--dark-700);
  border-radius: 12px;
  padding: 12px;
  margin: 12px 0;
}

.kurs-card-preis-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.35rem 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.kurs-card-preis-row:not(:last-of-type) {
  border-bottom: 1px solid var(--dark-600);
}

.kurs-card-preis-box .kurs-card-preis {
  font-weight: 700;
  color: var(--accent);
}

.kurs-card-preis-info {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}

.kurse-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  scroll-margin-top: 120px; /* Fix 2: Header-Offset fuer Anker */
}

/* --- Kurs Cards (Gleiche Hoehen) --- */
.kurs-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  background: var(--dark-800);
  border: 1px solid var(--dark-600);
  border-radius: 20px;
  transition: all 0.3s ease;
  min-height: 360px;
}

.kurs-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

/* Badge Varianten */
.kurs-card-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0 0 10px 10px;
  color: white;
}

.kurs-card-badge.termine {
  background: var(--accent);
}

.kurs-card-badge.level-up {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.kurs-card-badge.familie {
  background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.kurs-card-badge.party {
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

.kurs-card-badge.special {
  background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
}

.kurs-card-badge.business {
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
}

.kurs-card-badge.beliebt {
  background: linear-gradient(135deg, var(--accent) 0%, #ff8a5a 100%);
}

.kurs-card-badge.equipment {
  background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
}

.kurs-card-badge.daily {
  background: linear-gradient(135deg, #14b8a6 0%, #2dd4bf 100%);
}

.kurs-card-badge.hinweis {
  background: linear-gradient(135deg, #64748b 0%, #94a3b8 100%);
}

.kurs-card-badge.levelup {
  background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.kurs-card-badge.personal {
  background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
}

.kurs-card-badge.regelmaessig {
  background: linear-gradient(135deg, #14b8a6 0%, #2dd4bf 100%);
}

.kurs-card-badge.ferien {
  background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
}

.kurs-card-badge.familie {
  background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
}

.kurs-card-kategorie {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.kurs-card-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 56px;
  margin-bottom: 12px;
  color: var(--accent);
  overflow: visible;
}

.kurs-card-icon svg {
  width: 40px;
  height: 40px;
}

.kurs-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.kurs-card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
  flex-grow: 1;
}

.kurs-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--dark-600);
}

.kurs-card-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
}

.kurs-card-meta-item .icon {
  font-size: 16px;
}

.kurs-card-preis {
  font-weight: 600;
  color: var(--accent);
}

.kurs-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 24px;
  margin-top: 20px;
  background: var(--accent);
  color: white;
  font-weight: 600;
  font-size: 14px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.kurs-card-cta:hover {
  background: var(--accent-glow);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 107, 74, 0.35);
}

.kurs-card-cta.secondary {
  background: transparent;
  border: 1px solid var(--dark-600);
  color: var(--text-secondary);
}

.kurs-card-cta.secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255, 107, 74, 0.1);
  box-shadow: none;
}

/* --- FAQ Section (Kurse) --- */
.kurse-faq-section {
  padding: 60px 20px 80px;
  background: var(--dark-900);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.faq-container .section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 107, 74, 0.15);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 999px;
  margin-bottom: 16px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 40px;
  text-align: left;
}

.faq-item {
  background: var(--dark-800);
  border: 1px solid var(--dark-600);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-item:hover {
  border-color: var(--dark-500, #333);
}

.faq-item[open] {
  border-color: var(--accent);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-item p {
  padding: 0 24px 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

/* --- Kurse CTA Section --- */
.kurse-cta-section {
  padding: 0 20px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.kurse-cta-card {
  text-align: center;
  padding: 48px 40px;
  background: linear-gradient(135deg, rgba(255, 107, 74, 0.12) 0%, rgba(255, 107, 74, 0.04) 100%);
  border: 1px solid rgba(255, 107, 74, 0.25);
  border-radius: 24px;
}

.kurse-cta-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 12px 0;
}

.kurse-cta-card p {
  font-size: 16px;
  color: var(--text-secondary);
  margin: 0 0 24px 0;
}

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

/* --- Kurse-Seite Light Mode --- */
[data-theme="light"] .kurs-featured-card,
[data-theme="light-coral"] .kurs-featured-card,
[data-theme="light-blue"] .kurs-featured-card,
[data-theme="light-green"] .kurs-featured-card,
[data-theme="light-purple"] .kurs-featured-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .kurs-card,
[data-theme="light-coral"] .kurs-card,
[data-theme="light-blue"] .kurs-card,
[data-theme="light-green"] .kurs-card,
[data-theme="light-purple"] .kurs-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .kurs-card:hover,
[data-theme="light-coral"] .kurs-card:hover,
[data-theme="light-blue"] .kurs-card:hover,
[data-theme="light-green"] .kurs-card:hover,
[data-theme="light-purple"] .kurs-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

[data-theme="light"] .kurs-card-meta,
[data-theme="light-coral"] .kurs-card-meta,
[data-theme="light-blue"] .kurs-card-meta,
[data-theme="light-green"] .kurs-card-meta,
[data-theme="light-purple"] .kurs-card-meta {
  border-top-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .kurs-card-cta.secondary,
[data-theme="light-coral"] .kurs-card-cta.secondary,
[data-theme="light-blue"] .kurs-card-cta.secondary,
[data-theme="light-green"] .kurs-card-cta.secondary,
[data-theme="light-purple"] .kurs-card-cta.secondary {
  border-color: rgba(0, 0, 0, 0.15);
  color: var(--text-primary);
}

[data-theme="light"] .filter-tab,
[data-theme="light-coral"] .filter-tab,
[data-theme="light-blue"] .filter-tab,
[data-theme="light-green"] .filter-tab,
[data-theme="light-purple"] .filter-tab {
  border-color: rgba(0, 0, 0, 0.15);
  background: #ffffff;
}

[data-theme="light"] .faq-item,
[data-theme="light-coral"] .faq-item,
[data-theme="light-blue"] .faq-item,
[data-theme="light-green"] .faq-item,
[data-theme="light-purple"] .faq-item {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .kurse-cta-card,
[data-theme="light-coral"] .kurse-cta-card,
[data-theme="light-blue"] .kurse-cta-card,
[data-theme="light-green"] .kurse-cta-card,
[data-theme="light-purple"] .kurse-cta-card {
  background: linear-gradient(135deg, rgba(var(--accent-rgb, 255, 107, 74), 0.08) 0%, rgba(var(--accent-rgb, 255, 107, 74), 0.02) 100%);
  border-color: rgba(var(--accent-rgb, 255, 107, 74), 0.2);
}

[data-theme="light"] .kurs-featured-image,
[data-theme="light-coral"] .kurs-featured-image,
[data-theme="light-blue"] .kurs-featured-image,
[data-theme="light-green"] .kurs-featured-image,
[data-theme="light-purple"] .kurs-featured-image {
  background: #f0f0f0;
}

[data-theme="light"] .kurs-featured-image .placeholder,
[data-theme="light-coral"] .kurs-featured-image .placeholder,
[data-theme="light-blue"] .kurs-featured-image .placeholder,
[data-theme="light-green"] .kurs-featured-image .placeholder,
[data-theme="light-purple"] .kurs-featured-image .placeholder {
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}

/* --- Kurse Filter Animationen --- */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.kurs-card.hidden,
.kurs-featured-section.hidden {
  display: none;
}

/* --- Kurse-Seite Responsive --- */
@media (max-width: 900px) {
  .kurs-featured-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px;
  }

  .kurs-featured-badge {
    left: 32px;
  }

  .kurs-featured-image {
    order: -1;
    aspect-ratio: 16/9;
  }
}

@media (max-width: 600px) {
  .kurs-featured-section {
    padding: 0 16px 40px;
  }

  .kurs-featured-card {
    padding: 24px;
  }

  .kurs-featured-badge {
    left: 24px;
    font-size: 10px;
    padding: 6px 14px;
  }

  .kurs-featured-title {
    font-size: 1.75rem;
  }

  .kurs-featured-meta {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .kurs-featured-preis .preis-value {
    font-size: 1.5rem;
  }

  .kurse-grid-section {
    padding: 0 16px 60px;
  }

  /* Kategorie-Bild auf Mobile: Zentriert */
  .kategorie-bilder {
    max-width: 300px;
    margin: 0 auto 1.5rem;
  }

  .kategorie-bild img {
    border-radius: 12px;
  }

  .kurse-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .kurs-card {
    padding: 24px 20px;
    min-height: auto;
  }

  .kurse-filter-tabs {
    padding: 0 16px 32px;
    gap: 6px;
  }

  .filter-tab {
    padding: 8px 14px;
    font-size: 13px;
  }

  .kurse-faq-section {
    padding: 40px 16px 60px;
  }

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

  .faq-item summary {
    padding: 16px 20px;
    font-size: 14px;
  }

  .faq-item p {
    padding: 0 20px 16px;
    font-size: 13px;
  }

  .kurse-cta-section {
    padding: 0 16px 60px;
  }

  .kurse-cta-card {
    padding: 32px 24px;
  }

  .kurse-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .kurse-cta-buttons .kurs-featured-cta,
  .kurse-cta-buttons .kurs-card-cta {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* ==========================================================================
   DESIGN FIXES - Dezember 2024
   Kurse, Formulare, Light Mode, Mobile Nav, Video-Kontrast
   ========================================================================== */

/* --- FILTER-BUTTONS LIGHT MODE FIX --- */
[data-theme="light"] .filter-btn.active,
[data-theme="light-blue"] .filter-btn.active,
[data-theme="light-green"] .filter-btn.active,
[data-theme="light-coral"] .filter-btn.active,
[data-theme="light-purple"] .filter-btn.active {
  color: #ffffff !important; /* WeiÃŸer Text auf Accent-Hintergrund */
}

[data-theme="light"] .filter-btn,
[data-theme="light-blue"] .filter-btn,
[data-theme="light-green"] .filter-btn {
  background: var(--bg-card);
  border-color: var(--border-color);
  color: var(--text-primary);
  box-shadow: var(--shadow-card);
}

[data-theme="light"] .filter-btn:hover,
[data-theme="light-blue"] .filter-btn:hover,
[data-theme="light-green"] .filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* --- FILTER-TABS LIGHT MODE FIX --- */
[data-theme="light"] .filter-tab,
[data-theme="light-blue"] .filter-tab,
[data-theme="light-green"] .filter-tab {
  background: var(--bg-card);
  border-color: var(--border-color);
  color: var(--text-primary);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .filter-tab:hover,
[data-theme="light-blue"] .filter-tab:hover,
[data-theme="light-green"] .filter-tab:hover {
  border-color: var(--accent);
  color: var(--accent);
}

[data-theme="light"] .filter-tab.active,
[data-theme="light-blue"] .filter-tab.active,
[data-theme="light-green"] .filter-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(var(--accent-rgb), 0.3);
}


/* ==========================================================================
   MOBILE OVERFLOW FIX - Verhindert horizontales Scrollen
   ========================================================================== */

html, body {
  overflow-x: hidden !important;
  max-width: 100vw;
}

/* Alle Container auf max-width begrenzen */
.container,
.page-content,
.site-content,
main,
section,
.gutschein-section,
.kurse-section,
.preise-section {
  max-width: 100vw;
  overflow-x: hidden;
}

/* Bilder und Videos nicht Ã¼ber Container hinaus */
img, video, iframe, embed, object {
  max-width: 100%;
  height: auto;
}

/* Tabellen responsive */
table {
  display: block;
  overflow-x: auto;
  max-width: 100%;
}


/* ==========================================================================
   SCROLL-INDIKATOR fÃ¼r horizontale Tabs
   ========================================================================== */

/* Wrapper mit Fade-Effekt */
.activity-tabs-wrapper {
  position: relative;
}

/* Rechter Fade-Indikator - DEAKTIVIERT (Bug 2+3 Fix) */
/* @media (max-width: 900px) {
  .activity-tabs-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 20px;
    bottom: 32px;
    width: 60px;
    background: linear-gradient(to right, transparent, var(--bg-primary));
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: 2;
  }
} */

/* Scroll-Hinweis nur auf Mobile */
@media (max-width: 768px) {
  .activity-tabs-wrapper::before {
    content: 'â† swipe â†’';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 1px;
    opacity: 0.6;
    z-index: 3;
  }
}

/* Auch fÃ¼r Filter-Tabs auf Kurse-Seite */
.kurse-filter-tabs {
  position: relative;
}

@media (max-width: 600px) {
  .kurse-filter-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 24px;
    justify-content: flex-start;
  }
  
  .kurse-filter-tabs::-webkit-scrollbar {
    display: none;
  }
  
  /* Gradient DEAKTIVIERT (Bug 3 Fix) */
  /* .kurse-filter-tabs::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 24px;
    width: 50px;
    background: linear-gradient(to right, transparent, var(--bg-primary));
    pointer-events: none;
  } */
}


/* ==========================================================================
   GUTSCHEIN-KARTE VERBESSERUNG
   ========================================================================== */

/* Wertigeres Design */
.gutschein-card-preview {
  width: 280px;
  height: 170px;
  background: linear-gradient(145deg, var(--accent) 0%, #e55a3a 50%, #cc4a2a 100%);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 
    0 25px 50px rgba(255, 107, 74, 0.35),
    0 10px 20px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: rotate(-3deg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* Glanz-Effekt */
.gutschein-card-preview::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 40%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 60%
  );
  transform: rotate(45deg);
  pointer-events: none;
}

/* Muster/Textur (subtil) */
.gutschein-card-preview::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54.627 0l.83.828-1.415 1.415L51.8 0h2.827zM5.373 0l-.83.828L5.96 2.243 8.2 0H5.374zM48.97 0l3.657 3.657-1.414 1.414L46.143 0h2.828zM11.03 0L7.372 3.657 8.787 5.07 13.857 0H11.03zm32.284 0L49.8 6.485 48.384 7.9l-7.9-7.9h2.83zM16.686 0L10.2 6.485 11.616 7.9l7.9-7.9h-2.83zM22.344 0L13.858 8.485 15.272 9.9l9.9-9.9h-2.83zM32 0l-3.486 3.485 1.415 1.414L34.485 0H32z' fill='rgba(255,255,255,0.03)' fill-rule='evenodd'/%3E%3C/svg%3E");
  pointer-events: none;
  border-radius: inherit;
}

.gutschein-card-preview:hover {
  transform: rotate(0deg) scale(1.05) translateY(-5px);
  box-shadow: 
    0 35px 60px rgba(255, 107, 74, 0.4),
    0 15px 30px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* Text-Styling verbessert */
.preview-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 600;
}

.preview-logo {
  font-family: var(--font-display);
  font-size: 32px;
  color: #0a0a0a;
  letter-spacing: 3px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
}

.preview-amount {
  font-family: var(--font-display);
  font-size: 42px;
  color: #0a0a0a;
  letter-spacing: 1px;
  line-height: 1;
}

.preview-tagline {
  font-size: 10px;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
  margin-top: 4px;
}

/* Gutschein Footer-Bereich fixiert */
.gutschein-card-preview .preview-footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Light Mode Anpassung - DEAKTIVIERT (Bug 3 Fix) */
/* [data-theme="light"] .activity-tabs-wrapper::after,
[data-theme="light"] .kurse-filter-tabs::after,
[data-theme="light-blue"] .activity-tabs-wrapper::after,
[data-theme="light-green"] .activity-tabs-wrapper::after {
  background: linear-gradient(to right, transparent, var(--bg-primary));
} */


/* ==========================================================================
   UMFASSENDE MOBILE FIXES
   ========================================================================== */

/* --- FIX: Badge nicht abschneiden --- */
.kurse-highlight-grid,
.kurse-grid,
.courses-grid {
  overflow: visible !important; /* Badge nicht abschneiden */
}

.kurse-highlight-card,
.kurs-card {
  overflow: visible !important; /* Badge sichtbar lassen */
}

/* Badge braucht mehr Abstand vom oberen Rand */
.kurse-card-badge {
  top: -12px;
  z-index: 10;
}

/* --- FIX: Activity-Tabs Fade KOMPLETT DEAKTIVIERT (Bug 2+3 Fix) --- */
.activity-tabs-wrapper::after {
  display: none !important; /* Kein Gradient mehr */
}

/* @media (max-width: 900px) {
  .activity-tabs-wrapper::after {
    display: block;
  }
} */

/* Auf Desktop alle Tabs sichtbar */
@media (min-width: 901px) {
  .activity-tabs {
    justify-content: center;
    overflow-x: visible;
  }
  
  .activity-tab {
    flex: 0 1 auto;
    min-width: 120px;
  }
}

/* --- Beach-Optionen auf Mobile stacken --- */
@media (max-width: 480px) {
  .beach-options {
    flex-direction: column;
  }
  
  .beach-option {
    flex: none;
    width: 100%;
  }
}

/* --- Buttons auf Mobile nicht abschneiden --- */
@media (max-width: 600px) {
  .btn,
  .btn-primary,
  .btn-secondary {
    padding: 12px 20px;
    font-size: 0.9rem;
    white-space: normal;
    text-align: center;
  }
  
  .gutschein-ctas,
  .hero-ctas,
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .gutschein-ctas .btn,
  .hero-ctas .btn,
  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

/* --- Grids auf Mobile anpassen --- */
@media (max-width: 768px) {
  /* 2-Spalten Grids zu 1 Spalte */
  .grid-2,
  .two-columns,
  [class*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  
  /* Info-Grids */
  .info-grid,
  .feature-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  /* Stat-Boxen */
  .stats-row,
  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .stat-box,
  .hero-stat {
    flex: 0 0 45%;
    min-width: 140px;
  }
}

/* --- Text nicht abschneiden --- */
@media (max-width: 480px) {
  h1, .page-title {
    font-size: clamp(2rem, 8vw, 3rem) !important;
    word-break: break-word;
    hyphens: auto;
  }
  
  h2, .section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  
  /* Lange WÃ¶rter umbrechen */
  p, li, span, a {
    overflow-wrap: break-word;
    word-wrap: break-word;
  }
}

/* --- Tabellen responsive --- */
@media (max-width: 600px) {
  .price-table-container,
  .table-responsive {
    margin: 0 -20px;
    padding: 0 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Scroll-Hinweis fÃ¼r Tabellen */
  .price-table-container::before {
    content: 'â† Tabelle scrollen â†’';
    display: block;
    text-align: center;
    font-size: 11px;
    color: var(--text-muted);
    padding: 8px;
    opacity: 0.7;
  }
  
  .price-table {
    min-width: 500px;
  }
}

/* --- Cards auf Mobile volle Breite --- */
@media (max-width: 480px) {
  .card,
  .kurs-card,
  .info-card {
    margin-left: -10px;
    margin-right: -10px;
    border-radius: 16px;
  }
}

/* --- Preise Mobile Overflow Fix --- */
@media (max-width: 768px) {
  .pricing-section,
  .price-cards-wrapper,
  .pricing-cards-section {
    overflow-x: hidden;
  }

  .pricing-card {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

/* --- Modal/Popup auf Mobile --- */
@media (max-width: 600px) {
  .modal-content,
  .popup-content,
  .booking-modal-content {
    width: 95vw !important;
    max-width: none !important;
    margin: 10px;
    max-height: 90vh;
    overflow-y: auto;
  }
}

/* --- Form-Elemente auf Mobile --- */
@media (max-width: 480px) {
  .form-row {
    flex-direction: column;
    gap: 16px;
  }
  
  .form-group {
    width: 100%;
  }
  
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="date"],
  select,
  textarea {
    font-size: 16px !important; /* Verhindert Zoom auf iOS */
    padding: 14px 16px;
  }
}

/* --- Navigation Spacing auf Mobile --- */
@media (max-width: 768px) {
  .site-nav,
  .main-header {
    padding: 12px 16px;
  }
  
  .nav-logo img {
    max-height: 36px;
  }
}

/* --- Footer auf Mobile kompakter --- */
@media (max-width: 480px) {
  .site-footer {
    padding: 40px 16px 24px;
  }
  
  .footer-content {
    gap: 32px;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 16px;
  }
  
  .footer-links li {
    margin: 0;
  }
}

/* --- Spezifische Seiten-Fixes --- */

/* Kontakt-Seite */
@media (max-width: 768px) {
  .contact-grid,
  .kontakt-content {
    grid-template-columns: 1fr;
  }
  
  .contact-info,
  .contact-form {
    padding: 24px;
  }
}

/* Kletterpartner-Seite */
@media (max-width: 600px) {
  .partner-card,
  .kletterpartner-item {
    padding: 20px;
  }
  
  .partner-stats {
    flex-direction: column;
    gap: 8px;
  }
}

/* Impressum/Datenschutz - Lange Texte */
@media (max-width: 480px) {
  .legal-content,
  .page-impressum,
  .page-datenschutz {
    font-size: 0.9rem;
    line-height: 1.7;
  }
  
  .legal-content h2,
  .legal-content h3 {
    font-size: 1.2rem;
    margin-top: 32px;
  }
}


/* ==========================================================================
   ZUSÃ„TZLICHE FIXES - Dezember 2024
   ========================================================================== */

/* --- FIX: Stepper-Linie endet genau beim letzten Kreis --- */
.waiver-progress {
  padding: 0 40px; /* Mehr Padding fÃ¼r die Linie */
}

.waiver-progress::before {
  /* Linie zwischen erstem und letztem Step */
  left: calc(12.5% + 20px); /* Startet beim ersten Kreis */
  right: calc(12.5% + 20px); /* Endet beim letzten Kreis */
  width: auto !important;
  transform: none !important;
}

/* Progress Steps gleichmÃ¤ÃŸig verteilen */
.progress-step {
  flex: 1;
  max-width: 120px;
}

/* --- FIX: 11er Karte Preis nicht abschneiden --- */
.pricing-card {
  overflow: visible !important;
}

.pricing-grid {
  overflow: visible !important;
}

.price-number {
  font-size: clamp(36px, 5vw, 48px); /* Responsive SchriftgrÃ¶ÃŸe */
  word-break: keep-all;
  white-space: nowrap;
}

/* Bei kleinen Karten */
@media (max-width: 1100px) {
  .pricing-grid {
    gap: 20px;
  }
  
  .pricing-card {
    padding: 20px 16px;
  }
  
  .price-number {
    font-size: 36px;
  }
}

/* --- FIX: Schwarzes Brett Mobile Overflow --- */
.page-kletterpartner,
.kletterpartner-section,
.partner-grid,
.partner-cards {
  max-width: 100vw;
  overflow-x: hidden !important;
}

/* Info-Grid auf Mobile */
@media (max-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  
  .info-card {
    padding: 24px 20px;
  }
}

/* --- FIX: Schwarzes Brett Kontrast --- */
.info-card {
  background: var(--bg-card);
  color: var(--text-primary);
}

.info-card .info-title {
  color: var(--text-primary);
}

.info-card .info-text {
  color: var(--text-secondary);
}

/* Light Mode: Schwarzes Brett Kontrast */
[data-theme="light"] .info-card,
[data-theme="light-blue"] .info-card,
[data-theme="light-green"] .info-card {
  background: var(--bg-card);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-color);
}

[data-theme="light"] .info-card .info-title,
[data-theme="light-blue"] .info-card .info-title,
[data-theme="light-green"] .info-card .info-title {
  color: var(--text-primary) !important;
}

[data-theme="light"] .info-card .info-text,
[data-theme="light-blue"] .info-card .info-text,
[data-theme="light-green"] .info-card .info-text {
  color: var(--text-secondary) !important;
}

/* Alt-BG Sections im Light Mode */
[data-theme="light"] .alt-bg,
[data-theme="light-blue"] .alt-bg,
[data-theme="light-green"] .alt-bg {
  background: var(--bg-secondary);
}

[data-theme="light"] .alt-bg .section-title,
[data-theme="light-blue"] .alt-bg .section-title,
[data-theme="light-green"] .alt-bg .section-title {
  color: var(--text-primary);
}

/* --- FIX: Formular-Felder Ausrichtung --- */
.waiver-step {
  max-width: 600px;
  margin: 0 auto;
}

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

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

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.15);
}

/* Light Mode Formular-Felder */
[data-theme="light"] .form-group input,
[data-theme="light"] .form-group select,
[data-theme="light"] .form-group textarea {
  background: var(--bg-card);
  border-color: var(--border-color);
}

/* --- FIX: Partner-Cards auf Schwarzes Brett --- */
.partner-card,
.kletterpartner-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 20px;
  max-width: 100%;
  overflow: hidden;
}

.partner-card * {
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Filter-Buttons auf Schwarzes Brett */
.filter-group,
.partner-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

@media (max-width: 600px) {
  .filter-group,
  .partner-filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }
  
  .filter-group button,
  .partner-filters button {
    flex-shrink: 0;
  }
}


/* ==========================================================================
   DESIGN-KONSISTENZ FIXES - Dezember 2024
   ========================================================================== */

/* --- FIX: Filter-Buttons Schwarzes Brett Light Mode --- */
[data-theme="light"] .filter-btn,
[data-theme="light"] .type-filter,
[data-theme="light-blue"] .filter-btn,
[data-theme="light-green"] .filter-btn {
  background: var(--bg-card) !important;
  color: var(--text-primary) !important;
  border: 1px solid var(--border-color) !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .filter-btn:hover,
[data-theme="light"] .type-filter:hover,
[data-theme="light-blue"] .filter-btn:hover,
[data-theme="light-green"] .filter-btn:hover {
  border-color: var(--accent) !important;
  color: var(--accent) !important;
}

[data-theme="light"] .filter-btn.active,
[data-theme="light"] .type-filter.active,
[data-theme="light-blue"] .filter-btn.active,
[data-theme="light-green"] .filter-btn.active {
  background: var(--accent) !important;
  color: #ffffff !important;
  border-color: var(--accent) !important;
}


/* --- FIX: Bento-Cards Mobile gleiche HÃ¶he --- */
@media (max-width: 768px) {
  .bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  
  .bento-card {
    min-height: 180px !important;
    height: auto;
    aspect-ratio: 1 / 1; /* Quadratisch */
  }
  
  .bento-card.large,
  .bento-card.wide {
    grid-column: span 1;
    aspect-ratio: 1 / 1;
  }
  
  /* Klettern-Card speziell */
  .bento-card[data-activity="klettern"],
  .bento-card:first-child {
    min-height: 180px !important;
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 480px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
  
  .bento-card {
    aspect-ratio: auto;
    min-height: 150px !important;
  }
}


/* --- FIX: Formular-Text zentriert auf Mobile --- */
@media (max-width: 768px) {
  .step-title,
  .step-subtitle,
  .waiver-step h2,
  .waiver-step > p {
    text-align: center;
    padding: 0 20px;
  }
  
  .waiver-container {
    padding: 16px;
  }
  
  .waiver-type-grid {
    padding: 0;
  }
}


/* --- FIX: Einheitliche Icons - Rechtecke mit abgerundeten Kanten --- */

/* Stepper: Rechtecke statt Kreise */
.step-number {
  width: 44px;
  height: 36px;
  border-radius: 10px !important; /* Rechteck mit Rundung statt Kreis */
  font-weight: 700;
}

.progress-step.active .step-number {
  border-radius: 10px !important;
}

.progress-step.completed .step-number {
  border-radius: 10px !important;
}

/* Type-Icons in Formularen: Einheitlich */
.type-icon {
  width: 52px;
  height: 44px;
  border-radius: 12px; /* Rechteck */
}

/* Kurse-Icons: Einheitlich */
.kurse-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  overflow: visible;
}

/* Activity-Tab Icons auf Preise-Seite */
.activity-tab {
  border-radius: 14px;
}

.tab-icon {
  width: 48px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* --- FIX: Filter-Bar Schwarzes Brett --- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
}

@media (max-width: 600px) {
  .filter-bar {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }
  
  .filter-bar::-webkit-scrollbar {
    display: none;
  }
  
  .filter-bar .filter-btn {
    flex-shrink: 0;
    white-space: nowrap;
  }
}
/**
 * NO LIMIT - Design Fixes
 * 
 * Fixes fÃ¼r:
 * 1. Kurse-Seite (Featured Card, Grid-HÃ¶hen)
 * 2. Formular-Seite (Stepper, Auswahl-Buttons)
 * 3. Light Mode (Karten-Sichtbarkeit, Borders)
 * 4. Mobile Navigation
 * 5. Video-Kontrast auf Startseite
 * 
 * Integration: Am Ende der style.css einfÃ¼gen oder als separate Datei laden
 * @package NoLimit
 */

/* ==========================================================================
   1. KURSE-SEITE FIXES
   ========================================================================== */

/* --- Featured Course Card Fix --- */
.kurs-featured,
.course-featured,
.kurse-highlight-card.featured {
    background: linear-gradient(135deg,
        var(--bg-card) 0%,
        rgba(var(--accent-rgb), 0.08) 100%
    ) !important;
    border: 2px solid var(--accent) !important;
    border-radius: 24px;
    overflow: visible;
}

/* Light Mode: Featured Card */
[data-theme="light"] .kurs-featured,
[data-theme="light"] .course-featured,
[data-theme="light"] .kurse-highlight-card.featured,
[data-theme="light-blue"] .kurs-featured,
[data-theme="light-green"] .kurs-featured {
    background: linear-gradient(135deg, 
        var(--bg-card) 0%, 
        rgba(var(--accent-rgb), 0.06) 100%
    ) !important;
    box-shadow: var(--shadow-card), 0 0 0 1px rgba(var(--accent-rgb), 0.15);
}

/* Featured Badge - Compact, nicht volle Breite */
.kurs-featured-badge,
.featured-badge,
.kurse-highlight-card .badge-featured {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex !important;
    width: auto !important;
    max-width: fit-content !important;
    padding: 6px 14px;
    background: var(--accent);
    color: #ffffff;
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    z-index: 2;
}

/* --- Kurs-Karten Grid: Gleiche HÃ¶hen --- */
.kurse-grid,
.courses-grid,
.kurs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    align-items: stretch; /* Gleiche HÃ¶he */
}

.kurs-card,
.course-card {
    display: flex;
    flex-direction: column;
    height: 100%; /* Gleiche HÃ¶he wie Geschwister */
}

/* Card Content - Flexbox fÃ¼r gleichmÃ¤ÃŸige Verteilung */
.kurs-card-content,
.course-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Card Footer mit Button immer unten */
.kurs-card-footer,
.course-card-footer,
.kurs-card .card-footer {
    margin-top: auto;
    padding-top: 16px;
}

/* Alle Kurs-Karten bekommen einen Button */
.kurs-card .btn,
.course-card .btn {
    width: 100%;
    justify-content: center;
}


/* ==========================================================================
   2. FORMULAR-SEITE FIXES
   ========================================================================== */

/* --- Stepper Verbesserung --- */
.waiver-progress {
    background: var(--bg-card);
    padding: 20px 24px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    margin-bottom: 32px;
}

/* Stepper Line - Verbessert fÃ¼r rechteckige Steps */
.waiver-progress::before {
    height: 3px;
    background: var(--bg-elevated);
    border-radius: 2px;
    top: 18px; /* Mitte der rechteckigen Steps (36px / 2) */
}

/* Step Numbers - Rechteckig mit abgerundeten Kanten */
.step-number {
    width: 44px;
    height: 36px;
    font-size: 1rem;
    font-weight: 700;
    background: var(--bg-elevated);
    border: 2px solid var(--border-color-strong);
    border-radius: 10px !important; /* Rechteck statt Kreis */
}

.progress-step.active .step-number {
    transform: scale(1.1);
    box-shadow: 0 0 0 6px rgba(var(--accent-rgb), 0.15);
}

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

/* --- Auswahl-Buttons Modernisierung --- */
.waiver-type-btn {
    min-height: 80px;
    padding: 20px 24px;
    border-radius: 20px;
    border-width: 2px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.waiver-type-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.waiver-type-btn.active {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(var(--accent-rgb), 0.2);
}

/* Icon Container - GrÃ¶ÃŸer */
.type-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    font-size: 1.6rem;
}

/* Radio Indicator - GrÃ¶ÃŸer und deutlicher */
.type-check {
    width: 28px;
    height: 28px;
    border-width: 2px;
}

.waiver-type-btn.active .type-check::after {
    width: 12px;
    height: 12px;
}

/* Light Mode: Auswahl-Buttons */
[data-theme="light"] .waiver-type-btn,
[data-theme="light-blue"] .waiver-type-btn,
[data-theme="light-green"] .waiver-type-btn {
    background: var(--bg-card);
    box-shadow: var(--shadow-card);
}

[data-theme="light"] .waiver-type-btn:hover,
[data-theme="light-blue"] .waiver-type-btn:hover,
[data-theme="light-green"] .waiver-type-btn:hover {
    box-shadow: var(--shadow-card-hover);
}

/* Light Mode: Stepper */
[data-theme="light"] .waiver-progress,
[data-theme="light-blue"] .waiver-progress,
[data-theme="light-green"] .waiver-progress {
    background: var(--bg-card);
    box-shadow: var(--shadow-card);
}


/* ==========================================================================
   3. LIGHT MODE - Karten Sichtbarkeit
   ========================================================================== */

/* Alle Light Themes: Cards MÃœSSEN sichtbar sein */
[data-theme="light"] .kurs-card,
[data-theme="light"] .preise-card,
[data-theme="light"] .pricing-card,
[data-theme="light"] .info-card,
[data-theme="light"] .card,
[data-theme="light-blue"] .kurs-card,
[data-theme="light-blue"] .preise-card,
[data-theme="light-blue"] .pricing-card,
[data-theme="light-green"] .kurs-card,
[data-theme="light-green"] .preise-card,
[data-theme="light-green"] .pricing-card {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: var(--shadow-card) !important;
}

/* Hover State */
[data-theme="light"] .kurs-card:hover,
[data-theme="light"] .preise-card:hover,
[data-theme="light"] .pricing-card:hover,
[data-theme="light"] .info-card:hover,
[data-theme="light"] .card:hover,
[data-theme="light-blue"] .kurs-card:hover,
[data-theme="light-blue"] .preise-card:hover,
[data-theme="light-green"] .kurs-card:hover,
[data-theme="light-green"] .preise-card:hover {
    box-shadow: var(--shadow-card-hover) !important;
    border-color: var(--border-color-strong) !important;
}

/* Highlighted/Featured Cards */
[data-theme="light"] .pricing-card.highlighted,
[data-theme="light"] .pricing-card.popular,
[data-theme="light"] .preise-card.highlight,
[data-theme="light-blue"] .pricing-card.highlighted,
[data-theme="light-green"] .pricing-card.highlighted {
    border: 2px solid var(--accent) !important;
    box-shadow: 0 8px 32px rgba(var(--accent-rgb), 0.15) !important;
}

/* Calculator Card */
[data-theme="light"] .calculator-card,
[data-theme="light"] .price-calculator,
[data-theme="light-blue"] .calculator-card,
[data-theme="light-green"] .calculator-card {
    background: var(--bg-card) !important;
    box-shadow: var(--shadow-card) !important;
    border: 1px solid var(--border-color) !important;
}

/* Akkordeon im Light Mode */
[data-theme="light"] .accordion,
[data-theme="light"] .faq-item,
[data-theme="light-blue"] .accordion,
[data-theme="light-green"] .accordion {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.05));
}

[data-theme="light"] .accordion-header,
[data-theme="light"] .faq-question {
    border-bottom: 1px solid var(--border-color);
}

/* Tabellen im Light Mode */
[data-theme="light"] .preise-tabelle,
[data-theme="light"] .price-table,
[data-theme="light-blue"] .preise-tabelle,
[data-theme="light-green"] .preise-tabelle {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
    border-radius: 16px;
    overflow: hidden;
}

[data-theme="light"] .preise-tabelle th,
[data-theme="light"] .price-table th {
    background: var(--bg-secondary);
}

[data-theme="light"] .preise-tabelle tr,
[data-theme="light"] .price-table tr {
    border-bottom: 1px solid var(--border-color);
}


/* ==========================================================================
   4. MOBILE NAVIGATION FIX
   ========================================================================== */

/* Hamburger Button - Bessere KlickflÃ¤che */
.nav-toggle,
.menu-toggle,
.hamburger {
    width: 48px;
    height: 48px;
    padding: 12px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* Hamburger Lines */
.nav-toggle span,
.menu-toggle span,
.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* X Animation */
.nav-toggle.active span:nth-child(1),
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2),
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3),
.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile: Hamburger zeigen */
@media (max-width: 768px) {
    .nav-toggle,
    .menu-toggle,
    .hamburger {
        display: flex !important;
    }
    
    /* Desktop Nav verstecken */
    .nav-links,
    .nav-desktop,
    .desktop-nav {
        display: none !important;
    }
    
    /* Mobile Nav Panel */
    .nav-links.is-open,
    .nav-links.active,
    .mobile-nav.active,
    .mobile-nav.is-open {
        display: flex !important;
    }
}

/* Mobile Nav Panel Styles */
.mobile-nav,
.nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    height: 100dvh;
    background: var(--bg-primary);
    padding: 80px 24px 32px;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow-y: auto;
    border-left: 1px solid var(--border-color);
}

.mobile-nav.active,
.mobile-nav.is-open,
.nav-mobile.active {
    right: 0;
}

/* Overlay */
body.nav-open::before,
body.menu-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    animation: fadeIn 0.3s ease;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

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

/* Mobile Nav Links */
.mobile-nav a,
.nav-mobile a {
    display: flex;
    align-items: center;
    padding: 16px 0;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
    text-decoration: none;
    transition: color 0.2s;
}

.mobile-nav a:hover,
.nav-mobile a:hover {
    color: var(--accent);
}

/* Mobile CTA Button */
.mobile-nav .btn-primary,
.nav-mobile .btn-primary {
    width: 100%;
    margin-top: 24px;
    justify-content: center;
}


/* ==========================================================================
   5. VIDEO-KONTRAST AUF STARTSEITE
   ========================================================================== */

/* Video Container - Overlay fÃ¼r Text-Lesbarkeit */
.bento-card.video-card,
.activity-card.has-video,
[class*="video"] .bento-card {
    position: relative;
}

/* Gradient Overlay Ã¼ber Video */
.bento-card.video-card::after,
.activity-card.has-video::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.4) 40%,
        rgba(0, 0, 0, 0.2) 100%
    );
    pointer-events: none;
    z-index: 1;
    border-radius: inherit;
}

/* Text Ã¼ber Video - immer lesbar */
.bento-card.video-card .card-content,
.bento-card.video-card .bento-content,
.activity-card.has-video .card-content {
    position: relative;
    z-index: 2;
    color: #ffffff !important;
}

.bento-card.video-card h3,
.bento-card.video-card .card-title,
.activity-card.has-video h3 {
    color: #ffffff !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.bento-card.video-card p,
.bento-card.video-card .card-desc,
.activity-card.has-video p {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* Video Element */
.bento-card video,
.activity-card video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}


/* ==========================================================================
   6. ALLGEMEINE KONSISTENZ
   ========================================================================== */

/* --- Button Konsistenz --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(var(--accent-rgb), 0.35);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-primary);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Focus States fuer Accessibility */
.btn:focus-visible,
button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

/* Entferne Outline bei Mouse-Focus, behalte fuer Keyboard */
:focus:not(:focus-visible) {
    outline: none;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :focus-visible {
        outline: 3px solid currentColor;
        outline-offset: 4px;
    }
}

/* --- Card Basis-Styles --- */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 24px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

/* Light Mode: Alle Cards */
[data-theme="light"] .card {
    box-shadow: var(--shadow-card);
}


/* ==========================================================================
   7. RESPONSIVE FIXES
   ========================================================================== */

@media (max-width: 768px) {
    /* Kurse Grid */
    .kurse-grid,
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* Featured Card */
    .kurs-featured,
    .course-featured {
        grid-template-columns: 1fr;
    }
    
    .kurs-featured-image {
        height: 200px;
        order: -1;
    }
    
    /* Stepper kompakter */
    .waiver-progress {
        padding: 16px;
    }
    
    .step-number {
        width: 36px;
        height: 30px;
        font-size: 0.9rem;
        border-radius: 8px !important;
    }
    
    .progress-step {
        padding: 0 12px;
    }
    
    /* Auswahl-Buttons */
    .waiver-type-btn {
        padding: 16px;
        min-height: 70px;
    }
    
    .type-icon {
        width: 44px;
        height: 44px;
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    /* Noch kompakterer Stepper */
    .step-label {
        font-size: 0.7rem;
    }
    
    .waiver-type-grid {
        gap: 10px;
        padding: 0 8px;
    }
    
    .waiver-type-btn {
        grid-template-columns: 44px 1fr 24px;
        gap: 12px;
        padding: 14px;
    }
}

/* ============================================
   CSS BUGFIXES - 10.12.2024
   ============================================ */

/* FIX 1: 10er-Karte Badge abgeschnitten */
.pricing-cards-section,
.pricing-grid {
    overflow: visible;
    padding-top: 20px;
}

.pricing-card {
    position: relative;
    overflow: visible;
}

.pricing-card .pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    z-index: 10;
}

/* FIX 6: Orangene Linie/Gradient auf Preise-Seite komplett entfernen */
.page-template-page-preise .site-header,
.page-template-page-preise header,
.page-template-page-preise .page-header,
.page-template-page-preise main,
.page-template-page-preise .preise-layout {
    border-top: none !important;
    border-image: none !important;
}

.page-template-page-preise .early-bird-banner::before,
.page-template-page-preise .early-bird-banner::after {
    display: none !important;
    content: none !important;
}

/* Spezifischer Fix fÃ¼r page-header::before (bereits oben bei Zeile 1592 definiert) */

/* Early Bird Banner selbst - kein oberer Rand/Gradient */
.page-template-page-preise .early-bird-banner {
    border-top: none !important;
    margin-top: 0;
}

/* Body-Level Check */
body.page-template-page-preise::before {
    display: none !important;
}

/* FIX 3: Formular-Text Positionierung */
.waiver-form-intro,
.form-intro-text,
.erklaerung-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

/* FIX 4: Checkbox-Styling konsistent */
.waiver-form input[type="checkbox"],
.form-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color, #3a3a3a);
    border-radius: 4px;
    background: var(--bg-dark, #1a1a1a);
    cursor: pointer;
    transition: all 0.2s ease;
}

.waiver-form input[type="checkbox"]:checked,
.form-checkbox:checked {
    background: var(--coral, #F49B31);
    border-color: var(--coral, #F49B31);
}

/* Radio Buttons rund */
.waiver-form input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color, #3a3a3a);
    border-radius: 50%;
    background: var(--bg-dark, #1a1a1a);
    cursor: pointer;
    transition: all 0.2s ease;
}

.waiver-form input[type="radio"]:checked {
    border-color: var(--coral, #F49B31);
    background: var(--coral, #F49B31);
    box-shadow: inset 0 0 0 4px var(--bg-dark, #1a1a1a);
}

/* ===========================================
   FIX 4: Tageseintritte Hinweis
   =========================================== */
.day-ticket-notice {
    background: rgba(255, 107, 74, 0.1);
    border: 1px solid rgba(255, 107, 74, 0.3);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin: 1rem 0;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.day-ticket-notice .notice-icon {
    font-size: 1.5rem;
    color: var(--accent, #F49B31);
    line-height: 1;
}

.day-ticket-notice .notice-content strong {
    color: var(--accent, #F49B31);
    display: block;
    margin-bottom: 0.25rem;
}

.day-ticket-notice .notice-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary, #9090A0);
}

.cta-button.disabled {
    cursor: not-allowed;
}

/* ===========================================
   FIX 2: News Card mit Thumbnail
   =========================================== */
.news-card.has-thumbnail {
    display: flex;
    flex-direction: column;
}

.news-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    margin: -1.5rem -1.5rem 1rem -1.5rem;
    width: calc(100% + 3rem);
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.05);
}

.news-card.has-thumbnail .news-card-content {
    padding-top: 0;
}

@media (max-width: 768px) {
    .news-card-image {
        height: 150px;
        margin: -1rem -1rem 1rem -1rem;
        width: calc(100% + 2rem);
    }
}

/* ===========================================
   FIX RUNDE 3: Google Maps Karte hÃ¶her
   =========================================== */
.map-wrapper,
.map-container {
    min-height: 550px !important;
}

.map-wrapper iframe,
.map-container iframe {
    min-height: 550px !important;
    height: 550px !important;
}

@media (max-width: 768px) {
    .map-wrapper,
    .map-container,
    .map-wrapper iframe,
    .map-container iframe {
        min-height: 400px !important;
        height: 400px !important;
    }
}

/* ===========================================
   FIX RUNDE 4: Modal mit Tabs
   =========================================== */

/* GrÃ¶ÃŸeres Modal fÃ¼r Tabs */
.modal-container-large {
    max-width: 1000px;
    width: 95%;
    max-height: 90vh;
}

/* Tab Navigation */
.modal-tabs {
    display: flex;
    gap: 1rem;
    padding: 0 1.5rem 1rem;
    border-bottom: 1px solid var(--border-color, #242429);
}

.modal-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 1rem;
    background: var(--bg-elevated, #1a1a1e);
    border: 2px solid var(--border-color, #242429);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    color: inherit;
}

.modal-tab:hover {
    border-color: var(--accent, #F49B31);
    background: rgba(255, 107, 74, 0.05);
}

.modal-tab.active {
    border-color: var(--accent, #F49B31);
    background: rgba(255, 107, 74, 0.1);
}

.modal-tab .tab-icon {
    font-size: 1.5rem;
}

.modal-tab .tab-text {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary, #FAFAFA);
}

.modal-tab .tab-sub {
    font-size: 0.75rem;
    color: var(--text-muted, #6B6B76);
}

.modal-tab.active .tab-text {
    color: var(--accent, #F49B31);
}

/* Modal Footer */
.modal-footer {
    padding: 0.75rem 1.5rem;
    border-top: 1px solid var(--border-color, #242429);
    text-align: center;
}

.modal-hint {
    margin: 0;
    color: var(--text-muted, #6B6B76);
}

/* Mobile Anpassungen */
@media (max-width: 600px) {
    .modal-tabs {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0 1rem 1rem;
    }

    .modal-tab {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        padding: 0.75rem 1rem;
    }

    .modal-tab .tab-icon {
        font-size: 1.25rem;
        margin-right: 0.75rem;
    }

    .modal-tab .tab-sub {
        display: none;
    }

    .modal-container-large {
        width: 100%;
        max-width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
    }
}

/* Light Theme Anpassungen */
[data-theme="light"] .modal-tab,
[data-theme="light-coral"] .modal-tab,
[data-theme="light-blue"] .modal-tab {
    background: var(--bg-card, #fff);
}

[data-theme="light"] .modal-tab:hover,
[data-theme="light-coral"] .modal-tab:hover,
[data-theme="light-blue"] .modal-tab:hover {
    background: rgba(255, 107, 74, 0.08);
}

[data-theme="light"] .modal-tab.active,
[data-theme="light-coral"] .modal-tab.active,
[data-theme="light-blue"] .modal-tab.active {
    background: rgba(255, 107, 74, 0.12);
}

/* ========================================
   MOBILE FIXES - Runde 15
   ======================================== */

/* Fix 1: Emojis auf Bento Activity Cards ausblenden */
.bento-icon {
    display: none !important;
}

/* Fix 2: Cards-Grid auf 1 Spalte auf Mobile (ueberschreibt inline-styles) */
@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr !important;
    }

    .cards-grid .card {
        width: 100%;
    }

    /* Auch Formular-Grid anpassen */
    .content-section form > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
}

/* Fix 3: Activity Tabs - mehr Platz am rechten Rand */
@media (max-width: 768px) {
    .activity-tabs-wrapper {
        padding: 0 0 32px 0;
        margin: 0;
        max-width: 100%;
        overflow: visible;
    }

    .activity-tabs {
        padding: 0 1rem;
    }

    /* Pseudo-Element fuer extra Scroll-Raum am Ende */
    .activity-tabs::after {
        content: '';
        flex: 0 0 1rem;
        min-width: 1rem;
    }

    .activity-tab {
        min-width: 120px;
        flex: 0 0 auto;
    }
}

/* ========================================
   NAVIGATION DROPDOWN - Runde 16
   ======================================== */

/* Desktop: Dropdown versteckt */
.nav-links .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.5rem 0;
    min-width: 200px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    list-style: none;
    margin: 0;
}

.nav-links .menu-item-has-children {
    position: relative;
}

/* Desktop: Dropdown bei Hover anzeigen */
@media (min-width: 769px) {
    .nav-links .menu-item-has-children:hover > .sub-menu {
        display: block;
    }

    .nav-links .sub-menu li {
        display: block;
        border-bottom: none;
    }

    .nav-links .sub-menu a {
        display: block;
        padding: 0.75rem 1.25rem;
        color: var(--text-secondary);
        transition: all 0.2s ease;
    }

    .nav-links .sub-menu a:hover {
        color: var(--accent);
        background: rgba(255, 107, 74, 0.1);
    }

    /* Dropdown-Pfeil */
    .nav-links .menu-item-has-children > a::after {
        content: ' \25BE';
        font-size: 0.7em;
        opacity: 0.7;
    }
}

/* Mobile: Dropdown im Mobile-Menu */
@media (max-width: 768px) {
    .nav-links .sub-menu {
        display: none;
        position: static;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        padding-left: 1.5rem;
        margin-top: 0.5rem;
        min-width: auto;
    }

    .nav-links .sub-menu li {
        margin: 0.25rem 0;
        border-bottom: none;
    }

    .nav-links .sub-menu a {
        font-size: 0.95rem;
        color: var(--text-secondary);
        padding: 0.5rem 0;
    }

    .nav-links .sub-menu a:hover {
        color: var(--accent);
    }

    /* Mobile: Dropdown-Pfeil */
    .nav-links .menu-item-has-children > a::after {
        content: ' +';
        font-size: 0.9em;
        opacity: 0.7;
    }

    .nav-links .menu-item-has-children > a.submenu-open::after {
        content: ' -';
    }
}

/* ==========================================================================
   SINGLE POST / NEWS ARTIKEL STYLES
   ========================================================================== */

.post-featured-image {
  box-shadow: var(--shadow-card);
}

.post-featured-image img {
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .post-featured-image {
    margin-left: -16px !important;
    margin-right: -16px !important;
    max-width: calc(100% + 32px) !important;
    border-radius: 0 !important;
  }
  
  .post-featured-image img {
    max-height: 400px !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .post-featured-image {
    max-width: 900px !important;
  }

  .post-featured-image img {
    max-height: 500px !important;
  }
}

/* ==========================================================================
   JANUAR 2025 UPDATE - René Feedback
   ========================================================================== */

/* Desktop-only Button in Navigation */
@media (max-width: 768px) {
  .nav-cta.desktop-only {
    display: none !important;
  }
}

/* Gutscheine Highlight in Navigation */
.nav-links .nav-highlight {
  color: var(--accent) !important;
  font-weight: 600;
}

.nav-links .nav-highlight:hover {
  color: var(--accent-hover) !important;
}

/* text-accent Helper-Klasse */
.text-accent {
  color: var(--accent);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   PDF Downloads Section (Formulare-Seite)
   -------------------------------------------------------------------------- */
.pdf-downloads-section {
  padding: 3rem 1rem;
}

.pdf-downloads-section .section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 1rem auto 2rem;
}

.pdf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pdf-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.2s ease;
}

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

.pdf-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.pdf-content {
  flex: 1;
}

.pdf-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
}

.pdf-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.pdf-download {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  flex-shrink: 0;
}

/* Sicherheit im Fokus Highlight */
.safety-highlight {
  margin-top: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.safety-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, var(--dark-700), var(--dark-800));
  border: 2px solid var(--accent);
  border-radius: 16px;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.2s ease;
}

.safety-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(244, 155, 49, 0.2);
}

.safety-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.safety-content {
  flex: 1;
}

.safety-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--accent);
}

.safety-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
}

.safety-download {
  font-size: 1rem;
  color: var(--accent);
  font-weight: 600;
  flex-shrink: 0;
  white-space: nowrap;
}

/* Section Divider */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  position: relative;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  max-width: 200px;
  height: 1px;
  background: var(--border-color);
}

.section-divider span {
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   Sicherheits-Banner (Klettern-Seite)
   -------------------------------------------------------------------------- */
.safety-banner {
  background: linear-gradient(135deg, rgba(244, 155, 49, 0.1), rgba(244, 155, 49, 0.05));
  border-top: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
  padding: 1.5rem 1rem;
}

.safety-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.safety-banner-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.safety-banner-text {
  flex: 1;
  min-width: 250px;
}

.safety-banner-text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  color: var(--accent);
}

.safety-banner-text p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
}

.safety-banner-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: var(--dark-900);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.safety-banner-link:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .safety-banner-content {
    flex-direction: column;
    text-align: center;
  }

  .safety-banner-text {
    min-width: unset;
  }

  .safety-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
}

/* ==========================================================================
   PDF Cards - Ansehen + Download Buttons (Formulare-Seite)
   ========================================================================== */

.pdf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.pdf-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pdf-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.pdf-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.pdf-content {
  flex: 1;
}

.pdf-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.pdf-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

.pdf-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.pdf-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.pdf-btn.pdf-view {
  background: var(--accent);
  color: var(--bg-primary);
}

.pdf-btn.pdf-view:hover {
  background: var(--accent-glow);
  transform: translateY(-1px);
}

.pdf-btn.pdf-download {
  background: var(--bg-elevated);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.pdf-btn.pdf-download:hover {
  background: var(--bg-secondary);
  border-color: var(--accent);
}

/* Mobile: Buttons untereinander */
@media (max-width: 480px) {
  .pdf-actions {
    flex-direction: column;
  }

  .pdf-btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .pdf-grid {
    grid-template-columns: 1fr;
  }

  .pdf-card {
    text-align: center;
  }
}

/* ==========================================================================
   PDF Modal
   ========================================================================== */

.pdf-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.pdf-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}

.pdf-modal-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  background: var(--bg-card);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.pdf-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.pdf-modal-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.pdf-modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.2s ease;
}

.pdf-modal-close:hover {
  color: var(--text-primary);
}

.pdf-modal-body {
  flex: 1;
  min-height: 400px;
  background: #fff;
}

.pdf-modal-frame {
  width: 100%;
  height: 60vh;
  border: none;
}

.pdf-modal-footer {
  display: flex;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border-color);
  flex-wrap: wrap;
}

.pdf-modal-footer .btn-secondary,
.pdf-modal-footer .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pdf-modal-footer .btn-secondary {
  background: var(--bg-elevated);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.pdf-modal-footer .btn-secondary:hover {
  background: var(--bg-secondary);
  border-color: var(--accent);
}

.pdf-modal-footer .btn-primary {
  background: var(--accent);
  color: var(--bg-primary);
  border: none;
}

.pdf-modal-footer .btn-primary:hover {
  background: var(--accent-glow);
}

.pdf-modal-tip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(244, 155, 49, 0.1);
  border-top: 1px solid rgba(244, 155, 49, 0.2);
  font-size: 0.875rem;
  color: var(--accent);
}

.tip-icon {
  font-size: 1.25rem;
}

/* Safety Card mit Button */
.safety-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-card);
  border-radius: 12px;
  padding: 1.5rem;
  border: 2px solid var(--accent);
}

.safety-btn {
  flex: 0 0 auto;
  white-space: nowrap;
}

/* Mobile Anpassungen fuer Modal */
@media (max-width: 640px) {
  .pdf-modal {
    padding: 0;
  }

  .pdf-modal-container {
    max-height: 100vh;
    border-radius: 0;
  }

  .pdf-modal-frame {
    height: 50vh;
  }

  .pdf-modal-footer {
    flex-direction: column;
  }

  .pdf-modal-footer .btn-secondary,
  .pdf-modal-footer .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .safety-card {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   Placeholder Images (Video-Ersatz) - MIT Position & Zoom
   ========================================================================== */

/* Hero Placeholder - MIT BORDER-RADIUS wie Video */
.hero-placeholder-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg, 12px);
  transform-origin: center center;
}

/* Page Header Placeholder */
.page-header.has-image .page-header-image,
.klettern-hero.has-image .klettern-placeholder-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform-origin: center center;
}

/* Klettern spezifisch */
.klettern-video-wrapper .klettern-placeholder-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
}

/* Container overflow hidden fuer Scale */
.hero-video-container,
.hero-video-link {
  overflow: hidden;
  border-radius: var(--radius-lg, 12px);
}

.klettern-video-wrapper,
.page-header.has-image {
  overflow: hidden;
}

/* Sicherstellen dass Overlay ueber dem Bild liegt */
.page-header.has-image .page-header-overlay,
.klettern-hero.has-image .klettern-video-overlay {
  z-index: 1;
}

.page-header.has-image .page-header-content,
.klettern-hero.has-image .klettern-hero-content {
  z-index: 2;
}

/* ==========================================================================
   MOBILE STICKY CTA BUTTON
   ========================================================================== */

.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9990;
  padding: 12px 16px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  background: linear-gradient(to top, var(--bg-primary) 70%, transparent);
  pointer-events: none;
}

.mobile-sticky-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(244, 155, 49, 0.4);
  pointer-events: auto;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mobile-sticky-cta-btn:hover,
.mobile-sticky-cta-btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(244, 155, 49, 0.5);
  color: #ffffff;
}

.mobile-sticky-cta-btn:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.mobile-sticky-cta-btn svg {
  flex-shrink: 0;
}

/* Nur auf Mobile anzeigen (max-width: 768px) */
@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: block;
  }

  /* Platz am Seitenende fuer den Button */
  body {
    padding-bottom: 80px;
  }

  /* Footer Abstand anpassen */
  .site-footer {
    padding-bottom: 20px;
  }
}

/* ==========================================================================
   EINHEITLICHE TYPOGRAFIE - HOHE SPEZIFITAET (alle Seiten wie Startseite)
   ========================================================================== */

/* Einheitliche Hero-Ueberschriften - mit body fuer hoehere Spezifitaet */
body .hero h1,
body .page-title,
body .klettern-hero-title,
body .page-header-title {
  font-family: var(--font-display) !important;
  font-size: clamp(3rem, 10vw, 6rem) !important;
  line-height: 0.95 !important;
  letter-spacing: 0.02em !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 4px 16px rgba(0, 0, 0, 0.3) !important;
}

/* Einheitliche Taglines - mit body fuer hoehere Spezifitaet */
body .hero-tagline,
body .page-tagline {
  font-family: var(--font-body) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.2em !important;
  color: var(--accent) !important;
  font-size: clamp(0.75rem, 2vw, 1rem) !important;
  font-weight: 500 !important;
  margin-bottom: 1rem !important;
}

/* Hero Overlay fuer bessere Lesbarkeit */
.page-header.has-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 100%);
  z-index: 0;
  pointer-events: none;
}

.page-header.has-image .page-header-content {
  position: relative;
  z-index: 1;
}

/* Preisseite - beide Hauptueberschriften EXAKT gleich gross */
.calculator-accordion-header,
.preise-detail-section .section-title {
  font-family: var(--font-display) !important;
  font-size: clamp(1.75rem, 5vw, 2.5rem) !important;
  line-height: 1.1 !important;
}

/* ==========================================================================
   MOBILE SCROLL-OPTIMIERUNG (kompaktere Ansicht)
   ========================================================================== */

@media (max-width: 768px) {
  /* Hero kompakter - weniger Hoehe */
  .hero,
  .page-header {
    min-height: 60vh;
    padding-top: 80px;
    padding-bottom: 2rem;
  }

  /* Sections kompakter */
  section,
  .content-section,
  .activities-section,
  .info-section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  /* Kleinere Gaps in Grids */
  .bento-grid,
  .activities-grid,
  .info-cards {
    gap: 1rem;
  }

  /* Kompaktere Cards */
  .card,
  .info-card,
  .bento-card {
    padding: 1.25rem;
  }

  /* Kompaktere Ueberschriften-Abstaende */
  .section-title,
  .activities-title {
    margin-bottom: 1.5rem;
  }

  /* Footer kompakter */
  .site-footer .footer-content {
    gap: 1.5rem;
  }
}

/* ==========================================================================
   BARRIEREFREIHEIT (Accessibility)
   ========================================================================== */

/* Screen Reader Only - visuell versteckt, fuer Screenreader sichtbar */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* sr-only aber fokussierbar */
.sr-only-focusable:focus,
.sr-only-focusable:active {
  position: static;
  width: auto;
  height: auto;
  padding: inherit;
  margin: inherit;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

/* Reduced Motion - Animationen deaktivieren */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   FIX: Page Header Video - KEIN Parallax/Fixed Effekt
   Das Video soll MIT dem Header scrollen (Klettern-Seite etc.)
   ============================================================ */
.page-header {
  position: relative !important;
  transform: none !important;
}

.page-header-video {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  z-index: 0 !important;
  /* KEIN fixed oder sticky! */
  background-attachment: scroll !important;
}

/* Verhindere transform-basierte Parallax-Effekte */
.page-header,
.page-header-video,
.page-header-overlay {
  transform: translateZ(0) !important;
  will-change: auto !important;
}

/* Overlay und Content ueber dem Video */
.page-header-overlay {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
}

.page-header-content {
  position: relative !important;
  z-index: 2 !important;
}

/* ============================================================
   E-MAIL SCHUTZ - Protected Email Styling
   ============================================================ */
.protected-email {
  color: var(--accent);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.protected-email:hover {
  color: var(--accent-glow);
}

.protected-email .email-placeholder {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25em 0.5em;
  background: rgba(var(--accent-rgb), 0.1);
  border-radius: 4px;
  font-size: 0.9em;
  transition: all 0.3s ease;
}

.protected-email:hover .email-placeholder {
  background: rgba(var(--accent-rgb), 0.2);
}

/* Nach Klick: Normale E-Mail-Darstellung */
.email-revealed {
  font-weight: 600;
}

.email-revealed .email-placeholder.revealed {
  background: transparent;
  padding: 0;
}

/* ============================================================
   KLETTER-QUIZ CAPTCHA - Form Styling
   ============================================================ */
.captcha-group {
  background: var(--dark-700);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.captcha-group .captcha-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
}

.captcha-group .captcha-label .captcha-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: var(--dark-900);
  border-radius: 8px;
}

.captcha-group .captcha-label .captcha-icon svg {
  width: 18px;
  height: 18px;
}

.captcha-question {
  background: var(--dark-800);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.captcha-question-text {
  color: var(--text-primary);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.captcha-hint {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-style: italic;
}

.captcha-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--dark-800);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.captcha-input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.2);
}

.captcha-input::placeholder {
  color: var(--text-muted);
}

/* Captcha Error State */
.captcha-group.error {
  border-color: #ef4444;
}

.captcha-group.error .captcha-input {
  border-color: #ef4444;
}

.captcha-error-msg {
  color: #ef4444;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  display: none;
}

.captcha-group.error .captcha-error-msg {
  display: block;
}

/* ============================================================
   HONEYPOT - Unsichtbares Anti-Spam Feld
   ============================================================ */
.form-hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* ============================================================
   NEWS ARCHIVE ERWEITERUNGEN
   Ergänzt die bestehenden .news-card Styles für die Blog-Übersicht
   ============================================================ */

/* Archive-spezifisches Grid - 2 Spalten statt 3 */
.news-grid--archive {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
  .news-grid--archive {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   News Card mit Bild (Archive-Variante)
   ========================================================================== */

.news-card--with-image {
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.news-card--with-image .news-card-image {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.news-card--with-image .news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-card--with-image:hover .news-card-image img {
  transform: scale(1.05);
}

/* Datum-Badge über dem Bild positionieren */
.news-card-date--overlay {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  box-shadow: var(--shadow-card);
}

/* Content-Bereich unter dem Bild */
.news-card--with-image .news-card-content {
  padding: 1.5rem;
}

/* Relative Position für Badge */
.news-card--with-image {
  position: relative;
}

/* ==========================================================================
   Pagination
   ========================================================================== */

.news-pagination {
  margin-top: 3rem;
  text-align: center;
}

.news-pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.news-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 1rem;
  background: var(--dark-700);
  border: 1px solid var(--dark-600);
  border-radius: 12px;
  color: var(--gray-300);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.news-pagination .page-numbers:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.news-pagination .page-numbers.current {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--dark-900);
}

.news-pagination .prev,
.news-pagination .next {
  padding: 0 1.25rem;
}

/* ==========================================================================
   Empty State
   ========================================================================== */

.news-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--gray-400);
}

/* ==========================================================================
   Share Buttons (Single Post)
   ========================================================================== */

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--dark-700);
  border: 1px solid var(--dark-600);
  color: var(--gray-300);
  text-decoration: none;
  transition: all 0.3s ease;
}

.share-btn:hover {
  transform: translateY(-2px);
}

/* Facebook */
.share-btn:nth-child(1):hover {
  background: #1877f2;
  border-color: #1877f2;
  color: white;
}

/* WhatsApp */
.share-btn:nth-child(2):hover {
  background: #25d366;
  border-color: #25d366;
  color: white;
}

/* E-Mail */
.share-btn:nth-child(3):hover {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

/* Light Mode */
[data-theme="light"] .share-btn,
[data-theme="light-blue"] .share-btn,
[data-theme="light-green"] .share-btn,
[data-theme="light-purple"] .share-btn {
  background: var(--bg-elevated);
  border-color: var(--border-color);
  color: var(--text-secondary);
}

/* ==========================================================================
   Post Tags Styling
   ========================================================================== */

.post-tags a {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  background: var(--dark-700);
  border: 1px solid var(--dark-600);
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--gray-300);
  text-decoration: none;
  transition: all 0.3s ease;
  margin-right: 0.25rem;
  margin-bottom: 0.25rem;
}

.post-tags a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Light Mode */
[data-theme="light"] .post-tags a,
[data-theme="light-blue"] .post-tags a,
[data-theme="light-green"] .post-tags a,
[data-theme="light-purple"] .post-tags a {
  background: var(--bg-elevated);
  border-color: var(--border-color);
  color: var(--text-secondary);
}

/* ==========================================================================
   Schwarzes Brett - Beispiel-Card
   ========================================================================== */

.partner-card.example-card {
  opacity: 0.7;
  border-style: dashed;
}

.partner-card.example-card:hover {
  opacity: 1;
}
