/* ===== Schedule / Timeline ===== */
.schedule {
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e8ecf1;
}
.schedule .section-title i { color: #8b5cf6; }
.schedule .section-title::after { background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%); }
.schedule-day-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 20px 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.schedule-day-title:first-of-type { margin-top: 0; }
.schedule-day-title i {
    color: #8b5cf6;
    font-size: 0.5rem;
}
.timeline {
    position: relative;
    padding-left: 24px;
    margin-left: 6px;
    border-left: 2px solid #e8ecf1;
}
.timeline-item {
    position: relative;
    padding: 0 0 16px 16px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
    content: '';
    position: absolute;
    left: -29px;
    top: 4px;
    width: 10px;
    height: 10px;
    background: #197BFF;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px #197BFF;
}
.timeline-time {
    font-size: 0.8rem;
    font-weight: 700;
    color: #197BFF;
    margin-bottom: 2px;
}
.timeline-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a2e;
}
.timeline-desc {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 2px;
}

/* ===== Countdown ===== */
.countdown-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 18px 0 10px;
    padding: 16px 0;
}

.countdown-intro {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    opacity: 0.7;
}

.countdown-items {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 64px;
}

.countdown-value {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    color: #1a1a2e;
}

.countdown-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
    opacity: 0.6;
}

@media (max-width: 480px) {
    .countdown-container {
        gap: 10px;
    }
    .countdown-item {
        min-width: 50px;
    }
    .countdown-value {
        font-size: 1.5rem;
    }
}

/* ===== Section Titles ===== */
.section-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a2e;
    border-bottom: none;
    padding-bottom: 0;
    display: block;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #197BFF 0%, #0057d9 100%);
    border-radius: 2px;
    margin-top: 8px;
}

/* ===== Event Details ===== */
.event-details {
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 8px;
    border: 1px solid #e8ecf1;
}

.event-details p {
    font-size: 1rem;
    margin: 8px 0;
    color: #4b5563;
    line-height: 1.5;
}

.event-details p strong {
    color: #1a1a2e;
    font-weight: 600;
}

.event-details .detail-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 12px 0;
}

.event-details .detail-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #197BFF 0%, #0057d9 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.event-details .detail-content {
    flex: 1;
}

.event-details .detail-content .detail-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #9ca3af;
    margin-bottom: 2px;
}

.event-details .detail-content .detail-value {
    font-size: 1rem;
    color: #1a1a2e;
    font-weight: 500;
}

/* ===== View Tickets / CTA Button ===== */
.view-tickets {
    margin: 28px 0;
    text-align: center;
}

.view-tickets .btn {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    padding: 16px 48px;
    background: linear-gradient(135deg, #197BFF 0%, #0057d9 100%);
    color: #fff;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 16px rgba(25, 123, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
}

.view-tickets .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(25, 123, 255, 0.4);
}

.view-tickets .btn:active {
    transform: translateY(0);
}

.view-tickets .btn-grayish {
    background: #e5e7eb;
    color: #6b7280;
    box-shadow: none;
}

.ticket-price-range {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 8px;
}

/* ===== Action Button Group ===== */
.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0;
    justify-content: center;
}

/* ===== Action Buttons ===== */
.btn-action {
    font-family: 'Inter', sans-serif;
    background-color: transparent;
    border: 1.5px solid #197BFF;
    color: #197BFF;
    padding: 10px 22px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.25s ease;
}

.btn-action:hover {
    background-color: #197BFF;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(25, 123, 255, 0.25);
}

.btn-action-outline {
    background-color: transparent;
    border: 1.5px solid #197BFF;
    color: #197BFF;
    padding: 10px 22px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.25s ease;
}

.btn-action-outline:hover {
    background-color: #197BFF;
    color: white;
    transform: translateY(-2px);
}

/* ===== Inscription Actions Section ===== */
.inscription-actions {
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
    margin-top: 24px;
    border: 1px solid #e8ecf1;
    text-align: center;
}

/* ===== Organizer Info ===== */
.organizer-info {
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
    border-radius: 12px;
    padding: 24px;
    margin-top: 32px;
    border: 1px solid #e8ecf1;
}

.organizer-info .section-title::after {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.organizer-info p {
    margin: 6px 0;
    color: #4b5563;
    font-size: 0.95rem;
}

.organizer-info a {
    color: #197BFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.organizer-info a:hover {
    color: #0057d9;
}

/* ===== Map ===== */
.map-link {
    color: #197BFF;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 12px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.map-link:hover {
    color: #0057d9;
}

.map-container {
    display: none;
    width: 100%;
    height: 300px;
    margin-top: 16px;
    border-radius: 12px;
    overflow: hidden;
}

/* ===== Content Sections ===== */
.section h1 {
    font-size: 1.5rem;
    font-weight: 700;
}

.section h2 {
    font-size: 1.3rem;
    font-weight: 600;
}

.section h3 {
    font-size: 1.15rem;
    font-weight: 600;
}

.section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #374151;
}

/* ===== Downloads Section ===== */
.downloads ul {
    list-style: none;
    padding: 0;
}

.downloads li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.downloads li:last-child {
    border-bottom: none;
}

.downloads a {
    color: #197BFF;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
}

