/* =============================================
   Grundlegende Stile & Variablen
   ============================================= */
:root {
    --primary-color: #4A90E2; /* Ein motivierendes Blau */
    --secondary-color: #50E3C2; /* Ein frisches Mintgrün für Akzente */
    --dark-bg: #1a1a1a; /* Dunkler Hintergrund */
    --medium-bg: #2c2c2e; /* Hintergrund für Karten */
    --light-bg: #3a3a3c;
    --text-color: #f2f2f7;
    --text-color-light: #a9a9b3;
    --font-family: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Platz für den fixierten Header */
}

body {
    font-family: var(--font-family);
    margin: 0;
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden; /* Verhindert horizontales Scrollen durch Animationen */
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    margin-top: 0;
    font-weight: 600;
    color: var(--text-color); /* Standardfarbe für alle Überschriften */
}

p {
    margin-bottom: 1.5em;
    color: var(--text-color-light);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

/* =============================================
   Header & Navigation
   ============================================= */
.main-header {
    background-color: rgba(26, 26, 26, 0.85);
    padding: 15px 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--light-bg);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--text-color-light);
    font-weight: 400;
    font-size: 1rem;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: color 0.3s ease, border-bottom-color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-color);
    border-bottom-color: var(--primary-color);
}

/* =============================================
   Hero-Sektion - ANGEPASSTE ANIMATION
   ============================================= */
.hero {
    /* NEU: Solid-Hintergrund für die Sektion */
    background-color: var(--dark-bg);
    color: white;
    text-align: center;
    padding: 120px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* NEU: Positionierungskontext für Pseudo-Element */
    position: relative;
    overflow: hidden; /* Verhindert überstehende Kanten der Animation */
}

/* NEU: Pseudo-Element für die Animation */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1; /* Liegt hinter dem Inhalt */

    /* ALT: Die Animationseigenschaften wurden hierher verschoben */
    background: linear-gradient(135deg, var(--dark-bg), var(--primary-color), var(--medium-bg), var(--secondary-color), var(--dark-bg));
    background-size: 600% 600%;
    animation: gradientAnimation 20s ease infinite;
    
    /* * DIE LÖSUNG: Deckkraft reduzieren 
     * Ich habe den Wert von 0.5 auf 0.3 (30%) gesenkt.
     */
    opacity: 0.3; 
}

/* NEU: Sicherstellen, dass der Inhalt über der Animation liegt */
.hero-content {
    position: relative;
    z-index: 2; /* Liegt über dem ::before-Element */
}

.hero-content h1, .hero-content h2 { /* h2 hinzugefügt */
    font-size: 3rem;
    margin-bottom: 0.5em;
    color: white; /* Sicherstellen, dass Text weiß ist */
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px auto;
    color: var(--text-color);
}

