/* Cinzel Local Fonts */

@font-face {
  font-family: "Cinzel";
  src: url("fonts/Cinzel-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cinzel";
  src: url("fonts/Cinzel-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cinzel";
  src: url("fonts/Cinzel-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cinzel";
  src: url("fonts/Cinzel-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('CormorantGaramond-VariableFont_wght.ttf') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Outfit';
  src: url('CormorantGaramond-VariableFont_wght.ttf') format('woff2');
  font-display: swap;
}


:root {
    /* Colors */
    --color-black: #0a0a0a;
    --color-dark: #141414;
    --color-darker: #1a1a1a;
    --color-gold: #c9a227;
    --color-gold-light: #e4c558;
    --color-gold-dark: #a68618;
    --color-red: #8b1a1a;
    --color-red-light: #b22222;
    --color-cream: #f5f0e6;
    --color-white: #ffffff;
    --color-gray: #888888;
    --color-gray-dark: #333333;
    
    /* Typography */
    --font-display: 'Cinzel', serif;
    --font-elegant: 'Cormorant Garamond', serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Spacing */
    --section-padding: clamp(4rem, 10vw, 8rem);
    --container-width: min(90%, 1400px);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ========================================
   RESET & BASE
======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-black);
    color: var(--color-cream);
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ========================================
   TYPOGRAPHY
======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    margin-bottom: 1rem;
}

h4 {
    font-size: clamp(1.1rem, 1.5vw, 1.4rem);
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-family: var(--font-elegant);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.elegant-text {
    font-family: var(--font-elegant);
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    line-height: 1.9;
}

/* ========================================
   UTILITY CLASSES
======================================== */
.container {
    width: var(--container-width);
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.text-gold {
    color: var(--color-gold);
}

.gold-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    margin: 1.5rem auto;
}

.gold-line-left {
    margin-left: 0;
    background: linear-gradient(90deg, var(--color-gold), transparent);
}

/* ========================================
   BUTTONS
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: var(--color-black);
    border: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    transition: var(--transition-medium);
    z-index: 0;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-outline {
    background: transparent;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
}

.btn-outline:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

.btn-icon {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-fast);
}

.btn:hover .btn-icon {
    transform: translateX(5px);
}

.btn-link {
    font-family: var(--font-display);
    color: var(--color-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-link:hover {
    color: var(--color-gold-light);
    gap: 0.7rem;
}

/* ========================================
   NAVIGATION
======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition-medium);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    padding: 0.75rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 85px;
    height: 85px;
    transition: var(--transition-medium);
}

.navbar.scrolled .logo-icon {
    width: 70px;
    height: 70px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    line-height: 1.3;
}

.logo-text span {
    display: block;
    font-size: 0.7rem;
    color: var(--color-gold);
    letter-spacing: 0.2em;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
    color: var(--color-cream);
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width var(--transition-medium);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-gold);
}

.nav-cta {
    display: inline-flex;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    z-index: 1001;
    cursor: pointer;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--color-cream);
    transition: var(--transition-fast);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========================================
   HERO SECTION - NEW VERSION
======================================== */
.hero-new {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--color-black);
}

/* Animierter Hintergrund */
.hero-bg-animated {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(201, 162, 39, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(139, 26, 26, 0.1) 0%, transparent 40%),
        linear-gradient(135deg, var(--color-black) 0%, var(--color-darker) 50%, var(--color-dark) 100%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 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%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a227' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

/* Floating Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: float-particle 15s infinite ease-in-out;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; top: 80%; animation-delay: 2s; }
.particle:nth-child(3) { left: 60%; top: 40%; animation-delay: 4s; }
.particle:nth-child(4) { left: 80%; top: 60%; animation-delay: 1s; }
.particle:nth-child(5) { left: 90%; top: 10%; animation-delay: 3s; }
.particle:nth-child(6) { left: 40%; top: 90%; animation-delay: 5s; }

@keyframes float-particle {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
    50% { transform: translateY(-30px) scale(1.5); opacity: 0.6; }
}

/* Main Grid Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    width: var(--container-width);
    margin: 0 auto;
    padding: 20px 0 80px;
    position: relative;
    z-index: 2;
    align-items: center;
    margin-top: 9rem !important;
}

/* Left Content */
.hero-left {
    padding-right: 2rem;
}

.hero-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.25rem;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(201, 162, 39, 0.05) 100%);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--color-gold);
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease-out;
}

.hero-badge-new svg {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 1; filter: drop-shadow(0 0 2px var(--color-gold)); }
    50% { opacity: 0.7; filter: drop-shadow(0 0 8px var(--color-gold)); }
}

.hero-title-new {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title-new .title-line {
    display: block;
}

.hero-title-new .title-accent {
    color: var(--color-gold);
    font-family: var(--font-elegant);
    font-style: italic;
    font-size: 0.5em;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.hero-title-new .title-main {
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-gold-light) 50%, var(--color-cream) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-new {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--color-gray);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 500px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons-new {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 0.25rem;
    text-align: center !important;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Right Visual */
.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    animation: fadeInRight 1s ease-out 0.3s both;
}

.hero-image-main {
    position: relative;
    aspect-ratio: 9/16;
    background: linear-gradient(135deg, var(--color-darker) 0%, var(--color-black) 100%);
    border: 1px solid rgba(201, 162, 39, 0.2);
    overflow: hidden;
    z-index: 2;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Video Styling */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.hero-video-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease;
}

.hero-image-main:hover .hero-video-main {
    transform: scale(1.05);
}

/* Video Overlay */
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.1) 0%,
        rgba(10, 10, 10, 0.2) 50%,
        rgba(10, 10, 10, 0.4) 100%
    );
    z-index: 1;
}

