@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-Light.ttf");
  font-weight: 300;
}

@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-Regular.ttf");
  font-weight: 400;
}

@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-Medium.ttf");
  font-weight: 500;
}

@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-Bold.ttf");
  font-weight: 700;
}



/* ===== CSS Variables ===== */
:root {
    --primary-green: #27ae60;
    --primary-green-light: #2ecc71;
    --primary-green-dark: #229954;
    --dark-gray: #2c3e50;
    --medium-gray: #34495e;
    --light-gray: #ecf0f1;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-gray: #7f8c8d;
    --border-light: #dfe6e9;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-md: rgba(0, 0, 0, 0.15);
    --shadow-lg: rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
    --transition-slow: all 0.6s ease;
}

/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 80px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark-gray);
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn svg {
    width: 20px;
    height: 20px;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
}

.btn-primary:hover {
    background: var(--primary-green-dark);
    border-color: var(--primary-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-green);
    border-color: var(--primary-green);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-link {
    color: var(--primary-green);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.btn-link:hover {
    transform: translateX(5px);
}

/* ===== Page Header ===== */
.page-header {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('images/hero_banner.jpg') center center / cover no-repeat;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    max-height: 50vh;
    min-height:50vh;
    display: flex;
    align-items: center;
        filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.page-header .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.page-header img {
    max-width: 350px;
    width: 100%;
    height: auto;
    margin: 0 auto 30px;
    display: block;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    animation: pulse 2s alternate;
}

.page-header p {
    color: white !important;
}

@keyframes fadeInUp {
    from {
        opacity: 1;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.05);
    }
}

/* ===== Hero Section mit Hintergrundvideo ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: -80px;
    padding-top: 80px;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

/* Fallback für Geräte die kein autoplay unterstützen */
.hero-video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.35) 0%, rgba(46, 204, 113, 0.25) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-badge svg {
    width: 20px;
    height: 20px;
}

.hero-text h1 {
    color: var(--white);
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
}

.hero-text h1 .highlight {
    background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.hero-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-green);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator span {
    display: block;
    width: 32px;
    height: 52px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span:before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 20% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(22px);
        opacity: 0;
    }
}

/* ===== Trust Badges Section ===== */
.trust-badges {
    background: var(--white);
    padding: 60px 0;
    border-bottom: 1px solid var(--border-light);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.trust-item {
    padding: 20px;
    transition: var(--transition);
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.trust-label {
    color: var(--text-gray);
    font-size: 0.95rem;
    font-weight: 500;
}

/* ===== Über uns Preview Section ===== */
.about-preview {
    padding: 100px 0;
    background: var(--light-gray);
}

.about-preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-preview-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-slow);
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    font-weight: 600;
    color: var(--dark-gray);
}

.image-badge svg {
    width: 22px;
    height: 22px;
    color: var(--primary-green);
}

.section-label {
    display: inline-block;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 30px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: var(--primary-green);
}

.about-preview-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-preview-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-highlights {
    margin-bottom: 2.5rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1rem;
}

.highlight-icon {
    width: 24px;
    height: 24px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.highlight-icon svg {
    width: 14px;
    height: 14px;
    color: white;
    stroke-width: 3;
}

.highlight-item span {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
}

/* ===== Sections ===== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 70px;
}

.section-header h2 {
    margin-bottom: 1rem;
    font-size: 2.8rem;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===== USP Section ===== */
.usp-section {
    background: var(--white);
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

.usp-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-light);
}

.usp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-green);
}

.usp-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    transition: var(--transition);
}

.usp-icon svg {
    width: 36px;
    height: 36px;
}

.usp-card:hover .usp-icon {
    transform: scale(1.1) rotate(5deg);
}

.usp-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.usp-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===== Offerings Section ===== */
.offerings-section {
    background: var(--light-gray);
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.offering-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid transparent;
}

.offering-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-green);
}

.offering-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.offering-image svg {
    width: 80px;
    height: 80px;
    color: white;
    opacity: 0.9;
}

.offering-content {
    padding: 35px 30px;
}

.offering-badge {
    display: inline-block;
    background: rgba(39, 174, 96, 0.1);
    color: var(--primary-green);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.offering-content h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--dark-gray);
}

.offering-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.offering-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.offering-features li {
    padding: 8px 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 25px;
}

.offering-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

