/* Lokale Schriftarten (DSGVO-konform, kein Drittanbieter) */
@font-face {
    font-family: 'Fredoka';
    src: url('fonts/Fredoka-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Fredoka';
    src: url('fonts/Fredoka-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Fredoka';
    src: url('fonts/Fredoka-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Fredoka';
    src: url('fonts/Fredoka-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Fredoka';
    src: url('fonts/Fredoka-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Nunito';
    src: url('fonts/Nunito-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Nunito';
    src: url('fonts/Nunito-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Nunito';
    src: url('fonts/Nunito-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Nunito';
    src: url('fonts/Nunito-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary: #7ed958;
    --primary-dark: #5fb83a;
    --secondary: #a8e890;
    --accent: #FFD700;
    --teal: #6dd4a8;
    --text-dark: #1A1A2E;
    --text-light: #4A4A68;
    --white: #FFFFFF;
    --off-white: #FAFAFF;
    --light-bg: #F0F8F0;
    --shadow: 0 20px 60px rgba(0,0,0,0.1);
    --shadow-hover: 0 30px 80px rgba(0,0,0,0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    scroll-padding-top: 130px;
}
body { 
    font-family: 'Nunito', sans-serif; 
    background-color: var(--off-white);
    color: var(--text-dark); 
    overflow-x: hidden; 
    line-height: 1.6;
}
h1, h2, h3, h4 { font-family: 'Fredoka', sans-serif; line-height: 1.2; }
img { max-width: 100%; height: auto; display: block; }

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

/* Buttons */
.btn { 
    display: inline-flex; 
    align-items: center;
    gap: 10px;
    padding: 15px 35px; 
    border-radius: 50px; 
    font-family: 'Fredoka', sans-serif; 
    font-weight: 600; 
    font-size: 1rem;
    text-decoration: none; 
    transition: all 0.3s ease;
    border: none; 
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.btn:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 15px 40px rgba(0,0,0,0.2); 
}
.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.gallery-item:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}
.btn-primary { 
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); 
    color: var(--white);
    transition: all 0.4s ease;
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}
.btn-outline { 
    background: transparent; 
    color: var(--primary);
    border: 2px solid var(--primary);
    transition: all 0.4s ease;
}
.btn-outline:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border-color: var(--secondary);
}
.btn-large {
    padding: 18px 45px;
    font-size: 1.1rem;
}

.section-padding { padding: 100px 0; position: relative; }

/* Section Tag */
.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(126,217,88,0.15) 0%, rgba(168,232,144,0.15) 100%);
    color: var(--primary-dark);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* --- Header --- */
header { 
    background: #7ed958;
    padding: 20px 0; 
    position: fixed; 
    width: 100%; 
    top: 0; 
    z-index: 1000; 
    transition: all 0.3s ease;
}
header.scrolled { 
    background: #7ed958;
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
header.scrolled .logo-text,
header.scrolled .logo-sub {
    color: white;
}
header.scrolled nav a {
    color: white;
}
header.scrolled .social-header a {
    background: rgba(255,255,255,0.25);
}
header.scrolled .social-header a svg {
    fill: white;
}

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

.logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 4px 8px 4px 0;
    margin: -4px 0;
    background: #7ed958;
    border-radius: 8px;
}
.logo-img {
    height: 90px;
    width: auto;
    max-height: 90px;
    display: block;
    transition: all 0.3s ease;
}
header.scrolled .logo-img {
    height: 70px;
    max-height: 70px;
}
.logo-text { 
    font-family: 'Fredoka', sans-serif;
    font-size: 1.8rem; 
    font-weight: 700;
    color: white;
    line-height: 1;
    transition: color 0.3s;
}
.logo-sub {
    font-family: 'Nunito', sans-serif;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.8);
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
}

nav ul { 
    display: flex; 
    list-style: none; 
    gap: 30px; 
}
nav a { 
    color: white; 
    text-decoration: none; 
    font-weight: 600; 
    font-size: 1.15rem; 
    position: relative;
    padding: 5px 0;
    transition: color 0.3s;
}
nav a::after { 
    content: ''; 
    position: absolute; 
    bottom: -5px; 
    left: 0; 
    width: 0; 
    height: 3px; 
    background: var(--accent); 
    border-radius: 3px; 
    transition: width 0.3s; 
}
nav a:hover::after { width: 100%; }

.social-header { display: flex; gap: 12px; }
.social-header a { 
    width: 40px; 
    height: 40px; 
    background: rgba(255,255,255,0.2); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    transition: all 0.3s; 
}
.social-header a:hover { 
    background: var(--accent); 
    transform: scale(1.1) rotate(5deg); 
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: white;
}

.mobile-nav {
    position: fixed; 
    top: 0; 
    right: -100%; 
    width: 80%; 
    height: 100vh;
    background: white; 
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    z-index: 1001; 
    transition: right 0.4s ease; 
    padding: 80px 40px;
    display: flex; 
    flex-direction: column; 
    gap: 20px;
}
.mobile-nav.active { right: 0; }
.mobile-nav a {
    font-size: 1.3rem;
    font-family: 'Fredoka', sans-serif;
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
    color: var(--primary-dark);
}
.close-menu {
    position: absolute; 
    top: 20px; 
    right: 20px; 
    font-size: 2rem; 
    background: none; 
    border: none; 
    cursor: pointer; 
}
.overlay { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0,0,0,0.5); 
    z-index: 1000; 
    opacity: 0; 
    pointer-events: none; 
    transition: opacity 0.3s; 
}
.overlay.active { opacity: 1; pointer-events: all; }

/* --- Lightbox (Galerie vergrößern) --- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.lightbox.active {
    opacity: 1;
    visibility: visible;
}
.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}
.lightbox-content {
    position: relative;
    z-index: 1;
    max-width: 95vw;
    max-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-content img {
    max-width: 100%;
    max-height: 95vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s;
}
.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.35);
}

/* --- Hero --- */
.hero { 
    min-height: 100vh; 
    display: flex; 
    align-items: center; 
    padding-top: 120px;
    background: linear-gradient(180deg, #7ed958 0%, #7ed958 12%, #6dd4a8 50%, #a8e890 100%);
    position: relative;
    overflow: hidden;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}
.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}
.shape-1 { width: 400px; height: 400px; background: white; top: -100px; right: -100px; }
.shape-2 { width: 300px; height: 300px; background: var(--accent); bottom: 10%; left: -50px; }
.shape-3 { width: 200px; height: 200px; background: var(--primary); top: 40%; right: 20%; }
.shape-4 { width: 150px; height: 150px; background: var(--teal); bottom: 20%; right: 10%; }

.hero-grid { 
    display: grid; 
    grid-template-columns: 1.2fr 0.8fr; 
    gap: 60px; 
    align-items: center; 
    position: relative; 
    z-index: 1; 
}

.hero-badge { 
    background: rgba(255,255,255,0.2); 
    color: white; 
    padding: 10px 25px; 
    border-radius: 50px; 
    font-weight: 700; 
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.hero h1 { 
    font-size: clamp(2.5rem, 5vw, 4rem); 
    margin-bottom: 25px; 
    color: white;
    font-weight: 700;
}
.hero h1 .highlight {
    color: #e67e22;
    position: relative;
    text-shadow:
        1px 1px 0 rgba(255, 255, 255, 0.35),
        2px 2px 0 rgba(255, 200, 150, 0.2),
        2px 2px 4px rgba(0, 0, 0, 0.15),
        3px 3px 8px rgba(0, 0, 0, 0.12);
}
/* Wave-Animation für "kleine Helden" (wie v1_main) */
.hero h1 .wave-letters {
    display: inline-block;
}
.hero h1 .wave-letters span {
    display: inline-block;
    animation: hero-wave 1.5s ease-in-out infinite;
}
.hero h1 .wave-letters span:nth-child(1) { animation-delay: 0s; }
.hero h1 .wave-letters span:nth-child(2) { animation-delay: 0.05s; }
.hero h1 .wave-letters span:nth-child(3) { animation-delay: 0.1s; }
.hero h1 .wave-letters span:nth-child(4) { animation-delay: 0.15s; }
.hero h1 .wave-letters span:nth-child(5) { animation-delay: 0.2s; }
.hero h1 .wave-letters span:nth-child(6) { animation-delay: 0.25s; }
.hero h1 .wave-letters span:nth-child(7) { animation-delay: 0.3s; }
.hero h1 .wave-letters span:nth-child(8) { animation-delay: 0.35s; }
.hero h1 .wave-letters span:nth-child(9) { animation-delay: 0.4s; }
.hero h1 .wave-letters span:nth-child(10) { animation-delay: 0.45s; }
.hero h1 .wave-letters span:nth-child(11) { animation-delay: 0.5s; }
.hero h1 .wave-letters span:nth-child(12) { animation-delay: 0.55s; }
.hero h1 .wave-letters span:nth-child(13) { animation-delay: 0.6s; }
@keyframes hero-wave {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero p { 
    font-size: 1.2rem; 
    margin-bottom: 35px; 
    color: rgba(255,255,255,0.9); 
    max-width: 90%; 
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
/* Kontrast: "Mehr erfahren" auf grünem Hero-Hintergrund gut lesbar */
.hero .btn-outline {
    color: white;
    border-color: white;
}
.hero .btn-outline:hover {
    background: rgba(255,255,255,0.25);
    color: white;
    border-color: white;
}

.hero-stats {
    display: flex;
    gap: 40px;
}
.stat {
    text-align: center;
}
.stat-number {
    display: block;
    font-family: 'Fredoka', sans-serif;
    font-size: 2.9rem;
    font-weight: 700;
    color: var(--accent);
}
.stat-label {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
}

.hero-image-wrapper { 
    position: relative; 
}
.image-frame {
    position: relative;
}
.hero-slider-frame {
    overflow: hidden;
    border-radius: 30px;
    border: 5px solid white;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
.hero-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    max-width: 100%;
}
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.8s ease;
}
.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* --- About --- */
.about {
    background: var(--white);
}
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}
.about-image-section {
    position: relative;
}
.about-img-main {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 350px;
}
.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 25px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(126,217,88,0.4);
}
.experience-badge .years {
    display: block;
    font-family: 'Fredoka', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}
.experience-badge .text {
    font-size: 0.8rem;
    opacity: 0.9;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}
.about-content h2 .name-highlight {
    color: var(--primary);
}
.about-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
    max-width: 30rem;
    position: relative;
}
.about-features::before {
    content: '';
    position: absolute;
    left: calc(20px + 26px - 1.5px);
    top: calc(15px + 26px);
    bottom: calc(15px + 26px);
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--primary) 0%, rgba(126, 217, 88, 0.35) 100%);
    z-index: 0;
    pointer-events: none;
}
.feature {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: var(--light-bg);
    border-radius: 15px;
    transition: all 0.3s;
}
.feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.feature-icon {
    min-width: 52px;
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-dark);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    box-shadow:
        0 4px 14px rgba(0, 0, 0, 0.08),
        0 0 0 4px rgba(126, 217, 88, 0.15);
    flex-shrink: 0;
}
.feature span {
    font-weight: 600;
    color: var(--text-dark);
}

