/* Spezielle Styles für die Über Uns-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;
}

/* Philosophy Section */
.philosophy-divider {
    width: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-turquoise-light) 0%, var(--color-blue-gray) 100%);
    margin: 2rem auto;
}

.philosophy-blocks {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.philosophy-block {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    padding-left: 50px;
    border-left: 4px solid;
    transition: all 0.3s ease;
    position: relative;
}

.philosophy-block:hover {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateX(4px);
}

.philosophy-block p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-black);
    line-height: 1.7;
    margin: 0;
}

.values-heading {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-black);
    text-align: center;
    margin: 3rem 0 2rem;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
}

.value-item {
    position: relative;
    padding-left: 50px;
    border-left: 4px solid;
    padding-top: 8px;
    padding-bottom: 8px;
    transition: transform 0.2s ease;
    min-width: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.value-item:hover {
    transform: translateX(8px);
}

/* Strongerlab Farben für die border-left - abwechselnd für bessere Sichtbarkeit */
.values-grid .value-item:nth-child(1) { 
    border-left: 4px solid #9bcccc !important; 
}
.values-grid .value-item:nth-child(2) { 
    border-left: 4px solid #5e7a8a !important; 
}
.values-grid .value-item:nth-child(3) { 
    border-left: 4px solid #c0d1d9 !important; 
}
.values-grid .value-item:nth-child(4) { 
    border-left: 4px solid #9bcccc !important; 
}
.values-grid .value-item:nth-child(5) { 
    border-left: 4px solid #5e7a8a !important; 
}
.values-grid .value-item:nth-child(6) { 
    border-left: 4px solid #c0d1d9 !important; 
}

.value-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    margin-top: 0;
    color: var(--color-black);
    display: block;
}

.value-description {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-black);
    line-height: 1.7;
    margin-top: 0;
    display: block;
}

.value-description strong {
    color: var(--color-black);
    font-weight: 600;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #0E0E0E;
    padding: 4rem 0;
    width: 100%;
}

.testimonials-heading {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
}

/* Carousel Container */
.testimonials-carousel-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.testimonial-card {
    background-color: #404040;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    min-width: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
}

/* Desktop: Zeige 3 Karten gleichzeitig */
@media (min-width: 1024px) {
    .testimonial-card {
        min-width: calc(33.333% - 1.33rem);
        width: calc(33.333% - 1.33rem);
        margin-right: 2rem;
    }
}

/* Tablet: Zeige 2 Karten gleichzeitig */
@media (min-width: 768px) and (max-width: 1023px) {
    .testimonial-card {
        min-width: calc(50% - 1rem);
        width: calc(50% - 1rem);
        margin-right: 2rem;
    }
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.testimonial-header h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
}

.testimonial-rating {
    font-size: 0.9rem;
    color: #ffffff;
}

.testimonial-card p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-link {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #ffffff;
    background-color: #5E7A8A;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.testimonial-link:hover {
    background-color: #141414;
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    color: #ffffff;
    font-size: 2.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
    user-select: none;
}

.carousel-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn-prev {
    left: -25px;
}

.carousel-btn-next {
    right: -25px;
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    padding: 0;
}

.carousel-dot:hover {
    background-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.carousel-dot.active {
    background-color: #ffffff;
    transform: scale(1.2);
}

/* Team Section */
.team-content-section {
    padding: 4rem 0;
}

.team-quote {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.quote-text {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 200;
    color: #2a2a2a;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.quote-author {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-black);
    font-weight: 300;
}

.team-text {
    max-width: 100%;
}

.team-text p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-black);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.team-text strong {
    font-weight: 600;
}

/* Coaching Standards Section */
.coaching-standards-section {
    padding: 4rem 0;
}

.standards-heading {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-black);
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.3;
}

/* Features List */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--color-turquoise-light) 0%, var(--color-blue-gray) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover {
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transform: translateX(8px);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-turquoise-light) 0%, var(--color-blue-gray) 100%);
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(155, 204, 204, 0.4);
    font-family: var(--font-display);
}

.feature-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--color-black);
    line-height: 1.7;
    margin: 0;
}

.feature-text strong {
    color: var(--color-blue-gray);
    font-weight: 600;
}

/* Network Section */
.network-section {
    padding: 4rem 0;
}

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

.network-logo {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.network-logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.network-logo img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
}

.stats-heading {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 200;
    color: var(--color-black);
    text-align: center;
    margin-bottom: 3rem;
}

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

.stat-item {
    text-align: center;
}

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

.stat-label {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--color-black);
    line-height: 1.5;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.875rem;
    }
    
    .value-item {
        padding-left: 40px;
    }
    
    /* Testimonials Carousel Mobile Fixes */
    .testimonials-section {
        padding: 3rem 1rem;
    }
    
    .testimonials-carousel-container {
        padding: 0 60px; /* Platz für Buttons auf beiden Seiten */
        position: relative;
    }
    
    .testimonials-carousel {
        overflow: hidden;
        position: relative;
        width: 100%;
    }
    
    .testimonials-track {
        display: flex;
        transition: transform 0.5s ease-in-out;
        will-change: transform;
    }
    
    .testimonial-card {
        min-width: 100%;
        width: 100%;
        flex-shrink: 0;
        padding: 1.25rem;
        margin-right: 0;
        box-sizing: border-box;
    }
    
    .carousel-btn {
        width: 44px;
        height: 44px;
        font-size: 1.8rem;
        background-color: rgba(255, 255, 255, 0.95);
        color: #000;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
        z-index: 20;
        border: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .carousel-btn:hover,
    .carousel-btn:active {
        background-color: rgba(255, 255, 255, 1);
        transform: translateY(-50%) scale(1.05);
    }
    
    .carousel-btn:active {
        transform: translateY(-50%) scale(0.95);
    }
    
    .carousel-btn-prev {
        left: 8px;
    }
    
    .carousel-btn-next {
        right: 8px;
    }
    
    .carousel-dots {
        margin-top: 1.5rem;
        gap: 0.75rem;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
    }
    
    .network-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .quote-text {
        font-size: 1.5rem;
    }
    
    .standards-heading {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }
    
    .feature-item {
        grid-template-columns: 60px 1fr;
        gap: 1rem;
        padding: 1.25rem 1rem;
    }

    .feature-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .feature-text {
        font-size: 1rem;
    }
    
    .stats-heading {
        font-size: 2rem;
    }
    
    .testimonials-heading {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .philosophy-block {
        padding: 1.25rem;
        padding-left: 40px;
    }
    
    .philosophy-block p {
        font-size: 0.95rem;
    }
}

