/* ========================================
   RITMICA DENA - FINAL CSS
   Navigationslinks weiß, Logo original, Scroll-Farbwechsel
   ======================================== */

/* Reset & Base */
[v-cloak] {
    display: none !important;
}

#app {
    animation: fadeIn 0.35s ease-in-out;
}

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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background-color: #fcfaf9;
    color: #5b4f4a;
    overflow-x: hidden;
    line-height: 1.5;
}

html {
    scroll-behavior: smooth;
}

/* Typography - Modern & Clean */
h1,
h2,
h3,
h4,
.section-title {
    font-family: "Clash Display", "Inter", sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.section-title {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
    position: relative;
    font-weight: 700;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #beaa87;
    border-radius: 2px;
}

/* ========== HEADER & NAVIGATION ========== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 20px 0;
    background: transparent;
}

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

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

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    cursor: pointer;
}

/* LOGO - ORIGINAL (weiß zu gold) */
.logo h1 {
    font-family: "Cormorant Garamond", serif !important;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1.2;
    background: linear-gradient(135deg, #fff 0%, #d4af7a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.logo p {
    font-family: "Montserrat", sans-serif !important;
    font-size: 11px;
    letter-spacing: 3px;
    color: #d4af7a;
    text-transform: uppercase;
    margin-top: -5px;
    font-weight: 400;
}

/* NAVIGATIONS-LINKS - WEISS (über Hero) */
.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af7a;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #d4af7a;
}

.nav-links a.active {
    color: #d4af7a;
}

.nav-links a.active::after {
    width: 100%;
}

/* Für gescrollten Zustand (Header dunkel) */
header.scrolled .nav-links a.active {
    color: #beaa87;
}

.header-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* ========== LANGUAGE DROPDOWN - FUNKTIONIERENDE VERSION ========== */
.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-dropbtn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 8px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.2s;
    position: relative;
    z-index: 1002;
}

.lang-dropbtn:hover {
    border-color: #d4af7a;
    background: rgba(212, 175, 122, 0.1);
}

/* Das Dropdown - wird nur beim Hover sichtbar */
.lang-dropdown-content {
    position: absolute;
    background-color: #fff;
    min-width: 180px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    border-radius: 16px;
    overflow: hidden;
    right: 0;
    top: 100%;
    margin-top: 0;
    padding-top: 8px;
    border: 1px solid #f0ece8;
    display: none;
}

/* Transparente Brücke, damit die Maus nicht in eine Lücke fällt */
.lang-dropdown::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 16px;
    background: transparent;
    z-index: 1000;
    pointer-events: auto;
}

/* Dropdown öffnen beim Hover */
.lang-dropdown:hover .lang-dropdown-content {
    display: block;
}

/* Style für die Optionen */
.lang-dropdown-content .lang-option {
    color: #5b4f4a;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
    white-space: nowrap;
}

.lang-dropdown-content .lang-option:hover {
    background-color: #f8f6f4;
}

/* Flaggen-Icons */
.flag-icon {
    width: 22px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Mobile Toggle - Standard (weiß) */
.mobile-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #ffffff;
}