/* --- Services --- */
.services {
    background: var(--light-bg);
}
.services-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.service-item {
    background: white;
    border-radius: 25px;
    padding: 35px;
    position: relative;
    transition: all 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.service-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}
.service-number {
    position: absolute;
    top: -15px;
    left: 25px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.4s ease;
}
.service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
    line-height: 1.3;
}
.service-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.75;
}

/* --- Programs --- */
.programs {
    background: var(--white);
}
.programs-carousel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.program-card {
    display: flex;
    flex-direction: column;
    background: var(--light-bg);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s;
}
.program-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}
.program-card.featured {
    background: linear-gradient(135deg, rgba(126,217,88,0.1) 0%, rgba(168,232,144,0.1) 100%);
    border: 2px solid var(--primary);
}
.program-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 100%;
}
.program-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
    line-height: 1.35;
}
.program-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 12px;
    line-height: 1.7;
}
.program-info ul {
    list-style: none;
    margin-bottom: 15px;
}
.program-info li {
    padding: 3px 0;
    padding-left: 15px;
    position: relative;
    font-size: 0.85rem;
    color: var(--text-light);
}
.program-info li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}
.program-tag {
    display: inline-block;
    margin-top: auto;
    background: var(--primary);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}
.program-tag.popular {
    background: var(--accent);
    color: var(--text-dark);
}