.cta-button {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.cta-button:hover {
    background-color: var(--secondary-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

/* =============================================
   Content-Sektionen
   ============================================= */
.page-content {
    padding-top: 60px;
    padding-bottom: 60px;
}

.content-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--light-bg);
}

.content-section:last-child {
    border-bottom: none;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    color: var(--text-color); /* Sicherstellen, dass die Farbe stimmt */
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* =============================================
   Leistungen (Services) - ANGEPASST MIT HOVER
   ============================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.services-grid.two-columns {
    grid-template-columns: repeat(2, 1fr); /* Explizit zwei Spalten */
}

.service-card {
    background-color: var(--medium-bg);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Allgemeiner Hover-Effekt für die Karte */
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-card h3 {
    color: var(--primary-color); /* Standardfarbe */
    margin-bottom: 15px;
    transition: color 0.3s ease; /* Übergang für Farbwechsel */
}

/* Hover-Effekt für die Überschrift */
.service-card:hover h3 {
    color: var(--secondary-color); /* Farbe im Hover-Zustand */
}

.service-card svg,
.service-card img {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px auto;
    display: block;
    object-fit: contain;
    fill: var(--primary-color); /* Standard-Füllfarbe */
    stroke: var(--primary-color); /* Standard-Konturfarbe */
    transition: fill 0.3s ease, stroke 0.3s ease; /* Übergang für Farbwechsel */
}

/* Hover-Effekt für das SVG/Icon */
.service-card:hover svg,
.service-card:hover img {
    fill: var(--secondary-color); /* Füllfarbe im Hover-Zustand */
    stroke: var(--secondary-color); /* Konturfarbe im Hover-Zustand */
}


/* =============================================
   Über Uns / Trainer Sektion - ANGEPASST MIT HOVER
   ============================================= */
.about-container {
    display: flex;
    flex-wrap: wrap; /* Erlaubt Umbruch bei kleineren Bildschirmen */
    gap: 30px;
    justify-content: center; /* Zentriert die Karten, wenn Platz übrig ist */
}

.trainer-card {
    background-color: var(--medium-bg);
    border-radius: 8px;
    padding: 30px;
    flex-basis: 400px; /* Basisbreite für jede Karte */
    flex-grow: 1;
    max-width: 450px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid transparent; /* Platzhalter für Hover-Rand */
}

/* Allgemeiner Hover für die Karte */
.trainer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

/* Hover für das Porträtbild */
.trainer-card:hover .trainer-portrait {
    border-color: var(--secondary-color);
}

/* Hover für den Namen (h3) */
.trainer-card:hover .trainer-info h3 {
    color: var(--secondary-color);
}

/* Hover für die Rolle (h4) */
.trainer-card:hover .trainer-role {
    color: var(--secondary-color);
}

/* Hover für den Kontakt-Link */
.trainer-card:hover .contact-link {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--dark-bg);
}

.trainer-portrait {
    width: 150px;
    height: 200px;
    border-radius: 8px; /* Leicht abgerundete Ecken statt Kreis */
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--primary-color);
    margin-left: auto;
    margin-right: auto;
    transition: border-color 0.3s ease;
}

.trainer-info {
    flex-grow: 1; /* Nimmt verfügbaren Platz ein, drückt Link nach unten */
    display: flex;
    flex-direction: column;
}

.trainer-info h3 {
    color: var(--text-color); /* Standardfarbe für Namen */
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.trainer-role {
    color: var(--primary-color); /* Farbe für die Rolle */
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    transition: color 0.3s ease; /* Übergang hinzufügen */
}

.trainer-info p {
    margin-bottom: 20px; /* Standardabstand beibehalten */
    flex-grow: 1; /* Nimmt Platz ein, damit Link unten bleibt */
}

.contact-link {
    display: inline-block; /* Damit Padding/Margin funktioniert */
    margin-top: auto; /* Drückt den Link nach unten */
    padding: 10px 20px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color); /* Standard Link Farbe */
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* =============================================
   Knowledge / Sportarten Sektion - ANGEPASST MIT RAND & FARBE
   ============================================= */
.knowledge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.knowledge-grid.two-columns {
    grid-template-columns: repeat(2, 1fr); /* Explizit zwei Spalten */
}

.knowledge-card {
    background-color: var(--medium-bg); /* Hintergrund, falls Bild nicht lädt */
    border-radius: 8px;
    aspect-ratio: 16 / 9; /* Breiteres Format für die Bilder */
    position: relative; /* Für absolute Positionierung der Kinder */
    overflow: hidden; /* Verhindert, dass Inhalt überläuft */
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; /* border-color hinzugefügt */
    display: flex; /* Flexbox für Bild und Overlay */
    justify-content: center;
    align-items: center;
    border: 3px solid var(--primary-color); /* NEU: Standardrand */
}

/* Allgemeiner Hover für die Karte */
.knowledge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: transparent; /* NEU: Rand beim Hover entfernen/transparent machen */
}

.knowledge-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Bild füllt die Kachel aus und schneidet bei Bedarf ab */
    position: absolute; /* Nimmt Element aus dem normalen Fluss */
    top: 0;
    left: 0;
    transition: transform 0.3s ease; /* Übergang für den Zoom-Effekt */
    z-index: 1; /* Bild ist unter dem Overlay */
}

.knowledge-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Standard-Overlay (initial unsichtbar, aber Hintergrundfarbe definiert) */
    background-color: rgba(74, 144, 226, 0.75); /* var(--primary-color) mit 75% Opazität */
    backdrop-filter: blur(2px); /* Optional: leichter Weichzeichner */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0; /* Initial unsichtbar */
    transition: opacity 0.3s ease, background-color 0.3s ease; /* Übergang für Farbe hinzufügen */
    z-index: 2; /* Liegt über dem Bild */
    padding: 20px;
    text-align: center;
    pointer-events: none; /* Sorgt dafür, dass die Beschreibung nicht die Hover-Events blockiert */
}