/* ===== Target Groups ===== */
.target-section {
    background: var(--white);
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.target-card {
    background: var(--light-gray);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.target-card:hover {
    background: var(--white);
    border-color: var(--primary-green);
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.target-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.target-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.target-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    color: var(--white);
}

.testimonials-section .section-header h2,
.testimonials-section .section-label {
    color: var(--text-gray);
}

.testimonials-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.testimonials-section .section-label::before {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px;
    border-radius: 20px;
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
}

.stars {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.testimonial-content p {
    color: var(--white);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
}

.author-info h4 {
    color: var(--white);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.author-info span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* ===== News & Events Section ===== */
.news-events-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.news-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.news-event-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.news-event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px var(--shadow-md);
}

.news-event-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.news-event-badge.event {
    background: linear-gradient(135deg, var(--primary-green-light), var(--primary-green));
    color: var(--white);
}

.news-event-badge.news {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: var(--white);
}

.news-event-date {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--white);
    border: 2px solid var(--primary-green);
    border-radius: 12px;
    width: 70px;
    height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px var(--shadow);
}

.date-day {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
}

.date-month {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
}

.news-event-card h3 {
    margin-top: 10px;
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: var(--dark-gray);
    padding-right: 80px;
}

.news-event-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.news-event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border-light);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.meta-item svg {
    width: 18px;
    height: 18px;
    color: var(--primary-green);
}

/* Newsletter CTA */
.newsletter-cta {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    border-radius: 20px;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 10px 40px rgba(39, 174, 96, 0.2);
    flex-wrap: wrap;
}

.newsletter-content {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
}

.newsletter-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.newsletter-icon svg {
    width: 30px;
    height: 30px;
    color: var(--white);
}

.newsletter-text h3 {
    color: var(--white);
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1rem;
}

.newsletter-cta .btn {
    background: var(--white);
    color: var(--primary-green);
    flex-shrink: 0;
}

.newsletter-cta .btn:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--medium-gray) 100%);
    color: var(--white);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-secondary {
    background: transparent;
    border-color: white;
    color: white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: var(--dark-gray);
}

/* ===== Footer ===== */
.footer {
    background: var(--dark-gray);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3,
.footer-col h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}


.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a svg {
    width: 20px;
    height: 20px;
}

.social-links a:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-green);
}

/* ===== Scroll Animations ===== */
.scroll-reveal,
.scroll-fade,
.scroll-fade-up,
.scroll-slide-left,
.scroll-slide-right {
    opacity: 0;
    transition: var(--transition-slow);
}

.scroll-reveal.revealed {
    opacity: 1;
    animation: fadeInUp 0.8s ease forwards;
}

.scroll-fade.revealed {
    opacity: 1;
    animation: fadeIn 0.8s ease forwards;
}

.scroll-fade-up.revealed {
    opacity: 1;
    animation: fadeInUp 0.8s ease forwards;
}

.scroll-slide-left.revealed {
    opacity: 1;
    animation: slideInLeft 0.8s ease forwards;
}

.scroll-slide-right.revealed {
    opacity: 1;
    animation: slideInRight 0.8s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Stagger delay for grid items */
.usp-card:nth-child(1) { transition-delay: 0.1s; }
.usp-card:nth-child(2) { transition-delay: 0.2s; }
.usp-card:nth-child(3) { transition-delay: 0.3s; }
.usp-card:nth-child(4) { transition-delay: 0.4s; }

.offering-card:nth-child(1) { transition-delay: 0.1s; }
.offering-card:nth-child(2) { transition-delay: 0.2s; }
.offering-card:nth-child(3) { transition-delay: 0.3s; }
.offering-card:nth-child(4) { transition-delay: 0.4s; }

.testimonial-card:nth-child(1) { transition-delay: 0.1s; }
.testimonial-card:nth-child(2) { transition-delay: 0.2s; }
.testimonial-card:nth-child(3) { transition-delay: 0.3s; }

.target-card:nth-child(1) { transition-delay: 0.1s; }
.target-card:nth-child(2) { transition-delay: 0.2s; }
.target-card:nth-child(3) { transition-delay: 0.3s; }
.target-card:nth-child(4) { transition-delay: 0.4s; }
.target-card:nth-child(5) { transition-delay: 0.5s; }

.trust-item:nth-child(1) { transition-delay: 0.1s; }
.trust-item:nth-child(2) { transition-delay: 0.2s; }
.trust-item:nth-child(3) { transition-delay: 0.3s; }
.trust-item:nth-child(4) { transition-delay: 0.4s; }

/* ===== Alte Styles für andere Seiten (beibehalten) ===== */

/* Trainers Section */
.trainers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.trainer-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
}