/* --- Characters (Grid wie v3 + Animationen) --- */
.characters {
    background: linear-gradient(180deg, transparent 0%, rgba(126, 217, 88, 0.15) 50%, transparent 100%);
    color: var(--text-dark);
}
.characters .section-tag {
    background: var(--primary);
    color: white;
}
.characters .section-header h2,
.characters .section-header p {
    color: var(--text-dark);
}

/* Slider-Wrapper mit Pfeilen */
.characters-slider-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 20px;
}

.characters-slider {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding: 8px 0;
}

.characters-slider .characters-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 25px;
    margin: 0;
    padding: 0 4px;
}

.character-card {
    position: relative;
    flex-shrink: 0;
    width: 180px;
    min-width: 180px;
    scroll-snap-align: start;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid transparent;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease;
    opacity: 0;
    transform: translateY(40px);
    animation: none;
}
.characters-slider-wrapper.reveal.active .character-card {
    animation: charCardReveal 0.7s ease forwards, charCardFloat 4s ease-in-out infinite;
}
.character-card:nth-child(1) { border-top: 4px solid var(--primary);   animation-delay: 0.1s; }
.character-card:nth-child(2) { border-top: 4px solid #e74c3c;          animation-delay: 0.2s; }
.character-card:nth-child(3) { border-top: 4px solid var(--accent);    animation-delay: 0.3s; }
.character-card:nth-child(4) { border-top: 4px solid #ff8c42;         animation-delay: 0.4s; }
.character-card:nth-child(5) { border-top: 4px solid var(--secondary); animation-delay: 0.5s; }
.character-card:nth-child(6) { border-top: 4px solid var(--primary);   animation-delay: 0.6s; }
.character-card:nth-child(7) { border-top: 4px solid #e91e8c;          animation-delay: 0.7s; }
.character-card:nth-child(8) { border-top: 4px solid #2196f3;          animation-delay: 0.8s; }
.character-card:nth-child(9) { border-top: 4px solid #e74c3c;          animation-delay: 0.9s; }
.character-card:nth-child(10) { border-top: 4px solid #ff0000;         animation-delay: 1.0s; }
.character-card:nth-child(11) { border-top: 4px solid #dc143c;         animation-delay: 1.1s; }
.character-card:nth-child(12) { border-top: 4px solid #ff1493;         animation-delay: 1.2s; }

/* Beliebteste Charaktere hervorheben */
.character-card--popular {
    border-color: var(--primary);
    box-shadow: 0 12px 35px rgba(126, 217, 88, 0.2);
}
.character-card--popular:hover {
    box-shadow: 0 20px 45px rgba(126, 217, 88, 0.35);
}
.character-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: white;
    background: var(--primary);
    padding: 4px 8px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(126, 217, 88, 0.4);
}

@keyframes charCardReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mittige Karte hervorheben */
.character-card.centered {
    box-shadow: 0 18px 45px rgba(126, 217, 88, 0.4);
    border-color: var(--primary);
    z-index: 1;
}
.character-card.centered .character-card-inner::after {
    opacity: 0.15;
}
.characters-slider-wrapper.reveal.active .character-card.centered {
    animation: charCardReveal 0.7s ease forwards, charCardFloat 4s ease-in-out infinite;
}

.character-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 45px rgba(126, 217, 88, 0.3);
}
.character-card.centered:hover {
    transform: translateY(-12px) scale(1.06);
}
.character-card:hover .character-card-inner img {
    transform: scale(1.08);
}
.character-card:hover .character-card-inner::after {
    opacity: 1;
}

.character-card-inner {
    position: relative;
    overflow: hidden;
}
.character-card-inner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(126, 217, 88, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.character-card-inner img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: top;
    transition: transform 0.4s ease;
    display: block;
}
.character-card-inner h4 {
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 1.1rem;
    color: var(--text-dark);
    transition: color 0.3s ease;
}
.character-card-inner h4 .character-subtitle {
    display: block;
    font-size: 0.7em;
    font-weight: 500;
    opacity: 0.9;
}
.character-card:hover .character-card-inner h4 {
    color: var(--primary-dark);
}

/* Leichte Dauer-Animation (Float) startet nach dem Reveal */
@keyframes charCardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
.characters-slider-wrapper.reveal.active .character-card:nth-child(1) { animation-delay: 0.1s, 0.8s; }
.characters-slider-wrapper.reveal.active .character-card:nth-child(2) { animation-delay: 0.2s, 1.2s; }
.characters-slider-wrapper.reveal.active .character-card:nth-child(3) { animation-delay: 0.3s, 1.6s; }
.characters-slider-wrapper.reveal.active .character-card:nth-child(4) { animation-delay: 0.4s, 2s; }
.characters-slider-wrapper.reveal.active .character-card:nth-child(5) { animation-delay: 0.5s, 2.4s; }
.characters-slider-wrapper.reveal.active .character-card:nth-child(6) { animation-delay: 0.6s, 2.8s; }
.characters-slider-wrapper.reveal.active .character-card:nth-child(7) { animation-delay: 0.7s, 3.2s; }
.characters-slider-wrapper.reveal.active .character-card:nth-child(8) { animation-delay: 0.8s, 3.6s; }
.characters-slider-wrapper.reveal.active .character-card:nth-child(9) { animation-delay: 0.9s, 4.0s; }
.characters-slider-wrapper.reveal.active .character-card:nth-child(10) { animation-delay: 1.0s, 4.4s; }
.characters-slider-wrapper.reveal.active .character-card:nth-child(11) { animation-delay: 1.1s, 4.8s; }
.characters-slider-wrapper.reveal.active .character-card:nth-child(12) { animation-delay: 1.2s, 5.2s; }
.character-card:hover {
    animation: none;
    transform: translateY(-12px) scale(1.03);
}

/* Slider-Buttons */
.characters-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--primary);
    color: white;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(126, 217, 88, 0.4);
    transition: background 0.3s ease, transform 0.2s ease;
}
.characters-slider-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.08);
}
.characters-slider-prev { left: -12px; }
.characters-slider-next { right: -12px; }

.characters-more {
    text-align: center;
    margin-top: 30px;
    color: var(--text-light);
    font-size: 1rem;
}

/* --- Gallery --- */
.gallery {
    background: linear-gradient(180deg, transparent 0%, rgba(126, 217, 88, 0.08) 50%, transparent 100%);
}
.gallery.section-padding {
    padding: 60px 0;
}
.gallery .section-tag {
    background: var(--primary);
    color: white;
}
.gallery .section-header h2,
.gallery .section-header p {
    color: var(--text-dark);
}
.gallery .section-header {
    margin-bottom: 30px;
}

/* Slider: eine kompakte Zeile, horizontal scrollbar */
.gallery-slider-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}
.gallery-slider {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    padding: 8px 4px;
    margin: 0 -4px;
}
.gallery-slider-wrapper .gallery-item {
    flex: 0 0 auto;
    width: 280px;
    height: 210px;
    scroll-snap-align: start;
}
.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid rgba(126, 217, 88, 0.25);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
    border-color: rgba(126, 217, 88, 0.5);
}
.gallery-item:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
    border-color: rgba(126, 217, 88, 0.5);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: var(--light-bg);
    transition: transform 0.4s;
}
.gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-item:focus-visible img {
    transform: scale(1.08);
}
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-item:focus-visible .gallery-overlay {
    opacity: 1;
}
.zoom-icon {
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}
.zoom-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-dark);
}
.gallery-item:hover .zoom-icon {
    transform: scale(1.1);
}