/* Video Fallback */
.video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.05) 0%, rgba(139, 26, 26, 0.05) 100%);
    color: var(--color-gray);
    z-index: 0;
}

.video-fallback svg {
    width: 60px;
    height: 60px;
    color: var(--color-gold);
    opacity: 0.5;
}

.video-fallback span {
    font-family: var(--font-elegant);
    font-style: italic;
    font-size: 0.9rem;
}

/* Decorative Frame */
.hero-frame {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-gold);
    opacity: 0.3;
    z-index: 1;
    border-radius: 12px;
}

.hero-frame::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 30px;
    height: 30px;
    border-top: 3px solid var(--color-gold);
    border-left: 3px solid var(--color-gold);
    border-radius: 8px 0 0 0;
}

.hero-frame::after {
    content: '';
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-bottom: 3px solid var(--color-gold);
    border-right: 3px solid var(--color-gold);
    border-radius: 0 0 8px 0;
}

/* Floating Badge */
.hero-floating-badge {
    position: absolute;
    bottom: 40px;
    left: -30px;
    background: var(--color-gold);
    color: var(--color-black);
    padding: 1.25rem 1.5rem;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-floating-badge h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.hero-floating-badge p {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-bottom: 0;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Experience Badge */
.hero-experience-badge {
    position: absolute;
    top: 40px;
    right: -20px;
    background: var(--color-darker);
    border: 1px solid rgba(201, 162, 39, 0.3);
    padding: 1rem 1.25rem;
    text-align: center;
    z-index: 3;
    animation: float 3s ease-in-out infinite 1.5s;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-experience-badge .years {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-gold);
    line-height: 1;
}

.hero-experience-badge span {
    font-size: 0.75rem;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Video Controls */
.video-controls {
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 3;
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-image-main:hover .video-controls {
    opacity: 1;
}

.video-control-btn {
    width: 40px;
    height: 40px;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(201, 162, 39, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-control-btn:hover {
    background: rgba(201, 162, 39, 0.2);
    transform: scale(1.1);
}

.video-control-btn svg {
    width: 20px;
    height: 20px;
}

/* Scroll Indicator */
.hero-scroll-new {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero-scroll-new span {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gray);
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--color-gray);
    border-radius: 20px;
    position: relative;
}

.scroll-mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--color-gray);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

/* ========================================
   ABOUT SECTION
======================================== */
.about {
    padding: var(--section-padding) 0;
    background: var(--color-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-container {
    position: relative;
}

.about-image {
    position: relative;
    height: 900px !important;
    border: 1px solid rgba(201, 162, 39, 0.2);
    overflow: hidden;
}

.about-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-stats {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--color-gold);
    color: var(--color-black);
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.about-stats-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

.about-stats-text {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.about-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.about-feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    color: var(--color-gold);
}

.about-feature-icon svg {
    width: 100%;
    height: 100%;
}

.about-feature h4 {
    color: var(--color-cream);
    margin-bottom: 0.5rem;
}

.about-feature p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 0;
}

/* ========================================
   VALUES SECTION
======================================== */
.values {
    padding: var(--section-padding) 0;
    background: var(--color-darker);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.value-card {
    background: var(--color-black);
    padding: 3rem 2.5rem;
    border: 1px solid rgba(201, 162, 39, 0.2);
    text-align: center;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
    transform: scaleX(0);
    transition: transform var(--transition-medium);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    color: var(--color-gold);
    transition: var(--transition-medium);
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotateY(360deg);
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-card h3 {
    font-family: var(--font-display);
    color: var(--color-cream);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.value-card p {
    color: var(--color-gray);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 0;
}

/* ========================================
   TRAINING SECTION - ÜBERARBEITET
======================================== */
.training {
    padding: var(--section-padding) 0;
    background: var(--color-dark);
}

/* Tabs Verbesserungen */
.training-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 3rem 0;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.training-tab {
    padding: 1rem 2.5rem;
    font-family: var(--font-display);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--color-darker);
    color: var(--color-cream);
    border: 1px solid rgba(201, 162, 39, 0.2);
    cursor: pointer;
    transition: var(--transition-medium);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.training-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.1), transparent);
    transition: left 0.6s ease;
}

.training-tab:hover::before {
    left: 100%;
}

.training-tab:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateY(-2px);
}

.training-tab.active {
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
    color: var(--color-black);
    border-color: var(--color-gold);
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.3);
    transform: translateY(0);
}

/* Content Bereich */
.training-contents {
    position: relative;
    min-height: 400px;
    margin-top: 2rem;
}

.training-content {
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.training-content.active {
    display: block;
}

/* Allgemeine Training Cards (für Techniken) */
.training-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.training-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--color-black);
    border: 1px solid rgba(201, 162, 39, 0.1);
    transition: var(--transition-medium);
    border-radius: 8px;
    overflow: hidden;
}

.training-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(201, 162, 39, 0.2);
}

.training-card-image {
    position: relative;
    background: linear-gradient(135deg, var(--color-darker) 0%, var(--color-dark) 100%);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    border-bottom: 1px solid rgba(201, 162, 39, 0.1);
}

.training-card-image svg {
    width: 70px;
    height: 70px;
    color: var(--color-gold);
    margin-bottom: 1rem;
    transition: transform var(--transition-medium);
}

.training-card:hover .training-card-image svg {
    transform: scale(1.1) rotateY(360deg);
}

.training-card-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.training-card-body h3 {
    font-family: var(--font-display);
    color: var(--color-cream);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-align: center;
}

.training-card-body p {
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    text-align: center;
    font-size: 0.95rem;
}

.training-card-badge {
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
    color: var(--color-black);
    padding: 0.5rem 1.25rem;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 20px;
    margin-top: auto;
    align-self: center;
    transition: var(--transition-medium);
}

.training-card:hover .training-card-badge {
    background: var(--color-cream);
    transform: scale(1.05);
}

/* Techniken Tab - 4 Spalten Layout */
#techniken .training-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

/* Trainingszeiten Tab - Neues Design */
#trainingszeiten .training-content-text {
    background: var(--color-black);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 8px;
    padding: 3rem;
    margin-top: 1rem;
}