.downloads a::before {
    content: '\f019';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.85rem;
}

.downloads a:hover {
    color: #0057d9;
}

/* ===== Group Section ===== */
.group-section {
    margin-top: 24px;
    padding: 20px;
    background-color: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e8ecf1;
}

.group-section p {
    margin: 5px 0;
}

/* ===== Notifications ===== */
.notyf__toast {
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    border-radius: 12px;
}

/* ===== Event Navigation Menu ===== */
.event-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
    padding: 12px 0;
    margin-bottom: 8px;
    border-bottom: 1px solid #e8ecf1;
}

.event-nav a {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #4b5563;
    text-decoration: none;
    padding: 6px 16px;
    border-radius: 50px;
    transition: all 0.2s ease;
}

.event-nav a:hover {
    background-color: #f3f4f6;
    color: #197BFF;
}

/* ===== Custom Section ===== */
.custom-section {
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e8ecf1;
}

/* ===== Kit Delivery Section ===== */
.kit-delivery {
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e8ecf1;
}

.kit-delivery .section-title i {
    color: #f59e0b;
}

/* ===== Route Map Section ===== */
.route-map {
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e8ecf1;
}

.route-map-img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid #e8ecf1;
}

.route-map .section-title i {
    color: #10b981;
}

/* ===== FAQ Section ===== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: #f8fafc;
    border: 1px solid #e8ecf1;
    border-radius: 12px;
    overflow: hidden;
    outline: none;
}

.faq-item:focus-within,
.faq-question:focus,
.faq-question:active,
.faq-question:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    transition: all 0.2s ease;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: none;
    border: none;
    outline: none;
    box-shadow: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a2e;
    text-align: left;
    gap: 12px;
}

.faq-question:hover {
    background: #f1f5f9;
}

.faq-icon {
    font-size: 0.75rem;
    color: #9ca3af;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 20px 16px;
}

.faq-answer p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #4b5563;
    margin: 0;
}

/* ===== Elevation Profile ===== */
.elevation-profile {
    background: #f8fafc;
    border-radius: 12px;
    padding: 16px;
    margin-top: 16px;
    border: 1px solid #e8ecf1;
}

.elevation-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #9ca3af;
    margin-bottom: 8px;
}

/* ===== Event Tag ===== */
.event-tag-container {
    text-align: center;
    margin-bottom: 8px;
}

.event-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #ff6b35;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
}

.event-tag i {
    font-size: 0.7rem;
}

/* ===== Event Subtitle ===== */
.event-subtitle {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #6b7280;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

/* ===== Stats Bar ===== */
.stats-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    padding: 16px 0;
    margin-bottom: 12px;
    border-top: 1px solid #e8ecf1;
    border-bottom: 1px solid #e8ecf1;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-value {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #197BFF;
    line-height: 1.2;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #9ca3af;
    margin-top: 2px;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.25rem !important;
    }

    .section h1 { font-size: 1.3rem; }
    .section h2 { font-size: 1.1rem; }
    .section h3 { font-size: 1rem; }
    .section p { font-size: 0.9rem; line-height: 1.6; }

    .event-details {
        padding: 16px;
        border-radius: 10px;
        margin-left: 0;
        margin-right: 0;
    }

    .event-details .detail-row {
        gap: 10px;
        margin: 10px 0;
    }

    .event-details .detail-icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        font-size: 0.75rem;
    }

    .event-details .detail-content .detail-label {
        font-size: 0.7rem;
    }

    .event-details .detail-content .detail-value {
        font-size: 0.9rem;
    }

    .view-tickets {
        margin: 20px 0;
    }

    .view-tickets .btn {
        font-size: 1.05rem;
        padding: 14px 36px;
        width: 100%;
    }

    .btn-group {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-grayish {
        text-align: center;
        padding: 10px 16px;
    }

    .btn-action, .btn-action-outline {
        text-align: center;
        width: 100%;
    }

    .inscription-actions {
        padding: 16px;
        border-radius: 10px;
    }

    .organizer-info {
        padding: 16px;
        border-radius: 10px;
        margin-top: 24px;
    }

    .map-container {
        height: 220px;
        border-radius: 8px;
    }

    .downloads li {
        padding: 8px 0;
    }

    .downloads a {
        font-size: 0.9rem;
    }

    .event-nav {
        gap: 2px;
        padding: 8px 0;
    }

    .event-nav a {
        font-size: 0.8rem;
        padding: 5px 12px;
    }

    .kit-delivery,
    .route-map {
        padding: 16px;
        border-radius: 10px;
    }

    .route-map-img {
        max-height: 300px;
        border-radius: 8px;
    }

    .faq-question {
        font-size: 0.9rem;
        padding: 14px 16px;
    }

    .faq-item.active .faq-answer {
        padding: 0 16px 14px;
    }

    .faq-answer p {
        font-size: 0.85rem;
    }

    .event-tag {
        font-size: 0.7rem;
        padding: 5px 14px;
    }

    .event-subtitle {
        font-size: 0.85rem;
    }

    .stats-bar {
        gap: 16px;
        padding: 12px 0;
    }

    .stat-value {
        font-size: 1.25rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }
}