/* Galerie-Slider Pfeile */
.gallery-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--primary);
    color: white;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(126, 217, 88, 0.4);
    transition: background 0.3s ease, transform 0.2s ease;
}
.gallery-slider-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.08);
}
.gallery-slider-prev { left: -12px; }
.gallery-slider-next { right: -12px; }

.social-cta {
    text-align: center;
    margin-top: 35px;
    padding: 40px;
    background: white;
    border-radius: 30px;
    box-shadow: var(--shadow);
    border: 2px solid rgba(126, 217, 88, 0.2);
}
.gallery .social-cta:hover {
    border-color: rgba(126, 217, 88, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}
.social-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}
.social-cta p {
    color: var(--text-light);
    margin-bottom: 25px;
}
.social-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}
.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}
.btn-tiktok {
    background: #000;
    color: white;
}

/* --- Testimonials --- */
.testimonials {
    background: var(--white);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.testimonial-card {
    background: var(--light-bg);
    border-radius: 25px;
    padding: 30px;
    transition: all 0.3s;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
}
.testimonial-header .info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}
.stars {
    color: var(--accent);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}
.testimonial-card > p {
    color: var(--text-light);
    font-style: italic;
    line-height: 1.7;
}

/* --- Pricing --- */
.pricing {
    background: var(--light-bg);
}
.pricing-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}
.pricing-card {
    background: white;
    border-radius: 30px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}