.trainer-image {
    height: 350px;
    background: var(--light-gray);
}

.trainer-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    color: var(--white);
}

.trainer-placeholder svg {
    width: 100px;
    height: 100px;
}

.trainer-content {
    padding: 30px;
}

.trainer-title {
    display: block;
    color: var(--primary-green);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.trainer-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.specialty-tag {
    background: var(--light-gray);
    color: var(--text-dark);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* Philosophy Section */
.philosophy-section {
    background: var(--light-gray);
}

/* h3 in Philosophy Section grau machen */
.philosophy-text h3 {
    color: var(--dark-gray);
    font-size: 1.5rem;
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.philosophy-highlights {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.philosophy-image {
    height: 500px;
}

.image-placeholder {
    height: 100%;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.image-placeholder svg {
    width: 120px;
    height: 120px;
}

/* Award Section */
.award-section {
    padding: 80px 0;
}

.award-content {
    display: flex;
    gap: 40px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.award-badge {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px var(--shadow-md);
}

.award-badge svg {
    width: 80px;
    height: 80px;
    color: var(--white);
}

.award-text h2 {
    margin-bottom: 0.5rem;
}

.award-text h3 {
    color: var(--primary-green);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Escrima Info Section */
.escrima-info-section {
    background: var(--white);
}

.escrima-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.escrima-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-gray);
    border-radius: 15px;
    transition: var(--transition);
}

.escrima-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-md);
}

.escrima-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* Values Section */
.values-section {
    background: var(--light-gray);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    border-top: 4px solid var(--primary-green);
}

/* Course Detail Pages */
.course-nav {
    background: var(--light-gray);
    padding: 20px 0;
    position: sticky;
    top: 70px;
    z-index: 100;
}

.course-nav-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.course-nav-link {
    padding: 10px 25px;
    background: var(--white);
    border-radius: 25px;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: 0 2px 5px var(--shadow);
}

.course-nav-link:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

.course-detail {
    padding: 80px 0;
}

.course-detail.alt {
    background: var(--light-gray);
}

.course-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.course-content.reverse {
    direction: rtl;
}

.course-content.reverse > * {
    direction: ltr;
}

.course-text-side h2 {
    margin-bottom: 0.5rem;
}

.course-text-side h3 {
    color: var(--primary-green);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.course-intro {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.course-list {
    list-style: none;
    margin: 1.5rem 0;
}

.course-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-gray);
}

.course-list li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.course-list li strong {
    color: var(--text-dark);
}

.course-image-side {
    position: sticky;
    top: 140px;
}

.course-image-placeholder {
    height: 300px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 30px;
}

.course-image-placeholder img {
    border-radius: 15px;
    width: 100%;
    height: 300px;
}

.course-quick-facts,
.course-highlights,
.course-features-box {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 3px 10px var(--shadow);
}

.quick-fact,
.feature-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.quick-fact:last-child,
.feature-item:last-child {
    border-bottom: none;
}

.quick-fact strong,
.feature-item strong {
    color: var(--dark-gray);
    display: block;
    margin-bottom: 3px;
}

.course-highlights h4,
.course-features-box h4 {
    margin-bottom: 15px;
}

.course-highlights ul {
    list-style: none;
}

.course-highlights ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-gray);
}

.course-highlights ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
}

.course-cta {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 1.5rem 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-icon {
    width: 30px;
    height: 30px;
    background: var(--primary-green-light);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
}

.format-boxes {
    display: grid;
    gap: 20px;
    margin: 1.5rem 0;
}

.format-box {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-green);
}

.format-box h5 {
    margin-bottom: 8px;
    color: var(--dark-gray);
}

.format-box p {
    margin: 0;
    font-size: 0.9rem;
}

.institutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 1.5rem 0;
}

.institution-card {
    text-align: center;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 10px;
}

.inst-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
}

.institution-card strong {
    display: block;
    margin-bottom: 5px;
    color: var(--dark-gray);
}

.institution-card p {
    font-size: 0.85rem;
    margin: 0;
}

.pillars-grid {
    display: grid;
    gap: 25px;
    margin: 1.5rem 0;
}

.pillar-card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 3px 10px var(--shadow);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.pillar-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    flex-shrink: 0;
}

.pillar-card h5 {
    margin-bottom: 8px;
}

.pillar-card p {
    margin: 0;
}

.age-groups {
    display: grid;
    gap: 15px;
    margin: 1.5rem 0;
}

