/* Spezielle Styles für die Leistungen-Seite */

/* Hero Label */
.hero-label {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--color-turquoise-light);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.hero-cta {
    margin-top: 1.5rem;
}

.agb-link {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.95rem;
}

.agb-link a {
    color: var(--color-blue-gray);
    text-decoration: underline;
}

.agb-link a:hover {
    color: var(--color-navy);
}

/* Section Labels und Intro */
.section-label {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-turquoise-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 1rem;
}

.section-label.white {
    color: #ffffff;
}

.section-intro {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-black);
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.section-intro.white {
    color: #ffffff;
}

.section-text {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-black);
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Sports Section */
.sports-section {
    /* Wird jetzt als content-section verwendet, daher kein separater Background */
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.sport-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sport-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.sport-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 66.67%; /* 3:2 Aspect Ratio */
    overflow: hidden;
    background: #e0e0e0;
}

.sport-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sport-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-navy);
    margin: 1.5rem 1.5rem 1rem;
}

.sport-card p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-black);
    line-height: 1.7;
    margin: 0 1.5rem 1.5rem;
}

/* Steps Section */
.steps-section {
    padding: 4rem 0;
}

.cta-center {
    text-align: center;
    margin-top: 2rem;
}

/* Membership Section */
.membership-section {
    position: relative;
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
    padding: 5rem 0;
    min-height: 800px;
}

.membership-overlay {
    background: rgba(0, 0, 0, 0.7);
    padding: 3rem 0;
}

.membership-section h2.white {
    color: #ffffff;
    text-align: center;
}

.membership-section .white,
.membership-section .section-label.white,
.membership-section .section-intro.white {
    color: #ffffff;
}

/* Pricing Grid Layout */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Pricing-Card Styles */
.pricing-card {
    background: #0E0E0E;
    border: 1px solid var(--color-turquoise-light);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(155, 204, 204, 0.3);
}

.pricing-card.featured {
    border-width: 6px;
    border-color: var(--color-turquoise-light);
}

.pricing-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 200;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.pricing-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 200;
    color: #BABABA;
    margin-bottom: 1rem;
}

.pricing-card.featured h3 {
    color: var(--color-turquoise-light);
}

.pricing-price {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--color-turquoise-light);
    margin-bottom: 1.5rem;
}

.pricing-card p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #8F8F8F;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.pricing-card.featured p {
    color: #D6D6D6;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    text-align: left;
}

.pricing-card ul li {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #8F8F8F;
    line-height: 1.8;
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-turquoise-light);
}

.pricing-card.featured ul li {
    color: #D6D6D6;
}

.pricing-button {
    margin-top: 2rem;
    background: #BABABA;
    color: #0E0E0E;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.pricing-button.featured {
    background: var(--color-turquoise-light);
    color: #0E0E0E;
}

.pricing-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(155, 204, 204, 0.4);
}

.white {
    color: #ffffff !important;
}

/* Mobile Styles für Leistungen-Seite */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    /* Sports Section - Tablet Padding */
    .sports-section .content {
        padding: 3.5rem 4% !important;
    }
    
    /* Membership Section - Tablet Padding */
    .membership-overlay .content {
        padding: 3.5rem 4% !important;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .sports-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Sports Section - Mobile Padding */
    .sports-section .content {
        padding: 2rem 4% !important;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-number {
        font-size: 3rem;
    }
    
    .membership-section {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .membership-overlay {
        padding: 2rem 0;
    }
    
    /* Membership Section - Mobile Padding */
    .membership-overlay .content {
        padding: 2rem 4% !important;
    }
    
    .section-label {
        font-size: 0.85rem;
    }
    
    .section-intro {
        font-size: 0.95rem;
    }
    
    .section-text {
        font-size: 0.95rem;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    /* Sports Section - Small Mobile Padding */
    .sports-section .content {
        padding: 2rem 3% !important;
    }
    
    /* Membership Section - Small Mobile Padding */
    .membership-overlay .content {
        padding: 2rem 3% !important;
    }
}