.pricing-card.popular {
    border: 3px solid var(--primary);
    transform: scale(1.05);
}
.pricing-card.popular:hover {
    transform: scale(1.08) translateY(-10px);
}
.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--text-dark);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
}
.card-header {
    margin-bottom: 30px;
}
.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}
.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 5px;
}
.currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}
.amount {
    font-family: 'Fredoka', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}
.duration {
    color: var(--text-light);
    font-size: 0.95rem;
}
.features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}
.features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}
.check {
    color: var(--primary);
    font-weight: bold;
}

.extra-pricing {
    background: white;
    border-radius: 30px;
    padding: 40px;
    text-align: center;
}
.extra-pricing h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
}
.extra-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}
.extra-item {
    padding: 24px 22px;
    background: var(--light-bg);
    border-radius: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-top: 3px solid rgba(126, 217, 88, 0.4);
}
.extra-item strong {
    display: block;
    color: var(--text-dark);
    padding-top: 2px;
    font-size: 1rem;
    line-height: 1.4;
}
.extra-item span {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}
.note {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* --- Contact --- */
.contact {
    background: linear-gradient(135deg, #7ed958 0%, #6dd4a8 100%);
    color: white;
}
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}
.contact-info .section-tag {
    background: rgba(255,255,255,0.2);
    color: white;
}
.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: white;
}
.contact-info > p {
    opacity: 0.9;
    margin-bottom: 30px;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.detail {
    display: flex;
    align-items: center;
    gap: 15px;
}
.detail .icon {
    min-width: 52px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
    font-family: 'Fredoka', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-align: center;
}
.contact-link {
    color: white;
    text-decoration: none;
    font-weight: 700;
}
.contact-link:hover,
.contact-link:focus-visible {
    text-decoration: underline;
}

.contact-form {
    background: white;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--light-bg);
    border-radius: 15px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
    background: var(--light-bg);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
}
.form-group .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: 500;
}
.form-group .checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    cursor: pointer;
}
.form-group .checkbox-label a {
    color: var(--primary-dark);
    text-decoration: underline;
}
.form-group .checkbox-label a:hover {
    color: var(--primary);
}
.form-note {
    margin-top: 18px;
    font-size: 0.95rem;
    color: var(--text-light);
}
.form-note a {
    color: var(--primary-dark);
    font-weight: 700;
}
.form-status {
    min-height: 1.5rem;
    margin-top: 12px;
    font-weight: 700;
    color: var(--primary-dark);
}
.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;
}