/* ========== GESPROLLTER ZUSTAND (header.scrolled) ========== */
header.scrolled {
    padding: 20px 0; /* Wichtig: 20px 0 statt 12px 0 - dann hüpft nichts! */
    background: rgba(252, 250, 249, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(190, 170, 135, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Logo im gescrollten Zustand - dunkler Verlauf */
header.scrolled .logo h1 {
    background: linear-gradient(135deg, #3d322e 0%, #beaa87 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

header.scrolled .logo p {
    color: #beaa87;
}

/* Navigationslinks im gescrollten Zustand - dunkel */
header.scrolled .nav-links a {
    color: #5b4f4a;
}

header.scrolled .nav-links a:hover {
    color: #beaa87;
}

header.scrolled .nav-links a::after {
    background: #beaa87;
}

/* Language Button im gescrollten Zustand - dunkel */
header.scrolled .lang-dropbtn {
    border-color: #e1d9d1;
    color: #5b4f4a;
}

header.scrolled .lang-dropbtn:hover {
    border-color: #beaa87;
    background: rgba(190, 170, 135, 0.05);
}

/* Mobile Toggle im gescrollten Zustand - dunkel */
header.scrolled .mobile-toggle {
    color: #5b4f4a;
}

/* ========== HERO SECTION ========== */
/* ========== HERO SLIDESHOW ========== */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* Slideshow Container */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Einzelne Slides */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Hintergrundbild */
.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* Fallback Video */
.hero-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-fallback .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay - über dem Bild, unter dem Text */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 2;
}

/* Content - über allem */
.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-text h2 {
    font-size: 80px;
    font-weight: 700;
    font-family: "Clash Display", sans-serif;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
    color: #fff;
}

.hero-text h2 span {
    color: #f8c462;
}

.hero-text p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s backwards;
    color: #fff;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.slider-prev,
.slider-next {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    pointer-events: auto;
    z-index: 11;
}

.slider-prev:hover,
.slider-next:hover {
    background: #beaa87;
    transform: scale(1.05);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    z-index: 11;
}

.dot.active {
    width: 25px;
    border-radius: 5px;
    background: #beaa87;
}

.dot:hover {
    background: #beaa87;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-text h2 {
        font-size: 36px;
    }
    .hero-text p {
        font-size: 16px;
        padding: 0 20px;
    }
    .slider-prev,
    .slider-next {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    .slider-dots {
        bottom: 20px;
        gap: 8px;
    }
    .dot {
        width: 8px;
        height: 8px;
    }
    .dot.active {
        width: 20px;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
    color: #fff;
    font-size: 20px;
}

/* ========== BUTTONS ========== */
.btn-primary {
    display: inline-block;
    padding: 14px 40px;
    background: #beaa87;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 40px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: "Inter", sans-serif;
}

.btn-primary:hover {
    background: #f8c462;
    color: #3d322e;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    display: inline-block;
    padding: 14px 40px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 40px;
    border: 1.5px solid #beaa87;
    margin-left: 20px;
    transition: all 0.3s;
    font-family: "Inter", sans-serif;
}

.btn-outline:hover {
    background: #beaa87;
    color: #fff;
    transform: translateY(-3px);
}

/* ========== SECTIONS ========== */
section {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background: #fcfaf9;
}

.section-light {
    background: #f8f6f4;
}

/* ========== BUBBLES / 3D CARDS ========== */
.bubbles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.bubble-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.4s;
    border: 1px solid rgba(190, 170, 135, 0.2);
    cursor: pointer;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

.bubble-card:hover {
    transform: translateY(-15px);
    border-color: #beaa87;
    background: #ffffff;
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.1);
}

.bubble-card i {
    font-size: 60px;
    color: #beaa87;
    margin-bottom: 25px;
}

.bubble-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-family: "Clash Display", sans-serif;
    color: #3d322e;
}

.bubble-card p {
    color: #6f635c;
    line-height: 1.6;
}

/* ========== STORY SECTION ========== */
.story-section {
    background: linear-gradient(135deg, #f8f6f4 0%, #fcfaf9 100%);
    position: relative;
    overflow: hidden;
}

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

.story-content h3 {
    font-size: 42px;
    font-family: "Clash Display", sans-serif;
    margin-bottom: 30px;
    color: #3d322e;
}

.story-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #6f635c;
    margin-bottom: 20px;
}

/* Stats Bereich */
.stats {
    display: flex;
    gap: 50px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    flex: 1;
    min-width: 80px;
}

.stat h4 {
    font-size: 48px;
    color: #beaa87;
    font-weight: 700;
    font-family: "Clash Display", sans-serif;
    margin-bottom: 5px;
}

.stat p {
    color: #5b4f4a;
    font-size: 14px;
}

/* Tablet */
@media (max-width: 1024px) {
    .stats {
        gap: 30px;
    }
    .stat h4 {
        font-size: 40px;
    }
}

/* Handy */
@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-content h3 {
        font-size: 32px;
        text-align: center;
    }

    .story-content p {
        font-size: 15px;
        text-align: center;
    }

    .stats {
        justify-content: center;
        gap: 25px;
    }

    .stat {
        min-width: 70px;
    }

    .stat h4 {
        font-size: 32px;
    }

    .stat p {
        font-size: 12px;
    }
}

/* ========== TRAINER SECTION - BLURRY EFFECT ========== */
.trainers-section {
    background: #fcfaf9;
}

.trainers-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.trainer-card {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.trainer-card:hover {
    transform: translateY(-10px);
}

.trainer-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s;
}

.trainer-card:hover .trainer-bg {
    transform: scale(1);
}

.trainer-blur {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(4px);
    transform: scale(1);
    opacity: 0;
    transition: opacity 0.4s;
}

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

.trainer-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    z-index: 2;
    transform: translateY(20px);
    transition: transform 0.4s;
}

.trainer-card:hover .trainer-content {
    transform: translateY(0);
}

.trainer-content h3 {
    font-size: 26px;
    margin-bottom: 5px;
    font-family: "Clash Display", sans-serif;
    color: #fff;
}

.trainer-content p {
    color: #f8c462;
    font-size: 14px;
}

/* ========== FEATURES / WHY US ========== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.feature {
    background: #ffffff;
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(190, 170, 135, 0.15);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.feature:hover {
    border-color: #beaa87;
    transform: translateY(-10px);
    box-shadow: 0 15px 25px -10px rgba(0, 0, 0, 0.08);
}

.feature i {
    font-size: 45px;
    color: #beaa87;
    margin-bottom: 20px;
}

.feature h4 {
    font-size: 20px;
    margin-bottom: 15px;
    font-family: "Clash Display", sans-serif;
    color: #3d322e;
}

.feature p {
    color: #6f635c;
    font-size: 14px;
    line-height: 1.6;
}

/* ========== NEWS SLIDER ========== */
.news-slider {
    overflow: hidden;
    padding: 20px 0;
}

.swiper {
    width: 100%;
    padding: 20px 0 50px;
}

.swiper-slide {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s;
    border: 1px solid rgba(190, 170, 135, 0.15);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

.swiper-slide:hover {
    transform: translateY(-10px);
}

.news-content {
    padding: 30px;
}

.news-date {
    color: #beaa87;
    font-size: 14px;
    margin-bottom: 15px;
    display: block;
    font-weight: 500;
}

.news-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-family: "Clash Display", sans-serif;
    color: #3d322e;
}

.news-excerpt {
    color: #6f635c;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.read-more {
    color: #beaa87;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
}

.read-more:hover {
    color: #f0814c;
    transform: translateX(5px);
}

.swiper-pagination-bullet {
    background: #beaa87 !important;
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: linear-gradient(135deg, #beaa87 0%, #a6936e 100%);
    text-align: center;
    padding: 80px 0;
}

.cta-section h3 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
    font-family: "Clash Display", sans-serif;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
}

.cta-section .btn-primary {
    background: #fff;
    color: #5b4f4a;
    margin-top: 20px;
}

.cta-section .btn-primary:hover {
    background: #f8c462;
    color: #3d322e;
}

/* ========== FOOTER ========== */
footer {
    background: #f8f6f4;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(190, 170, 135, 0.15);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 0.8fr;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
    margin-bottom: 50px;
}

.brand-col h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    font-weight: 600;
    background: linear-gradient(135deg, #3d322e 0%, #beaa87 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.brand-col .tagline {
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    color: #beaa87;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.brand-col .description {
    color: #6f635c;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 18px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(190, 170, 135, 0.1);
    border-radius: 50%;
    color: #beaa87;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: #beaa87;
    color: #fff;
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: "Clash Display", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #3d322e;
    margin-bottom: 25px;
    letter-spacing: -0.3px;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 35px;
    height: 2px;
    background: #beaa87;
    border-radius: 2px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.contact-item i {
    width: 24px;
    color: #beaa87;
    font-size: 16px;
    text-align: center;
}

.contact-item span,
.contact-item a {
    color: #6f635c;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    line-height: 1.5;
}

.contact-item a:hover {
    color: #beaa87;
}

.verein-hinweis {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(190, 170, 135, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
}

.verein-hinweis i {
    color: #beaa87;
    font-size: 14px;
}

.verein-hinweis span {
    color: #8a7e76;
    font-size: 14px;
}

.legal-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-links li {
    margin-bottom: 14px;
}

.legal-links a {
    color: #6f635c;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.legal-links a::before {
    content: "›";
    color: #beaa87;
    font-size: 16px;
    transition: transform 0.3s;
}

.legal-links a:hover {
    color: #beaa87;
    transform: translateX(5px);
}

.legal-links a:hover::before {
    transform: translateX(3px);
}

.footer-copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(190, 170, 135, 0.15);
}

.footer-copyright p {
    color: #8a7e76;
    font-size: 13px;
    margin: 0;
}

/* ========== FAQ PAGE STYLES - SANFTES AKKORDEON (mit opacity + transform) ========== */
.faq-header {
    background: #fcfaf9;
    padding: 160px 0 60px;
    text-align: center;
}

.faq-header h1 {
    font-size: 56px;
    font-family: "Clash Display", sans-serif;
    margin-bottom: 20px;
    color: #3d322e;
}

.faq-header p {
    font-size: 18px;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    color: #6f635c;
}

.faq-section {
    padding: 60px 0;
    background: #fcfaf9;
}

.faq-category {
    margin-bottom: 50px;
}

.faq-category h2 {
    font-size: 32px;
    font-family: "Clash Display", sans-serif;
    color: #3d322e;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #beaa87;
    display: inline-block;
}

/* ========== SANFTES AKKORDEON - MIT OPACITY & TRANSFORM (butterweich) ========== */
.faq-item {
    background: #fff;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
    position: relative;
    z-index: 2;
}

.faq-question:hover {
    background: #f8f6f4;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #3d322e;
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: #beaa87;
    font-size: 18px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* DIE SANFTE ANIMATION - OPACITY + TRANSFORM (butterweich) */
.faq-answer {
    display: block;
}

.faq-answer-inner {
    padding: 0 25px;
    opacity: 0;
    transform: translateY(-10px);
    transition:
        opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 0;
    visibility: hidden;
}

.faq-item.active .faq-answer-inner {
    opacity: 1;
    transform: translateY(0);
    height: auto;
    visibility: visible;
    padding: 15px 25px 20px 25px;
}

.faq-answer p {
    color: #6f635c;
    line-height: 1.7;
    margin: 0 0 12px 0;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul,
.faq-answer ol {
    margin: 10px 0 0 20px;
    color: #6f635c;
}

.faq-answer li {
    margin-bottom: 5px;
}

.faq-answer a {
    color: #beaa87;
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.loading-faq {
    text-align: center;
    padding: 60px;
    color: #6f635c;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-header {
        padding: 120px 0 40px;
    }
    .faq-header h1 {
        font-size: 40px;
    }
    .faq-question h3 {
        font-size: 16px;
        padding-right: 15px;
    }
    .faq-question {
        padding: 16px 20px;
    }
    .faq-item.active .faq-answer-inner {
        padding: 12px 20px 16px 20px;
    }
}

/* ========== NEWS MODAL ========== */
.news-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.news-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #fff;
    border-radius: 20px;
    max-width: 700px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid rgba(190, 170, 135, 0.3);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 35px;
    background: none;
    border: none;
    color: #5b4f4a;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10;
}

.modal-close:hover {
    color: #beaa87;
}

.modal-body {
    padding: 40px;
}

.modal-body h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-family: "Clash Display", sans-serif;
    color: #3d322e;
}

.modal-date {
    color: #beaa87;
    font-size: 14px;
    display: block;
    margin-bottom: 25px;
}

.modal-text p {
    color: #6f635c;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ========== TRAINER POPUP ========== */
.trainer-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.popup-content {
    background: #fff;
    max-width: 500px;
    width: 90%;
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.close-popup {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    cursor: pointer;
    color: #6f635c;
    transition: color 0.2s;
}

.close-popup:hover {
    color: #beaa87;
}

.popup-icon {
    font-size: 50px;
    color: #beaa87;
    margin-bottom: 20px;
}

.popup-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #3d322e;
}

.popup-content p {
    color: #6f635c;
    margin-bottom: 20px;
    line-height: 1.5;
}

.popup-content ul {
    text-align: left;
    margin: 20px 0;
    padding-left: 20px;
    color: #6f635c;
}

.popup-content li {
    margin-bottom: 8px;
}

.popup-btn {
    margin-top: 15px;
    background: #beaa87;
    color: white;
}

.popup-btn:hover {
    background: #f8c462;
    color: #3d322e;
}

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

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

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
    .bubbles-grid,
    .features-grid,
    .trainers-grid,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-text h2 {
        font-size: 50px;
    }
    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .mobile-toggle {
        display: block;
    }

    .logo h1 {
        font-size: 24px;
        white-space: nowrap;
    }

    .logo p {
        font-size: 10px;
        white-space: nowrap;
    }

    .lang-dropbtn span:not(.fa) {
        display: none;
    }

    .lang-dropbtn {
        padding: 6px 10px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(252, 250, 249, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 30px;
        text-align: center;
        gap: 20px;
        border-bottom: 1px solid rgba(190, 170, 135, 0.2);
    }

    .nav-links.show {
        display: flex;
    }

    /* Mobile Menu: Links dunkel, weil Hintergrund hell */
    .nav-links a {
        color: #5b4f4a;
    }

    .nav-links a:hover {
        color: #beaa87;
    }

    /* Aktiver Navigationslink */
    .nav-links a.active,
    .nav-links a.active::after {
        width: 100%;
    }

    .nav-links a.active {
        color: #d4af7a;
    }

    /* Für gescrollten Zustand (Header dunkel) */
    header.scrolled .nav-links a.active {
        color: #beaa87;
    }

    .bubbles-grid,
    .features-grid,
    .trainers-grid,
    .footer-grid,
    .story-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-text h2 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 16px;
        padding: 0 20px;
    }

    .btn-outline {
        margin-left: 0;
        margin-top: 15px;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .stats {
        justify-content: center;
    }

    .faq-header {
        padding: 120px 0 40px;
    }

    .faq-header h1 {
        font-size: 40px;
    }

    .faq-question h3 {
        font-size: 16px;
        padding-right: 15px;
    }

    .faq-question {
        padding: 16px 20px;
    }

    .faq-item.active .faq-answer-inner {
        padding: 12px 20px 16px 20px;
    }

    .modal-body {
        padding: 30px 20px;
    }

    .modal-body h2 {
        font-size: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 45px;
        text-align: center;
    }

    .brand-col .description {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .social-links {
        justify-content: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-item {
        justify-content: center;
    }

    .verein-hinweis {
        justify-content: center;
    }

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

    .legal-links a::before {
        display: none;
    }
}

/* Moderner, kompakter Header für Unterseiten */
.page-header {
    background: linear-gradient(135deg, #fcfaf9 0%, #f8f6f4 100%);
    padding: 120px 0 50px;
    text-align: center;
    border-bottom: 1px solid rgba(190, 170, 135, 0.15);
    position: relative;
    overflow: hidden;
}

/* Leichter Akzent oben */
.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #beaa87, #f8c462, #beaa87);
}

.page-header h1 {
    font-size: 48px;
    font-family: "Clash Display", sans-serif;
    margin-bottom: 15px;
    color: #3d322e;
    position: relative;
    display: inline-block;
}

.page-header h1::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #beaa87;
    border-radius: 2px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.7;
    max-width: 550px;
    margin: 20px auto 0;
    color: #6f635c;
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 40px;
    }
    .page-header h1 {
        font-size: 36px;
    }
    .page-header p {
        font-size: 16px;
        padding: 0 20px;
    }
}

/* ========== COOKIE BANNER & MODAL - KOMPLETT ÜBERARBEITET ========== */

/* Cookie Banner (unten fixiert) */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    padding: 20px 0;
    border-top: 1px solid rgba(190, 170, 135, 0.2);
    display: none; /* Standard: ausgeblendet, wird von Vue eingeblendet */
}

/* Banner Inhalt */
.cookie-banner-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Text Bereich */
.cookie-text {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 2;
}

.cookie-text i {
    font-size: 28px;
    color: #beaa87;
}

.cookie-text p {
    color: #5b4f4a;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

/* Button Gruppe */
.cookie-buttons {
    display: flex;
    gap: 12px;
}

/* Buttons */
.cookie-btn {
    padding: 10px 24px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.cookie-btn.accept {
    background: #beaa87;
    color: #fff;
}

.cookie-btn.accept:hover {
    background: #f8c462;
    color: #3d322e;
    transform: translateY(-2px);
}

.cookie-btn.settings {
    background: transparent;
    border: 1.5px solid #beaa87;
    color: #5b4f4a;
}

.cookie-btn.settings:hover {
    background: #beaa87;
    color: #fff;
}

/* ========== COOKIE MODAL (Popup für Einstellungen) ========== */
.cookie-modal {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10001;
    align-items: center;
    justify-content: center;
}

/* Modal Inhalt */
.cookie-modal-content {
    background: #fff;
    max-width: 500px;
    width: 90%;
    padding: 30px;
    border-radius: 24px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-height: 80vh;
    overflow-y: auto;
}

/* Schließen-Button */
.cookie-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #6f635c;
    transition: color 0.2s;
}

.cookie-modal-close:hover {
    color: #beaa87;
}

/* Modal Überschrift */
.cookie-modal-content h3 {
    font-size: 24px;
    font-family: "Clash Display", sans-serif;
    color: #3d322e;
    margin-bottom: 15px;
    padding-right: 20px;
}

/* Modal Text */
.cookie-modal-content p {
    color: #6f635c;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Optionen Bereich */
.cookie-options {
    margin: 20px 0;
}

/* Einzelne Option */
.cookie-option {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 15px;
    padding: 12px;
    background: #f8f6f4;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s;
}

.cookie-option:hover {
    background: #f0ece8;
}

.cookie-option input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #beaa87;
    margin-bottom: 5px;
}

.cookie-option span {
    font-weight: 600;
    color: #3d322e;
}

.cookie-option small {
    font-size: 12px;
    color: #6f635c;
    line-height: 1.4;
}

/* Modal Button Bereich */
.cookie-modal-buttons {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

/* Modal Button */
.cookie-modal-buttons .cookie-btn.accept {
    background: #beaa87;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.cookie-modal-buttons .cookie-btn.accept:hover {
    background: #f8c462;
    color: #3d322e;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }

    .cookie-text {
        flex-direction: column;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-modal-content {
        padding: 20px;
        width: 95%;
    }

    .cookie-modal-content h3 {
        font-size: 20px;
    }

    .cookie-option {
        padding: 10px;
    }
}

/* ========== GALERIE CREDIT ========== */
.gallery-credit {
    text-align: center;
    font-size: 14px;
    color: #8a7e76;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(190, 170, 135, 0.2);
}

.gallery-credit a {
    color: #beaa87;
    text-decoration: none;
    transition: color 0.2s;
}

.gallery-credit a:hover {
    color: #f8c462;
    text-decoration: underline;
}

/* ========== LOGO MIT BILD + TEXT (nebeneinander) ========== */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-direction: row; /* Wichtig: nebeneinander, nicht untereinander */
}

.logo-img {
    height: 45px;
    width: auto;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.logo-text h1 {
    font-family: "Cormorant Garamond", serif !important;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1.2;
    background: linear-gradient(135deg, #fff 0%, #d4af7a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.logo-text p {
    font-family: "Montserrat", sans-serif !important;
    font-size: 9px;
    letter-spacing: 3px;
    color: #d4af7a;
    text-transform: uppercase;
    margin: 0;
    margin-top: 2px;
}

/* Gescrollter Zustand (Header dunkel) */
header.scrolled .logo-text h1 {
    background: linear-gradient(135deg, #3d322e 0%, #beaa87 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

header.scrolled .logo-text p {
    color: #beaa87;
}

/* Mobile Anpassung */
@media (max-width: 768px) {
    .logo {
        gap: 10px;
    }
    .logo-img {
        height: 48px;
    }
    .logo-text h1 {
        font-size: 20px;
    }
    .logo-text p {
        font-size: 10px;
        letter-spacing: 2px;
    }
}

/* ========== PHILOSOPHIE BEREICH ========== */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px;
    margin-top: 40px;
}

.philosophy-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(190, 170, 135, 0.1);
    transition: transform 0.3s ease;
}

.philosophy-card:hover {
    transform: translateY(-5px);
}

.philosophy-card i {
    font-size: 40px;
    color: #beaa87;
    margin-bottom: 20px;
}

.philosophy-card h4 {
    font-size: 20px;
    font-family: "Clash Display", sans-serif;
    color: #3d322e;
    margin-bottom: 15px;
}

.philosophy-card p {
    color: #6f635c;
    font-size: 14px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .philosophy-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

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

/* ========== STATS BEREICH ========== */
.stats-about {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.stat-about {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.stat-about .number {
    font-size: 56px;
    font-weight: 700;
    color: #beaa87;
    font-family: "Clash Display", sans-serif;
}

.stat-about .label {
    color: #6f635c;
    font-size: 14px;
    font-weight: 500;
}

/* Handy: Alles untereinander */
@media (max-width: 768px) {
    .stats-about {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .stat-about {
        min-width: auto;
        width: 100%;
    }

    .stat-about .number {
        font-size: 42px;
    }
}