.age-group {
    padding: 15px 20px;
    background: var(--light-gray);
    border-radius: 10px;
    border-left: 4px solid var(--primary-green);
}

.course-quote {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 3px 10px var(--shadow);
    margin-top: 20px;
    border-left: 4px solid var(--primary-green);
}

.course-quote p {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.course-quote cite {
    color: var(--primary-green);
    font-style: normal;
    font-weight: 600;
}


/* Video Section */
.video-section {
    padding: 5rem 0;
    background: var(--white);
}

.video-grid {
    margin-top: 3rem;
}

.video-placeholder {
    background: var(--light-gray);
    padding: 5rem 3rem;
    border-radius: 20px;
    text-align: center;
    border: 2px dashed var(--border-light);
}

.video-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--primary-green);
    opacity: 0.6;
}

.video-icon svg {
    width: 100%;
    height: 100%;
}

.video-placeholder p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 500px;
    margin: 0 auto;
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-details {
    margin: 40px 0;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-item p {
    margin: 0;
}

.contact-item a {
    color: var(--primary-green);
}

.social-contact {
    margin: 40px 0;
}

.social-links-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    background: var(--light-gray);
    border-radius: 10px;
    transition: var(--transition);
    font-weight: 500;
}

.social-btn:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateX(5px);
}

.social-btn svg {
    width: 24px;
    height: 24px;
}

.quick-questions {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.quick-questions a {
    color: var(--primary-green);
    font-weight: 600;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px var(--shadow);
}

.contact-form-wrapper h2 {
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    cursor: pointer;
}

.checkbox-label span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.checkbox-label a {
    color: var(--primary-green);
    text-decoration: underline;
}

.form-message {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
}

.form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 15px;
}

/* Map Section */
.map-section {
    height: 400px;
    background: var(--light-gray);
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
}

.map-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.map-icon svg {
    width: 40px;
    height: 40px;
}

.map-note {
    font-size: 0.9rem;
    margin-top: 10px;
}

/* FAQ Page */
.faq-section {
    padding: 80px 0;
}

.faq-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.faq-intro a {
    color: var(--primary-green);
    font-weight: 600;
}

.faq-categories {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.faq-category-btn {
    padding: 10px 25px;
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: 25px;
    color: var(--text-dark);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.faq-category-btn:hover,
.faq-category-btn.active {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px var(--shadow);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark-gray);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-green);
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-green);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p {
    padding: 0 25px 20px;
    margin: 0;
}

.faq-answer a {
    color: var(--primary-green);
    font-weight: 600;
}

/* ============================================
   Testimonial CTA Button Section
   ============================================ */

.testimonial-cta {
    margin-top: 4rem;
    text-align: center;
    padding: 2rem 0;
}

.testimonial-cta .btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-cta .btn-large svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   Modern Weekly Schedule Section
   ============================================ */

.schedule-section {
    padding: 6rem 0;
    background: #f8f9fa;
    position: relative;
}

.weekly-schedule {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-top: 3rem;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

/* Day Cards */
.day-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 180px;
}

.day-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Day Card Header */
.day-card-header {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    padding: 15px 10px;
    text-align: center;
}