/* --- Footer --- */
.footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 20px;
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}
.footer-logo {
    text-decoration: none;
    display: inline-flex;
    flex-direction: column;
    margin-bottom: 15px;
}
.footer-logo .logo-text {
    color: white;
    font-size: 1.5rem;
}
.footer-logo .logo-sub {
    color: rgba(255,255,255,0.6);
    font-size: 0.65rem;
}
.footer-brand p {
    margin-bottom: 20px;
    line-height: 1.7;
}
.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.footer-social a:hover {
    background: var(--primary);
}
.footer-social a svg {
    fill: white;
}
.footer-links h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
}
.footer-links ul {
    list-style: none;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: var(--primary);
}
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    nav ul { gap: 20px; }
    nav a { font-size: 1rem; }
    .programs-carousel { grid-template-columns: repeat(2, 1fr); }
    .services-timeline { grid-template-columns: repeat(2, 1fr); }
    .pricing-wrapper { grid-template-columns: repeat(2, 1fr); }
    .extra-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-slider-wrapper .gallery-item { width: 240px; height: 180px; }
}

@media (max-width: 900px) {
    .hero {
        min-height: auto;
        overflow-x: hidden;
        padding-top: 120px;
        padding-bottom: 60px;
    }
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero p { max-width: 100%; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-image-wrapper {
        display: block;
        max-width: 400px;
        margin: 40px auto 0;
        width: 100%;
    }
    .hero-slider-frame { width: 100%; }
    
    .about-wrapper { grid-template-columns: 1fr; }
    .about-image-section { max-width: 400px; margin: 0 auto; }
    
    .contact-wrapper { grid-template-columns: 1fr; }
    
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-social { justify-content: center; }
}

@media (max-width: 768px) {
    nav ul { display: none; }
    .mobile-menu-btn { display: block; color: white; }
    header.scrolled .mobile-menu-btn { color: white; }
    .social-header { display: none; }
    
    .section-padding { padding: 60px 0; }
    .section-header h2 { font-size: 2rem; }
    
    .services-timeline { grid-template-columns: 1fr; }
    .programs-carousel { grid-template-columns: repeat(2, 1fr); }
    .pricing-wrapper { grid-template-columns: repeat(2, 1fr); }
    .pricing-card.popular { transform: scale(1); }
    .pricing-card.popular:hover { transform: scale(1.02) translateY(-10px); }
    .extra-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .gallery-slider-wrapper .gallery-item { width: 200px; height: 155px; }
.gallery-slider-prev { left: 4px; }
.gallery-slider-next { right: 4px; }
    
    .form-row { grid-template-columns: 1fr; }
    
}

@media (max-width: 600px) {
    .character-card { width: 160px; min-width: 160px; }
    .characters-slider .characters-grid { gap: 18px; }
    .character-card-inner img { height: 220px; }
    .characters-slider-prev { left: 4px; }
    .characters-slider-next { right: 4px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1rem; }
    .hero-stats { gap: 20px; }
    .btn { padding: 12px 25px; font-size: 0.9rem; }
    .contact-form { padding: 25px; }
    .pricing-wrapper { grid-template-columns: 1fr; }
    .pricing-card { padding: 30px 20px; }
    .extra-pricing { padding: 25px; }
    .gallery-slider-wrapper .gallery-item { width: 170px; height: 130px; }
    .programs-carousel { grid-template-columns: 1fr; }
    .social-cta { padding: 30px 20px; }
    .social-buttons { flex-direction: column; align-items: center; }
    .experience-badge { right: 0; bottom: -15px; }
    .character-card { width: 150px; min-width: 150px; }
    .characters-slider .characters-grid { gap: 12px; }
    .character-card-inner img { height: 200px; }
    .character-card-inner h4 { padding: 10px; font-size: 0.95rem; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