#trainingszeiten .schedule-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(201, 162, 39, 0.3);
}

#trainingszeiten .schedule-header h3 {
    font-family: var(--font-display);
    color: var(--color-gold);
    font-size: 1.8rem;
    margin-bottom: 0;
}

#trainingszeiten .schedule-intro {
    font-size: 1.1rem;
    color: var(--color-cream);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Neue Schedule Table - Modernes Design */
#trainingszeiten .schedule-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--color-darker);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

#trainingszeiten .schedule-table thead {
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
}

#trainingszeiten .schedule-table thead th {
    padding: 1.5rem 1.5rem;
    text-align: left;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-black);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-right: 1px solid rgba(166, 134, 24, 0.3);
}

#trainingszeiten .schedule-table thead th:last-child {
    border-right: none;
}

#trainingszeiten .schedule-table tbody tr {
    transition: var(--transition-fast);
    border-bottom: 1px solid rgba(201, 162, 39, 0.1);
}

#trainingszeiten .schedule-table tbody tr:last-child {
    border-bottom: none;
}

#trainingszeiten .schedule-table tbody tr:hover {
    background: rgba(201, 162, 39, 0.05);
}

#trainingszeiten .schedule-table tbody td {
    padding: 1.5rem 1.5rem;
    color: var(--color-cream);
    font-size: 1rem;
    vertical-align: middle;
    border-right: 1px solid rgba(201, 162, 39, 0.1);
}

