/* ===== EXPERIENCE PAGE STYLES ===== */

/* Experience Hero */
.experience-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.experience-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.experience-hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 6rem 0;
}

.experience-hero .hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.experience-hero .hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.stat-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #F4CF7A;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* Timeline */
.training-program {
    padding: 6rem 0;
    background: #FFFFFF;
}

.timeline {
    max-width: 900px;
    margin: 3rem auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #C86B4B, #F4CF7A);
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-marker {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #C86B4B;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 8px #FFFFFF;
}

.timeline-day {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: #FFFFFF;
    font-size: 0.875rem;
}

.timeline-content {
    flex: 1;
    background: #F8F4F0;
    padding: 2rem;
    border-radius: 12px;
}

.timeline-content h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.75rem;
    color: #1A2B3C;
    margin-bottom: 1.5rem;
}

.timeline-schedule {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.schedule-item {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.schedule-item .time {
    font-weight: 700;
    color: #C86B4B;
    min-width: 60px;
    font-family: 'DM Sans', sans-serif;
}

.schedule-item .activity {
    color: #1A2B3C;
    font-weight: 500;
}

.timeline-content img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 1rem;
}

/* Coaches Section */
.coaches-section {
    padding: 6rem 0;
    background: #F8F4F0;
}

.coaches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.coach-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.coach-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.coach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.coach-card:hover .coach-image img {
    transform: scale(1.05);
}

.coach-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #C86B4B;
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.813rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.coach-info {
    padding: 2rem;
}

.coach-info h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    color: #1A2B3C;
    margin-bottom: 0.25rem;
}

.coach-title {
    color: #C86B4B;
    font-weight: 600;
    margin-bottom: 1rem;
}

.coach-credentials {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.coach-credentials li {
    font-size: 0.938rem;
    color: #6B7A5A;
}

.coach-bio {
    font-style: italic;
    color: #6B7A5A;
    line-height: 1.6;
    border-left: 3px solid #C86B4B;
    padding-left: 1rem;
    margin-top: 1rem;
}

/* Facilities Section */
.facilities-section {
    padding: 6rem 0;
    background: #FFFFFF;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.facility-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    min-height: 300px;
}

.facility-card:hover {
    transform: scale(1.02);
}

.facility-large {
    grid-column: span 2;
}

.facility-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.facility-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 43, 60, 0.95), transparent);
    padding: 2rem;
    color: #FFFFFF;
}

.facility-content h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #f4cf7a;
}

.facility-content p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* Accommodation Section */
.accommodation-section {
    padding: 6rem 0;
    background: #F8F4F0;
}

.accommodation-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.accommodation-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.accommodation-card.featured {
    border: 2px solid #C86B4B;
    box-shadow: 0 0 0 4px rgba(200, 107, 75, 0.1);
}

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

.accommodation-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.accommodation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.accommodation-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #C86B4B;
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.813rem;
    font-weight: 700;
}

.accommodation-info {
    padding: 1.5rem;
}

.accommodation-info h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    color: #1A2B3C;
    margin-bottom: 1rem;
}

.accommodation-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.accommodation-features .feature {
    font-size: 0.813rem;
    color: #6B7A5A;
    background: #F8F4F0;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
}

.accommodation-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #F8F4F0;
}

.price-from {
    font-size: 0.875rem;
    color: #6B7A5A;
}

.price-amount {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #C86B4B;
}

.price-period {
    font-size: 0.938rem;
    color: #6B7A5A;
}

.accommodation-note {
    max-width: 700px;
    margin: 3rem auto 0;
    padding: 1.5rem;
    background: #FFFFFF;
    border-radius: 8px;
    border-left: 4px solid #C86B4B;
}

/* What's Included Section */
.included-section {
    padding: 6rem 0;
    background: #FFFFFF;
}

.included-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.included-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.75rem;
    color: #1A2B3C;
    margin-bottom: 1.5rem;
}

.included-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.included-list li {
    position: relative;
    padding-left: 2rem;
    line-height: 1.6;
    color: #1A2B3C;
}

.included-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6B7A5A;
    font-weight: 700;
    font-size: 1.25rem;
}

.included-list.excluded li::before {
    content: '⚬';
    color: #6B7A5A;
}

.pricing-box {
    margin-top: 3rem;
    background: linear-gradient(135deg, #C86B4B, #F4CF7A);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.pricing-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.pricing-main {
    color: #FFFFFF;
}

.pricing-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.938rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.9;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin: 0.75rem 0;
}

.price-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.pricing-note {
    font-size: 1rem;
    opacity: 0.9;
}

.pricing-cta {
    text-align: center;
}

.pricing-guarantee {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #FFFFFF;
    opacity: 0.9;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: #F8F4F0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
}

.faq-question {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.125rem;
    color: #1A2B3C;
    margin-bottom: 1rem;
}

.faq-answer {
    color: #6B7A5A;
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    padding: 6rem 0;
    background: #1A2B3C;
}

.cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-box h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.5rem;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

.cta-box p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .experience-hero .hero-title {
        font-size: 2.5rem;
    }

    .experience-hero .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-marker {
        width: 40px;
        height: 40px;
    }

    .coaches-grid {
        display: flex;
        grid-template-columns: none;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
        padding-bottom: 1rem;
    }

    .coach-card {
        flex: 0 0 85%;
        scroll-snap-align: start;
    }

    .accommodation-options {
        display: flex;
        grid-template-columns: none;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
        padding-bottom: 1rem;
    }

    .accommodation-card {
        flex: 0 0 85%;
        scroll-snap-align: start;
    }

    .facility-large {
        grid-column: span 1;
    }

    .included-grid {
        grid-template-columns: 1fr;
    }

    .pricing-content {
        flex-direction: column;
        text-align: center;
    }

    .price-number {
        font-size: 3rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    /* Scrollbar Styling für horizontale Container */
    .coaches-grid::-webkit-scrollbar,
    .accommodation-options::-webkit-scrollbar {
        height: 8px;
    }

    .coaches-grid::-webkit-scrollbar-track,
    .accommodation-options::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .coaches-grid::-webkit-scrollbar-thumb,
    .accommodation-options::-webkit-scrollbar-thumb {
        background: #c86b4b;
        border-radius: 10px;
    }
}