.day-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.day-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* Day Card Body */
.day-card-body {
    padding: 15px 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Course Slots */
.course-slot {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #27ae60;
    transition: all 0.3s ease;
}

.course-slot:hover {
    background: #e8f5e9;
}

.course-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

.course-info {
    flex: 1;
    min-width: 0;
}

.course-name {
    font-weight: 600;
    font-size: 0.8rem;
    color: #2c3e50;
    line-height: 1.3;
    word-wrap: break-word;
}

.course-time {
    font-weight: 500;
    font-size: 0.7rem;
    color: #27ae60;
    margin-top: 2px;
}

/* Empty Day Cards */
.day-card-empty .day-card-header {
    background: linear-gradient(135deg, #95a5a6, #7f8c8d);
}

.course-slot-empty {
    background: #f5f5f5;
    border-left-color: #95a5a6;
}

.course-slot-empty .course-name {
    color: #7f8c8d;
    font-style: italic;
}

/* Featured Day Card (Friday) */
.day-card-featured .day-card-header {
    background: linear-gradient(135deg, #27ae60, #1e8449);
}

/* Special Day Card (Saturday) */
.day-card-special .day-card-header {
    background: linear-gradient(135deg, #e67e22, #d35400);
}

.day-card-special .course-slot {
    border-left-color: #e67e22;
}

.course-slot-special {
    background: #fef5e7;
    border-left-color: #e67e22;
}

.course-slot-special .course-time {
    color: #e67e22;
}

/* Contact Info Box */
.schedule-contact {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-box {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(39, 174, 96, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.contact-box::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.contact-box h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 35px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.contact-item svg {
    width: 24px;
    height: 24px;
    color: white;
    flex-shrink: 0;
}

.contact-item p {
    margin: 0;
    color: white;
    line-height: 1.5;
}

.contact-item strong {
    font-weight: 700;
    font-size: 1rem;
    display: block;
    margin-bottom: 3px;
}

.contact-item a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .page-header {
        padding: 120px 0 80px;
        min-height: 70vh;
    }
    
    .page-header img {
        max-width: 325px;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .about-preview-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .philosophy-content,
    .course-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .news-events-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-cta {
        flex-direction: column;
        text-align: center;
        padding: 35px;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .course-image-side {
        position: static;
    }
    
    .course-content.reverse {
        direction: ltr;
    }
    
    .award-content {
        flex-direction: column;
        text-align: center;
    }
    
    .trainers-grid,
    .offerings-grid {
        grid-template-columns: 1fr;
    }
    
    .weekly-schedule {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .page-header {
        padding: 100px 0 60px;
        min-height: 60vh;
    }
    
    .page-header img {
        max-width: 275px;
        margin-bottom: 20px;
    }
    
    .weekly-schedule {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .day-card {
        min-height: 160px;
    }
    
    .day-card-header {
        padding: 12px 8px;
    }
    
    .day-number {
        font-size: 1.1rem;
    }
    
    .day-label {
        font-size: 0.65rem;
    }
    
    .day-card-body {
        padding: 12px 10px;
    }
    
    .course-slot {
        padding: 8px;
    }
    
    .course-name {
        font-size: 0.75rem;
    }
    
    .course-time {
        font-size: 0.65rem;
    }
    
    .contact-box {
        padding: 35px 25px;
    }
    
    .contact-box h3 {
        font-size: 1.4rem;
    }
    
    .contact-details {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-item {
        justify-content: center;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .trust-number {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-preview {
        padding: 70px 0;
    }

    .about-preview-text h2 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .pillar-card {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-image-container {

        height: 240px;
    }
    
    .gallery-item .gallery-image {
        height: 240px;
    }
    
    .gallery-caption {
        padding: 1.25rem;
    }
    
    .gallery-caption h3 {
        font-size: 1.15rem;
    }
    
    .gallery-caption p {
        font-size: 0.9rem;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .video-placeholder {
        padding: 3rem 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    
    .page-header {
        padding: 80px 0 40px;
        min-height: 50vh;
    }
    
    .page-header img {
        max-width: 250px;
    }
    
    .weekly-schedule {
        grid-template-columns: 1fr;
    }
    
    .day-card {
        min-height: auto;
    }
    
    .contact-item a {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
    
    .btn-large {
        padding: 14px 32px;
        font-size: 1rem;
    }
    
    .usp-grid,
    .target-grid,
    .escrima-grid,
    .values-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .course-nav-links {
        flex-direction: column;
    }
    
    .course-nav-link {
        width: 100%;
        text-align: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-image-container {

        height: 260px;
    }
    
    .gallery-item .gallery-image {
        height: 280px;
    }
    
    .gallery-caption {
        padding: 1rem;
    }
    
    .gallery-caption h3 {
        font-size: 1.1rem;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}





/* ==========================================================================
   RESPONSIVE DESIGN & MOBILE OPTIMIERUNG
   Füge dies ganz am Ende deiner CSS-Datei ein
   ========================================================================== */

/* --- 1. Tablet & Kleinere Laptops (max-width: 1024px) --- */
@media screen and (max-width: 1024px) {
    
    /* Container etwas mehr Platz am Rand geben */
    .container {
        padding: 0 30px;
    }

    /* Hero Section anpassen */
    .hero-inner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
        margin-bottom: 50px;
        padding-right: 0;
    }

    .hero-label {
        justify-content: center;
    }

    /* Die schwebenden Karten rechts ausblenden oder unterhalb positionieren */
    /* Hier blenden wir sie aus, um den Fokus auf den Text zu legen */
    .hero-floating {
        display: none; 
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    /* Grids auf 2 Spalten reduzieren */
    .usp-grid,
    .programs-grid,
    .trust-grid,
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    /* Über Uns Bereich stapeln */
    .about-preview-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .about-preview-text {
        order: 2; /* Text nach unten */
    }

    .about-preview-image {
        order: 1; /* Bild nach oben */
    }
    
    .section-label {
        margin-left: auto;
        margin-right: auto;
        padding-left: 0; /* Linie entfernen oder anpassen */
    }
    .section-label::before {
        display: none; /* Linie entfernen bei Zentrierung */
    }

    .about-highlights {
        display: inline-block;
        text-align: left;
    }
}

/* --- 2. Tablets & Große Smartphones (max-width: 768px) --- */
@media screen and (max-width: 768px) {
    
    /* Globale Abstände verringern */
    section {
        padding: 60px 0;
    }

    /* Schriftgrößen anpassen */
    h1, .hero h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    /* Navigation / Header */
    /* Hier wird angenommen, dass du ein Burger-Menü hast. 
       Falls nicht, müssen die Links gestapelt werden */
    .nav-links {
        display: none; /* Wird per JS mit .active eingeblendet */
    }
    
    /* Hero */
    .hero {
        min-height: 600px;
        height: auto;
        padding-top: 120px; /* Platz für Navbar */
        padding-bottom: 60px;
    }

    .hero-stat-number {
        font-size: 2rem;
    }

    /* Angebote & Programme */
    .programs-grid {
        grid-template-columns: 1fr; /* Alles untereinander */
        max-width: 500px;
        margin: 0 auto;
    }

    .offerings-grid {
        grid-template-columns: 1fr;
    }

    .offering-image {
        height: 180px;
    }

    /* Trust Badges (Zahlen) */
    .trust-grid {
        grid-template-columns: 1fr 1fr; /* 2 nebeneinander */
        gap: 30px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .newsletter-info {
        margin-bottom: 20px;
    }
    
    .newsletter-btn {
        width: 100%;
        justify-content: center;
    }
}

/* --- 3. Smartphones (max-width: 480px) --- */
@media screen and (max-width: 480px) {
    
    .container {
        padding: 0 20px;
    }

    /* Hero Text noch kleiner */
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-btn-primary, 
    .hero-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    /* Alle Grids auf 1 Spalte */
    .usp-grid,
    .trust-grid,
    .news-grid,
    .testimonials-grid,
    .target-grid {
        grid-template-columns: 1fr;
    }

    /* Wochenplan (Schedule) Optimierung für Mobile */
    /* Statt zu quetschen, machen wir es horizontal scrollbar */
    .weekly-schedule {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 20px;
        gap: 15px;
        scroll-snap-type: x mandatory; /* Einrasten beim Scrollen */
        -webkit-overflow-scrolling: touch; /* Flüssiges Scrollen auf iOS */
    }

    .day-card {
        min-width: 260px; /* Karten breit genug machen */
        scroll-snap-align: center; /* Karte zentrieren beim Scrollen */
        flex-shrink: 0;
    }

    /* Kontaktbox im Schedule Bereich */
    .contact-details {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-item {
        width: 100%;
        justify-content: flex-start;
    }
}

/* --- 4. Burger Menü Fixes (Falls benötigt) --- */
/* Dies stellt sicher, dass das Menü auf Mobile gut aussieht, 
   wenn die Klasse .active per JS hinzugefügt wird */
@media screen and (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 80px; /* Höhe der Navbar */
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease-in-out;
        z-index: 99;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-menu li {
        margin: 15px 0;
        text-align: center;
    }
    
    .menu-toggle {
        display: flex; /* Burger Icon anzeigen */
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
    }
    
    .menu-toggle span {
        display: block;
        width: 30px;
        height: 3px;
        background-color: #333;
        transition: 0.3s;
    }
}
/* ===== Coming Soon Container ===== */
.coming-soon-container {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.05) 0%, rgba(46, 204, 113, 0.08) 100%);
    border-radius: 24px;
    max-width: 600px;
    margin: 0 auto;
    border: 2px dashed rgba(39, 174, 96, 0.3);
}

.coming-soon-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    color: var(--primary-green);
    opacity: 0.8;
}

.coming-soon-icon svg {
    width: 100%;
    height: 100%;
}

.coming-soon-title {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 16px;
    font-weight: 700;
}

.coming-soon-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
    max-width: 450px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .coming-soon-container {
        padding: 60px 30px;
    }
    
    .coming-soon-icon {
        width: 60px;
        height: 60px;
    }
    
    .coming-soon-title {
        font-size: 2rem;
    }
    
    .coming-soon-text {
        font-size: 1rem;
    }
}