#trainingszeiten .schedule-table tbody td:last-child {
    border-right: none;
}

#trainingszeiten .schedule-table tbody td:first-child {
    font-family: var(--font-display);
    color: var(--color-gold);
    font-weight: 500;
    font-size: 1.1rem;
}

#trainingszeiten .schedule-table tbody td strong {
    color: var(--color-gold);
    font-weight: 600;
}

#trainingszeiten .schedule-table tbody td .time-slot {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

#trainingszeiten .schedule-table tbody td .time-slot span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

#trainingszeiten .schedule-table tbody td .time-slot svg {
    width: 16px;
    height: 16px;
    color: var(--color-gold);
}

/* Trainingszeiten Info Box */
#trainingszeiten .schedule-info {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.05), rgba(139, 26, 26, 0.05));
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 8px;
    padding: 2rem;
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

#trainingszeiten .info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

#trainingszeiten .info-item svg {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

#trainingszeiten .info-item h4 {
    color: var(--color-gold);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
}

#trainingszeiten .info-item p {
    color: var(--color-cream);
    font-size: 0.95rem;
    margin-bottom: 0;
    opacity: 0.9;
}

/* ========================================
   GALLERY SECTION
======================================== */
.gallery {
    padding: var(--section-padding) 0;
    background: var(--color-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4/3;
    background: var(--color-darker);
    transition: var(--transition-medium);
    border: 1px solid rgba(201, 162, 39, 0.1);
    cursor: pointer;
}

/* Hide items after the first 9 (3 rows of 3) by default */
.gallery-item:nth-child(n+10) {
    display: none;
}

.gallery-grid.show-all .gallery-item {
    display: block;
}

.gallery-item:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Zoom Icon für jedes Bild */
.gallery-zoom-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(201, 162, 39, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
    cursor: pointer;
}

.gallery-item:hover .gallery-zoom-icon {
    opacity: 1;
    transform: scale(1.1);
}

.gallery-zoom-icon svg {
    width: 20px;
    height: 20px;
}

/* Gallery Load More Button */
.gallery-load-more {
    text-align: center;
    margin-top: 3rem;
}

.gallery-load-more.hidden {
    display: none;
}

.btn-load-more {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 3rem;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: transparent;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
    cursor: pointer;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.btn-load-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-gold);
    transition: var(--transition-medium);
    z-index: 0;
}

