/* Dark Modern Sports Theme */
:root {
    /* Dark Backgrounds */
    --bg-page: #0a0a0a;
    --bg-card: #1a1a1a;
    --bg-subtle: #111111;
    --bg-section: #1f1f1f;
    --bg-hero: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f1419 100%);

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --text-light: #a0a0a0;
    --text-muted: #666666;

    /* Borders */
    --border-light: #333333;
    --border-medium: #444444;
    --border-strong: #555555;

    /* Dynamic Sport Colors */
    --accent-primary: #66f408;
    --accent-secondary: #aeaeac;
    --accent-success: #00ff88;
    --accent-warning: #ffeb3b;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #66f408 0%, #4fb006 100%);
    --gradient-secondary: linear-gradient(135deg, #aeaeac 0%, #d1d1d1 100%);
    --gradient-success: linear-gradient(135deg, #66f408 0 !, #4fb006 100%);

    /* Spacing System */
    --spacing-xs: 8px;
    --spacing-small: 16px;
    --spacing-medium: 24px;
    --spacing-large: 32px;
    --spacing-xl: 48px;
    --spacing-giant: 64px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    line-height: 1.5;
    background: var(--bg-page);
    color: var(--text-primary);
    overflow-x: hidden;
}

/* Typography Scale */
.display-large {
    font-size: clamp(3rem, 6.5vw, 5.5rem);
    font-weight: 900;
    line-height: 0.9;
    color: var(--text-primary);
    text-shadow: 0 0 30px rgba(102, 244, 8, 0.3);
}

.display-medium {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-primary);
}

.heading-1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

.heading-2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
}

.heading-3 {
    font-size: clamp(1.25rem, 2.5vw, 1.6rem);
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.body-large {
    font-size: clamp(1.125rem, 2.5vw, 1.3rem);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-secondary);
}

.body-medium {
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Button Styles */
.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 16px 40px;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    min-height: 56px;
    line-height: 1.2;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(102, 244, 8, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-primary);
    border: 2px solid var(--accent-primary);
    border-radius: 50px;
    padding: 14px 38px;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    min-height: 56px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    margin-left: 20px;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(102, 244, 8, 0.3);
}

.btn-cta {
    background: var(--gradient-secondary);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 20px 50px;
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    min-height: 64px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    margin-right: 20px;
}

.btn-cta:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 15px 35px rgba(167, 167, 167, 0.4);
}

/* Card Styles */
.sports-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: var(--spacing-large);
    border: 1px solid var(--border-light);
    transition: all 0.4s ease;
    cursor: pointer;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.sports-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.6s;
}

.sports-card:hover::before {
    left: 100%;
}

.sports-card:hover {
    transform: translateY(-8px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(102, 244, 8, 0.2);
    border-color: var(--accent-primary);
}

/* Navigation Header */
.sports-header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99999;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
}

.nav-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sports-logo {
    font-size: 24px;
    font-weight: 900;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 2px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sports-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.sports-nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.sports-nav-link:hover {
    color: var(--accent-primary);
    background: rgba(102, 244, 8, 0.1);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
}

/* Container System */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Grid System */
.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-large);
    padding: var(--spacing-large) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

/* Hero Section */
.hero-section {
    background: var(--bg-hero);
    padding: 180px 0 var(--spacing-giant);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(102, 244, 8, 0.1) 0%, transparent 70%);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    margin-bottom: var(--spacing-medium);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    margin-bottom: var(--spacing-xl);
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.hero-cta {
    margin-bottom: var(--spacing-large);
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
    width: 80px;
    height: 80px;
}

.floating-element-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    width: 60px;
    height: 60px;
}

.floating-element-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
    width: 100px;
    height: 100px;
}

.trainer-picture {
    display: flex;
    justify-content: left;
    margin-bottom: 24px;
}

.event-img {
    width: 100%;
}

/* Section Styles */
.section {
    padding: var(--spacing-giant) 0;
    position: relative;
}

.section-dark {
    background: var(--bg-subtle);
}

.text-center {
    text-align: center;
}

.mb-lg {
    margin-bottom: var(--spacing-large);
}

.mb-xl {
    margin-bottom: var(--spacing-xl);
}

.mb-4 {
    margin-bottom: 16px;
}

.mb-6 {
    margin-bottom: 24px;
}

.mb-8 {
    margin-bottom: 32px;
}

/* Service Specific Styles */
.service-icon {
    width: 56px !important;
    height: 56px !important;
    margin: 0 auto 24px auto;
}

.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-weight: 500;
}

.feature-list li i {
    margin-right: 12px;
    width: 16px;
    height: 16px;
}

/* About Section Styles */
.coach-name {
    color: var(--accent-primary);
}

