/* Variables CSS pour cohérence */
:root {
    --primary-color: #dc3545;
    --secondary-color: #0d6efd;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --border-radius: 16px;
    --transition: all 0.3s ease;
}

/* Reset global pour éviter le débordement */
* {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

img, iframe, video {
    max-width: 100%;

}

/* Hero Section avec overlay */
.hero-section {
    position: relative;
    height: 50vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(33, 37, 41, 0.85) 100%);
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 0 4rem;
    width: 100%;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
    animation: fadeInUp 1s ease-out;
    color: white;
}

.hero-title .badge-cancelled {
    display: inline-block;
    background: #d32f2f;
    color: #fff;
    font-size: 0.4em;
    font-weight: 700;
    padding: 0.2em 0.6em;
    border-radius: 0.3em;
    vertical-align: middle;
    letter-spacing: 1px;
    text-shadow: none;
    margin-right: 0.5rem;
}

.hero-date {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-btn {
    padding: 0.8rem 2rem;
    border: 2px solid white;
    background: transparent;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.hero-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.hero-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.hero-btn.active:hover {
    background: #c82333;
    border-color: #c82333;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Info Banner */
.info-banner {
    background: #001a30;
    color: white;
    padding: 2.5rem 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
}

.info-top-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.info-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.info-detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-detail-icon {
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.15);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.info-detail-content {
    display: flex;
    flex-direction: column;
}

.info-detail-label {
    font-size: 0.85rem;
    opacity: 0.8;
    font-weight: 500;
}

.info-detail-value {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
}

.action-social-section {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.social-links-banner {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.social-btn-banner {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.3rem;
    color: white;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.social-btn-banner:hover {
    background: rgba(40, 45, 49, 0.8);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    color: white;
}

/* Section Description */
.description-section {
    padding: 4rem 2rem;
}

.description-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: start;
}

.description-container.no-description {
    grid-template-columns: 1fr;
    justify-items: center;
}

.content-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
    grid-column: 1 / -1;
}

.description-content {
    display: flex;
    flex-direction: column;
}

.description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 2rem;
}

.description p {
    margin-bottom: 1.5rem;
}

/* Publicité carrée */
.ad-square {
    position: sticky;
    top: 100px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #dee2e6;
    border-radius: 15px;
    padding: 0.2rem;
    min-height: 200px;
    max-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    min-width: 250px;
    max-width: 100%;
    overflow: hidden;
}

.ad-square .adsbygoogle {
    width: 100%;
    min-width: 250px;
    display: block;
    min-height: auto;
    max-height: 600px;
    overflow: hidden;
}

.ad-label {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(220, 53, 69, 0.9);
    color: white;
    padding: 5px 10px;
    font-size: 10px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 300;
    backdrop-filter: blur(4px);
}

.ad-placeholder {
    color: #6c757d;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Publicité horizontale */
.ad-horizontal-section {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.ad-horizontal {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #dee2e6;
    border-radius: 15px;
    padding: 0.2rem;
    min-height: 200px;
    max-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    width: 100%;
    min-width: 320px;
    overflow: hidden;
}

.ad-horizontal .adsbygoogle {
    width: 100%;
    min-width: 320px;
    display: block;
    min-height: 100px;
    max-height: 400px;
    overflow: hidden;
}

/* Boutons d'affiliation en ligne */
.affiliate-buttons-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
    justify-content: center;
}

.affiliate-btn-inline {
    background: linear-gradient(135deg, var(--primary-color), #c82333);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(220, 53, 69, 0.3);
    transition: var(--transition);
    text-transform: capitalize;
}

.affiliate-btn-inline:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.5);
    color: white;
}

/* Poster dans la section Map */
.poster-column-map {
    display: flex;
    flex-direction: column;
}

.poster-column-map h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.event-poster {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.event-poster:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

/* Map & Highlights Section */
.map-highlights-section {
    background: rgba(0, 26, 48, 0.05);
    padding: 4rem 2rem;
}

.map-highlights-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.map-highlights-container.no-poster {
    grid-template-columns: 1fr;
}

.map-column h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.map-embed-new {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}


/* Section Plateau */
.aircraft-section {
    background: var(--light-color);
    padding: 4rem 2rem;
}

.aircraft-container {
    max-width: 1400px;
    margin: 0 auto;
}

.aircraft-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-align: center;
}

.legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.badge-static {
    background: #001a30;
    color: white;
}

.badge-dynamic {
    background: linear-gradient(135deg, var(--primary-color), #c82333);
    color: white;
}

.aircraft-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.aircraft-card {
    position: relative;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: block;
}

.aircraft-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.aircraft-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.aircraft-card:hover .aircraft-image {
    transform: scale(1.1);
}

.aircraft-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(0);
    transition: var(--transition);
}



.aircraft-badges {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
}

.badge-type {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
}

.aircraft-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: white;
}

.aircraft-registration {
    font-size: 1rem;
    color: #ffa726;
    font-weight: 500;
}

/* Notice */
.notice {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    border-radius: 6px;
    color: #0c5460;
}

.notice i {
    font-size: 1.25rem;
}

/* CTA Section */
.cta-section {
    background: #001a30;
    padding: 5rem 2rem;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cta-btn {
    background: linear-gradient(135deg, var(--primary-color), #c82333);
    color: white;
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-block;
    box-shadow: 0 5px 20px rgba(220, 53, 69, 0.4);
    transition: var(--transition);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(220, 53, 69, 0.6);
    color: white;
}

/* Responsive */
@media (max-width: 1024px) {
    .aircraft-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 400px;
        height: 50vh;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-date {
        font-size: 1.5rem;
    }

    .hero-content {
        padding: 0 0 2rem;
    }

    .info-top-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .action-social-section {
        justify-content: center;
    }

    .social-links-banner {
        justify-content: center;
    }

    .info-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .description-section {
        padding: 2rem 1rem;
    }

    .description-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ad-square {
        position: relative;
        top: 0;
        max-width: 300px;
        max-height: 400px;
        margin: 0 auto;
        overflow: hidden;
    }

    .ad-square .adsbygoogle {
        max-height: 400px;
        overflow: hidden;
    }

    .affiliate-buttons-inline {
        flex-direction: row;
        justify-content: center;
    }

    .affiliate-btn-inline {
        flex: 0 1 auto;
    }

    .ad-horizontal-section {
        padding: 0 1rem;
        margin: 2rem auto;
    }

    .ad-horizontal {
        min-height: 150px;
        max-height: 300px;
        padding: 1.5rem;
        overflow: hidden;
    }

    .ad-horizontal .adsbygoogle {
        max-height: 300px;
        overflow: hidden;
    }

    .map-highlights-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .poster-column-map {
        max-width: 400px;
        margin: 0 auto;
    }

    .map-embed-new {
        height: 300px;
    }

    .aircraft-grid {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 3rem 2rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-subtitle {
        font-size: 1rem;
    }

    .cta-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .description-section,
    .map-highlights-section,
    .aircraft-section,
    .cta-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .description-container,
    .map-highlights-container,
    .aircraft-container {
        gap: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-date {
        font-size: 1.2rem;
    }

    .affiliate-btn-inline {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    .ad-square,
    .ad-horizontal {
        min-width: 280px;
        max-height: 350px;
        overflow: hidden;
    }

    .ad-square .adsbygoogle,
    .ad-horizontal .adsbygoogle {
        min-width: 240px;
        max-height: 350px;
        overflow: hidden;
    }
}

/* ===============================================
   Hero Attendees Bubble (Section Participants)
   =============================================== */

.hero-attendees-bubble {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.hero-attendees-bubble:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.attendees-avatars-inline {
    display: flex;
    align-items: center;
    margin-right: -8px;
}

.attendee-avatar-small {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid white;
    margin-right: -8px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.attendee-avatar-small:hover {
    z-index: 2;
    transform: scale(1.1);
}

.attendee-avatar-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.attendee-more-small {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    border: 2px solid white;
    margin-right: 8px;
}

.attendees-count-text {
    color: white;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Responsive pour la bulle des participants */
@media (max-width: 768px) {
    .hero-buttons {
        justify-content: center;
    }

    .hero-attendees-bubble {
        width: 100%;
        justify-content: center;
    }

    .attendees-count-text {
        font-size: 13px;
    }

    .attendee-avatar-small {
        width: 28px;
        height: 28px;
    }

    .attendee-more-small {
        width: 28px;
        height: 28px;
        font-size: 10px;
    }
}

/* ============================================
   TOGGLE LINEUP / SCHEDULE + PROGRAMME DES VOLS
   ============================================ */

/* Section conteneur du toggle */
.lineup-toggle-section {
    background: var(--light-color);
    padding: 2.5rem 2rem 0;
    text-align: center;
}
.lineup-toggle-container {
    display: flex;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* Le switch-wrapper existe déjà (css/style.css) — surcharges pour labels
   de largeurs différentes ("Plateau" vs "Programme des vols").
   Le wrapper devient un flex 2 colonnes égales pour que le highlighter à 50 %
   corresponde exactement à la largeur de chaque label. */
.lineup-toggle-container .switch-wrapper {
    display: inline-flex;
    align-items: stretch;
}
.lineup-toggle-container .switch-wrapper label {
    flex: 1 1 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    padding: 0 10px;
    white-space: nowrap;
}

/* Quand le toggle est visible, la section aircraft ne doit pas doubler le padding-top */
.lineup-toggle-section + #plateau-content .aircraft-section {
    padding-top: 2rem;
}

/* --- SECTION SCHEDULE (programme des vols) --- */
.schedule-section {
    background: var(--light-color);
    padding: 2rem 2rem 4rem;
}
.schedule-container {
    max-width: 1200px;
    margin: 0 auto;
}
.schedule-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

/* Onglets sous-événements (multi-jours) */
.schedule-days-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 2.5rem;
}
.schedule-day-tab {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid #dee2e6;
    background: #fff;
    color: #495057;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s ease;
    text-transform: capitalize;
}
.schedule-day-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
}
.schedule-day-tab.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 14px rgba(193, 33, 51, .3);
}
.schedule-day-tab.active .schedule-day-count {
    color: #fff;
}
.schedule-day-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .25);
    color: inherit;
    font-size: 0.75rem;
    font-weight: 700;
}
.schedule-day-tab:not(.active) .schedule-day-count {
    background: #eef1f5;
    color: #6c757d;
}

/* Panneaux de jour (multi-jours : un seul visible à la fois) */
.schedule-day-panel {
    display: none;
    animation: schedule-fade-in .25s ease;
}
.schedule-day-panel.active {
    display: block;
}
@keyframes schedule-fade-in {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.schedule-day-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1.5rem;
    text-transform: capitalize;
    text-align: center;
}

/* Timeline verticale des créneaux */
.schedule-timeline {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 900px;
    margin: 0 auto;
}
.schedule-item {
    display: flex;
    gap: 20px;
    background: #fff;
    border: 1px solid #e9ecef;
    border-left: 4px solid var(--primary-color);
    border-radius: 12px;
    padding: 18px 22px;
    transition: box-shadow .2s ease, transform .2s ease;
}
.schedule-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
    transform: translateY(-2px);
}

.schedule-time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 90px;
    padding-right: 20px;
    border-right: 1px dashed #dee2e6;
}
.schedule-time {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.schedule-duration {
    margin-top: 4px;
    font-size: 0.75rem;
    color: #6c757d;
    font-weight: 500;
}

.schedule-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}
.schedule-item-title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: #212529;
}
.schedule-participants {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.schedule-participant {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #eef1f5;
    color: #495057;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all .15s ease;
}
.schedule-participant:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
    color: #212529;
}
.schedule-participant.type-avion {
    background: rgba(0, 26, 48, .08);
    color: #001a30;
}
.schedule-participant.type-equipe {
    background: rgba(193, 33, 51, .1);
    color: var(--primary-color);
}

/* État vide */
.schedule-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1.5rem;
    background: #fff;
    border: 1px dashed #dee2e6;
    border-radius: 12px;
    color: #6c757d;
    font-size: 0.95rem;
}

/* Utilitaire pour le toggle (déjà géré par js/airshow/airshow.js) */
.hide-tableau {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .lineup-toggle-section {
        padding: 2rem 1rem 0;
    }
    .lineup-toggle-container .switch-wrapper label {
        min-width: 130px;
        padding: 0 1rem;
        font-size: 0.9rem;
    }
    .schedule-section {
        padding: 2rem 1rem 3rem;
    }
    .schedule-container h2 {
        font-size: 1.75rem;
    }
    .schedule-day-tab {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    .schedule-item {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
    }
    .schedule-time-block {
        flex-direction: row;
        gap: 12px;
        min-width: 0;
        padding-right: 0;
        border-right: none;
        padding-bottom: 12px;
        border-bottom: 1px dashed #dee2e6;
    }
    .schedule-time {
        font-size: 1.3rem;
    }
}