.btn-load-more:hover::before {
    left: 0;
}

.btn-load-more:hover {
    color: var(--color-black);
}

.btn-load-more span {
    position: relative;
    z-index: 1;
}

.btn-load-more svg {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 1;
    transition: transform var(--transition-medium);
}

.btn-load-more:hover svg {
    transform: translateY(5px);
}

/* Lightbox / Zoom Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: block;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border: 2px solid rgba(201, 162, 39, 0.3);
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(201, 162, 39, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(201, 162, 39, 0.2);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(201, 162, 39, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-nav:hover {
    background: rgba(201, 162, 39, 0.2);
    transform: scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-nav svg {
    width: 24px;
    height: 24px;
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--color-cream);
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    font-family: var(--font-display);
    font-size: 1.1rem;
}

/* ========================================
   FAQ SECTION
======================================== */
.faq {
    padding: var(--section-padding) 0;
    background: var(--color-darker);
}

.faq-list {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--color-black);
    border: 1px solid rgba(201, 162, 39, 0.2);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: var(--transition-medium);
}

.faq-item.active {
    border-color: var(--color-gold);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-cream);
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-gold);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--color-gold);
    transition: transform var(--transition-medium);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer-content {
    padding: 0 2rem 2rem;
    opacity: 0.9;
    line-height: 1.8;
}

/* ========================================
   TESTIMONIALS SECTION
======================================== */
.testimonials {
    padding: var(--section-padding) 0;
    background: var(--color-dark);
}

.testimonials-wrapper {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
    min-height: 300px;
}

.testimonial-item {
    text-align: center;
    display: none;
}

.testimonial-item:first-child {
    display: block;
}

.testimonial-quote {
    font-family: var(--font-elegant);
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    line-height: 1.8;
    font-style: italic;
    color: var(--color-cream);
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--color-gold);
    position: absolute;
    top: -20px;
    left: -20px;
    opacity: 0.3;
}

.testimonial-author {
    font-family: var(--font-display);
    color: var(--color-gold);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 0.9rem;
    opacity: 0.7;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonials-nav button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-gray-dark);
    border: 1px solid var(--color-gray);
    cursor: pointer;
    transition: var(--transition-fast);
}

.testimonials-nav button.active {
    background: var(--color-gold);
    border-color: var(--color-gold);
}

/* ========================================
   EVENTS SECTION - HORIZONTAL LAYOUT
======================================== */
.events {
    padding: var(--section-padding) 0;
    background: var(--color-darker);
}

.events-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.event-card {
    background: var(--color-black);
    border: 1px solid rgba(201, 162, 39, 0.1);
    transition: var(--transition-medium);
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 0;
    overflow: hidden;
}

.event-card:hover {
    border-color: var(--color-gold);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.event-image-wrapper {
    position: relative;
    background: var(--color-darker);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.event-img-flyer {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-img-flyer img {
    max-width: 100%;
    max-height: 500px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.6s ease;
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.event-card:hover .event-img-flyer img {
    transform: scale(1.03);
}

.event-placeholder-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-darker);
}

.event-placeholder-img svg {
    width: 80px;
    height: 80px;
    color: var(--color-gold);
    opacity: 0.3;
}

.event-date {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: var(--color-gold);
    color: var(--color-black);
    padding: 0.8rem 1rem;
    text-align: center;
    z-index: 10;
    border-radius: 4px;
    font-family: var(--font-display);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.event-date .day {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

.event-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--color-black);
}

.event-content h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-cream);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.event-content .elegant-text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--color-gray);
}

.event-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--color-darker);
    border-radius: 4px;
}

.event-details span {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--color-cream);
}