.coach-title {
    color: var(--accent-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.credentials-title {
    color: var(--text-primary);
    text-transform: uppercase;
}

.credentials-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.credentials-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-weight: 500;
}

.credentials-list li i {
    margin-right: 12px;
    width: 20px;
    height: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.stat-label {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Price Card Styles */
.price-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: var(--spacing-xl);
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.price-card.featured {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.05);
    border: none;
}

.price-card.featured::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-secondary);
    border-radius: 26px;
    z-index: -1;
}

.price-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(102, 244, 8, 0.2);
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: black;
    padding: 8px 12px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-primary);
    margin: var(--spacing-small) 0;
    text-shadow: 0 0 20px rgba(102, 244, 8, 0.5);
}

.price-card.featured .price {
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.price-period {
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.price-features {
    list-style: none;
    margin: var(--spacing-medium) 0;
    text-align: left;
}

.price-features li {
    padding: 12px 0;
    position: relative;
    padding-left: 32px;
    font-weight: 500;
}

.price-features li::before {
    content: "⚡";
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-size: 18px;
}

.price-card.featured .price-features li::before {
    color: var(--accent-warning);
}

.full-width {
    width: 100%;
}

/* Testimonials */
.stars {
    display: flex;
    justify-content: center;
    gap: 4px;
}

.star-icon {
    width: 24px;
    height: 24px;
    fill: var(--accent-warning);
    color: var(--accent-warning);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-name {
    color: var(--accent-primary);
}

.testimonial-info {
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Contact Section */
.contact-title {
    color: var(--accent-primary);
    text-transform: uppercase;
}

.booking-title {
    color: var(--accent-secondary);
    text-transform: uppercase;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-item i {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-input {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--border-medium);
    border-radius: 12px;
    background: var(--bg-subtle);
    color: var(--text-primary);
    font-weight: 500;
    font-family: inherit;
    font-size: 16px;
}

.form-input::placeholder {
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 2px rgba(102, 244, 8, 0.2);
}

/* Footer */
.footer {
    background: var(--bg-page);
    border-top: 1px solid var(--border-light);
    color: var(--text-secondary);
    padding: var(--spacing-xl) 0 var(--spacing-large);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-large);
    margin-bottom: var(--spacing-large);
}

.footer-section h4 {
    color: var(--accent-primary);
    margin-bottom: var(--spacing-small);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p,
.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 8px;
    display: block;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-primary);
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding-top: var(--spacing-medium);
    text-align: center;
    color: var(--text-muted);
}

/* Icon Styles */
.sports-icon {
    color: var(--accent-primary);
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.3));
}

.sports-icon-secondary {
    color: var(--accent-secondary);
    filter: drop-shadow(0 0 10px rgba(174, 174, 174, 0.3));
}

/* Animation System */
.animated {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animated.fadeIn {
    opacity: 1;
    transform: translateY(0);
}

.glow-effect {
    box-shadow: 0 0 20px rgba(102, 244, 8, 0.3);
}

/* Utility Classes */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Modal Base */
.modal[aria-hidden="true"] {
    display: none;
}

.modal[aria-hidden="false"] {
    display: block;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    /* über allem */
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    backdrop-filter: blur(2px);
}

.modal-dialog {
    position: relative;
    max-width: 720px;
    width: calc(100% - 32px);
    margin: 8vh auto;
    background: #0b0b0b;
    /* an dein Design anpassen */
    color: #fff;
    border: 1px solid var(--border-light, rgba(255, 255, 255, .08));
    border-radius: 16px;
    padding: 32px 28px;
    /* statt 24px 20px */
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
    transform: translateY(10px);
    animation: modalIn .18s ease-out;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-dialog::-webkit-scrollbar {
    width: 8px;
}

.modal-dialog::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .3);
    border-radius: 4px;
}

.modal-dialog::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, .5);
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: 0;
    color: inherit;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.modal-close:hover {
    background: rgba(255, 255, 255, .06);
}

.modal-content {
    margin-top: 12px;
    line-height: 1.8;
    /* mehr Zeilenhöhe */
}

.modal-content p {
    margin-bottom: 1rem;
    /* Abstand zwischen Absätzen */
}

.modal-content h2,
.modal-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.modal-content a {
    color: var(--accent-primary, #5cc);
}

@keyframes modalIn {
    from {
        opacity: .6;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Body scroll lock wenn Modal offen */
body.modal-open {
    overflow: hidden;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-page);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-primary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trainer-picture {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .sports-header {
        padding: 12px 0;
    }

    .nav-wrapper {
        padding: 0 16px;
    }

    .sports-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .sports-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-medium);
        padding: var(--spacing-medium) 0;
    }

    .sports-card {
        border-radius: 20px;
        padding: var(--spacing-medium);
    }

    .hero-section {
        padding: 120px 0 var(--spacing-large);
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 16px;
    }

    .btn-cta {
        margin-right: 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .event-img {
        width: 100%;
        min-width: 250px;
    }
}