/* Hover-Effekt: Overlay mit Sekundärfarbe einblenden */
.knowledge-card:hover .knowledge-overlay {
    opacity: 1;
    /* Hover-Overlay: Sekundärfarbe mit Transparenz */
    background-color: rgba(80, 227, 194, 0.85); /* var(--secondary-color) mit 85% Opazität */
}

.knowledge-card:hover .knowledge-image {
    transform: scale(1.05); /* Optional: leichtes Zoomen des Bildes beim Hover */
}

.knowledge-description {
    color: var(--text-color); /* Standard Textfarbe (weiß) */
    font-size: 1rem;
    line-height: 1.5;
    max-width: 90%;
    margin: 0; /* Standard-Margin von <p> entfernen */
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5); /* Schatten für bessere Lesbarkeit */
    transition: color 0.3s ease; /* Übergang für Textfarbe */
}

/* NEU: Textfarbe auf Hover ändern */
.knowledge-card:hover .knowledge-description {
    color: var(--dark-bg); /* Dunkle Textfarbe (fast schwarz) */
    text-shadow: none; /* Textschatten entfernen, wenn Hintergrund hell wird */
}

/* Alte Styles, falls noch vorhanden (sicherheitshalber) */
.knowledge-content, .knowledge-title {
    display: none;
}


/* =============================================
   Footer
   ============================================= */
.main-footer {
    background-color: var(--medium-bg);
    color: var(--text-color-light);
    padding: 40px 0;
    text-align: center;
    margin-top: 60px; /* Abstand zur letzten Sektion */
    border-top: 1px solid var(--light-bg);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.copyright {
    font-size: 0.9rem;
}

/* =============================================
   Impressum Seite
   ============================================= */
.impressum-section {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--medium-bg);
    padding: 40px;
    border-radius: 8px;
}

.impressum-section h1,
.impressum-section h2,
.impressum-section h3 {
    text-align: left;
    margin-bottom: 20px;
    color: var(--text-color);
}
.impressum-section h1::after,
.impressum-section h2::after,
.impressum-section h3::after {
    display: none;
}

.impressum-section p {
    margin-bottom: 1em;
}


/* Keyframes für die Hintergrundanimation - ANGEPASST */
@keyframes gradientAnimation {
  0% { background-position: 0% 50%; } /* Start */
  25% { background-position: 50% 0%; } /* Nach oben rechts bewegen */
  50% { background-position: 100% 50%; } /* Nach rechts bewegen */
  75% { background-position: 50% 100%; } /* Nach unten rechts bewegen */
  100% { background-position: 0% 50%; } /* Zurück zum Start */
}


/* =============================================
   Responsive Design
   ============================================= */
@media (max-width: 992px) { /* Tablet und kleiner */
    .services-grid.two-columns,
    .knowledge-grid.two-columns {
        grid-template-columns: 1fr; /* Auf kleineren Bildschirmen eine Spalte */
    }
}

@media (max-width: 768px) { /* Mobilgeräte */
    .nav-links {
        display: none;
    }

    .hero-content h1, .hero-content h2 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-container {
        flex-direction: column;
        align-items: center;
    }

    .trainer-card {
        max-width: 100%;
        flex-basis: auto;
    }

    .knowledge-card {
        aspect-ratio: 4 / 3; /* Etwas höheres Verhältnis auf Mobilgeräten kann besser sein */
    }

     .knowledge-description {
        font-size: 0.9rem; /* Kleinere Schrift auf Mobilgeräten */
    }

    /* Angepasste Hero-Animation für Mobilgeräte */
    .hero {
      animation-duration: 15s; /* Etwas schneller auf Mobilgeräten */
    }
}

/* =============================================
   NEU: Fade-in-beim-Scrollen-Animation
   ============================================= */

/* NEU: Verzögerungen für die Hero-Sektion, damit sie nacheinander einblendet */
.hero-content h2.fade-in-on-scroll {
    transition-delay: 0.1s;
}

.hero-content p.fade-in-on-scroll {
    transition-delay: 0.2s;
}

.hero-content .cta-button.fade-in-on-scroll {
    transition-delay: 0.3s;
}


/* Standardzustand: Unsichtbar und leicht verschoben */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px); /* Startet 30px weiter unten */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform; /* Performance-Optimierung */
}

/* Sichtbarer Zustand: Wird durch JS hinzugefügt */
.fade-in-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0); /* Bewegt sich an die Endposition */
}