.event-details svg {
    flex-shrink: 0;
    width: 20px !important;
    height: 20px !important;
    min-width: 20px;
    max-width: 20px;
    color: var(--color-gold);
}

.event-cta {
    display: flex;
    gap: 1rem;
}

.event-cta .btn {
    flex: 1;
}

/* ========================================
   CONTACT SECTION
======================================== */
.contact {
    padding: var(--section-padding) 0;
    background: var(--color-dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-info-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--color-gold);
}

.contact-info-icon svg {
    width: 100%;
    height: 100%;
}

.contact-info-text h4 {
    color: var(--color-gold);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.contact-info-text p {
    opacity: 0.9;
    margin-bottom: 0;
}

.contact-form {
    background: var(--color-black);
    padding: 3rem;
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--color-dark);
    border: 1px solid var(--color-gray-dark);
    color: var(--color-cream);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* ========================================
   SVG SIZE FIXES - PREVENT OVERSIZING
======================================== */

/* Global SVG Reset */
svg {
    display: block;
    flex-shrink: 0;
}

/* Training Card SVGs */
.training-card-meta svg {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px;
    max-width: 18px;
    color: var(--color-gold);
}

/* Gallery SVGs */
.gallery-zoom-icon svg {
    width: 20px !important;
    height: 20px !important;
}

/* Button SVGs */
.btn-load-more svg {
    width: 20px !important;
    height: 20px !important;
    position: relative;
    z-index: 1;
    transition: transform var(--transition-medium);
}

/* Contact Info SVGs */
.contact-info-icon svg {
    width: 24px !important;
    height: 24px !important;
}

/* Footer Social SVGs */
.footer-social svg {
    width: 20px !important;
    height: 20px !important;
}

/* Lightbox Navigation SVGs */
.lightbox-nav svg {
    width: 24px !important;
    height: 24px !important;
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: var(--color-black);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(201, 162, 39, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-icon {
    width: 60px;
    height: 60px;
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.1em;
    line-height: 1.3;
}

.footer-logo-text span {
    display: block;
    font-size: 0.65rem;
    color: var(--color-gold);
    letter-spacing: 0.2em;
}

.footer-brand p {
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-section h4 {
    font-family: var(--font-display);
    color: var(--color-gold);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-section ul li a {
    opacity: 0.8;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-section ul li a:hover {
    color: var(--color-gold);
    opacity: 1;
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-dark);
    border: 1px solid var(--color-gray-dark);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-black);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    opacity: 0.7;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--color-gold);
    opacity: 1;
}

/* ========================================
   COOKIE BANNER
======================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-dark);
    color: var(--color-cream);
    padding: 1.5rem;
    z-index: 9999;
    border-top: 1px solid rgba(201, 162, 39, 0.3);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-banner .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cookie-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.cookie-title {
    font-family: var(--font-display);
    color: var(--color-gold);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.cookie-close {
    background: none;
    border: none;
    color: var(--color-cream);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.25rem;
    transition: var(--transition-fast);
    opacity: 0.7;
    line-height: 1;
}

.cookie-close:hover {
    opacity: 1;
    color: var(--color-gold);
}

.cookie-content {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

.cookie-content a {
    color: var(--color-gold);
    text-decoration: underline;
}

.cookie-content a:hover {
    color: var(--color-gold-light);
}

.cookie-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.2rem;
    margin: 1rem 0;
}

.cookie-category {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(201, 162, 39, 0.2);
    padding: 1.2rem;
    border-radius: 4px;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.category-title {
    font-family: var(--font-display);
    color: var(--color-cream);
    font-size: 1.1rem;
    font-weight: 500;
}

.category-toggle {
    position: relative;
    width: 44px;
    height: 22px;
}

.category-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333;
    transition: .4s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 2px;
    bottom: 2px;
    background-color: var(--color-cream);
    transition: .4s;
    border-radius: 50%;
}

.category-toggle input:checked + .toggle-slider {
    background-color: var(--color-gold);
}

.category-toggle input:checked + .toggle-slider:before {
    transform: translateX(22px);
}

.category-essential {
    pointer-events: none;
    opacity: 0.8;
}

.category-essential .toggle-slider {
    background-color: var(--color-gold) !important;
}

.category-description {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.6;
}

.cookie-details {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-details-summary {
    font-family: var(--font-display);
    color: var(--color-gold);
    cursor: pointer;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-details-content {
    margin-top: 1rem;
    font-size: 0.85rem;
    opacity: 0.8;
    line-height: 1.6;
}

.cookie-details-list {
    margin: 0.5rem 0 0.5rem 1.5rem;
    list-style: disc;
}

.cookie-details-list li {
    margin-bottom: 0.5rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-top: 1rem;
}

.cookie-btn {
    padding: 0.85rem 1.8rem;
    border-radius: 2px;
    font-family: var(--font-display);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition-medium);
    border: none;
    min-width: 160px;
}

.cookie-btn-accept-all {
    background: var(--color-gold);
    color: var(--color-black);
    font-weight: 600;
}

.cookie-btn-accept-all:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
}

.cookie-btn-save {
    background: transparent;
    color: var(--color-cream);
    border: 1px solid var(--color-gold);
}

.cookie-btn-save:hover {
    background: rgba(201, 162, 39, 0.1);
    transform: translateY(-2px);
}

.cookie-btn-reject {
    background: transparent;
    color: var(--color-cream);
    border: 1px solid var(--color-gray);
}

.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.cookie-settings-open {
    color: var(--color-gold);
    text-decoration: underline;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    margin-left: 1rem;
}

.cookie-settings-open:hover {
    color: var(--color-gold-light);
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ========================================
   RESPONSIVE DESIGN FÜR ÜBERARBEITETE TRAINING SECTIONS
======================================== */

/* Tablet */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--color-dark);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 1.5rem;
        transition: right var(--transition-medium);
        border-left: 1px solid rgba(201, 162, 39, 0.2);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-cta {
        display: inline-flex;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-left {
        padding-right: 0;
    }
    
    .about-grid,
    .training-content.active,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image {
        height: 500px;
    }
    
    .about-stats {
        bottom: -20px;
        right: -20px;
    }
    
    .training-image {
        height: 400px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .training-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    #techniken .training-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    #trainingszeiten .training-content-text {
        padding: 2rem;
    }
    
    #trainingszeiten .schedule-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    #trainingszeiten .schedule-table {
        font-size: 0.9rem;
    }
    
    #trainingszeiten .schedule-table thead th,
    #trainingszeiten .schedule-table tbody td {
        padding: 1.2rem 1rem;
    }
    
    #trainingszeiten .schedule-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Events Section Tablet */
    .event-card {
        grid-template-columns: 1fr;
    }
    
    .event-image-wrapper {
        min-height: 400px;
    }
    
    .event-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cookie-categories {
        grid-template-columns: 1fr;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
        min-width: auto;
    }
    
    .schedule-table {
        font-size: 0.9rem;
    }
    
    .schedule-table thead th,
    .schedule-table tbody td {
        padding: 1rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: clamp(3rem, 8vw, 5rem);
    }
    
    h1 {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    h2 {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .about-features,
    .schedule-grid,
    .values-grid,
    .training-grid,
    #techniken .training-grid {
        grid-template-columns: 1fr;
    }
    
    .training-tabs {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }
    
    .training-tab {
        text-align: center;
        padding: 1rem 1.5rem;
    }
    
    #techniken .training-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    #techniken .training-card-image {
        min-height: 150px;
        padding: 2rem 1.5rem;
    }
    
    #techniken .training-card-image svg {
        width: 60px;
        height: 60px;
    }
    
    #techniken .training-card-body {
        padding: 1.5rem;
    }
    
    #techniken .training-card-body h3 {
        font-size: 1.1rem;
    }
    
    #trainingszeiten .training-content-text {
        padding: 1.5rem;
        margin-top: 0.5rem;
    }
    
    #trainingszeiten .schedule-table {
        font-size: 0.85rem;
    }
    
    #trainingszeiten .schedule-table thead th,
    #trainingszeiten .schedule-table tbody td {
        padding: 1rem 0.75rem;
        font-size: 0.85rem;
    }
    
    /* Make table scrollable on mobile */
    #trainingszeiten .schedule {
        overflow-x: auto;
    }
    
    #trainingszeiten .schedule-table {
        min-width: 600px;
    }
    
    #trainingszeiten .schedule-info {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .value-card {
        padding: 2.5rem 2rem;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    /* Gallery - Show only 6 items on mobile (2 rows) */
    .gallery-item:nth-child(n+7) {
        display: none;
    }
    
    .gallery-grid.show-all .gallery-item {
        display: block;
    }
    
    .events-grid {
        gap: 2rem;
    }
    
    .event-card {
        grid-template-columns: 1fr;
    }
    
    .event-image-wrapper {
        min-height: 350px;
        padding: 1.5rem;
    }
    
    .event-date {
        top: 1.5rem;
        left: 1.5rem;
    }
    
    .event-content {
        padding: 2rem 1.5rem;
    }
    
    .event-content h3 {
        font-size: 1.5rem;
    }
    
    .event-details {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }
    
    .event-details span {
        font-size: 0.9rem;
    }
    
    .event-cta {
        flex-direction: column;
    }
    
    .event-img-flyer img {
        max-height: 400px;
    }
    
    .event-details {
        gap: 0.75rem;
    }
    
    .event-details span {
        font-size: 0.8rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .footer-section ul {
        align-items: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .lightbox-content {
        padding: 20px;
    }
    
    .lightbox-close,
    .lightbox-nav {
        width: 40px;
        height: 40px;
    }
    
    .lightbox-nav {
        top: auto;
        bottom: 20px;
        transform: none;
    }
    
    .lightbox-prev {
        left: 20px;
    }
    
    .lightbox-next {
        right: 20px;
    }
    
    .cookie-banner {
        padding: 1.2rem;
    }

    .cookie-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .cookie-title {
        font-size: 1.1rem;
    }
    
    /* Schedule Table Mobile */
    .schedule-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .schedule-table {
        font-size: 0.85rem;
    }
    
    .schedule-table thead th,
    .schedule-table tbody td {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }
    
    /* Make table scrollable on very small screens */
    .schedule {
        overflow-x: auto;
    }
    
    .btn-load-more {
        padding: 1rem 2rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .lightbox-img {
        max-width: 100%;
        max-height: 70%;
    }
    
    .event-img-flyer {
        height: 250px;
    }
    
    .event-date {
        top: 10px;
        left: 10px;
        padding: 0.5rem 0.7rem;
    }
    
    .event-date .day {
        font-size: 1.1rem;
    }
    
    .event-date .month {
        font-size: 0.7rem;
    }
    
    #trainingszeiten .schedule-table {
        min-width: 500px;
    }
    
    #trainingszeiten .schedule-table thead th,
    #trainingszeiten .schedule-table tbody td {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }
    
    #trainingszeiten .info-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    #trainingszeiten .info-item svg {
        margin-top: 0;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-badge-new {
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }
    
    .btn {
        padding: 0.875rem 2rem;
        font-size: 0.8rem;
    }
    
    .logo-icon {
        width: 70px;
        height: 70px;
    }
    
    .navbar.scrolled .logo-icon {
        width: 60px;
        height: 60px;
    }
    
    .about-stats {
        padding: 1.5rem;
        bottom: -15px;
        right: -15px;
    }
    
    .about-stats-number {
        font-size: 2.5rem;
    }
    
    .schedule {
        padding: 1.5rem;
    }
    
    .cookie-btn {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
}