/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 10 2026 | 12:24:07 */
/* ========================================
   TIMELINE DES ACTIVITÉS AIREXPO
   Style pour afficher le programme de la journée
   ======================================== */

.activity-timeline {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 2rem 1.5rem;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
}

.timeline-section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.timeline-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1a73e8 0%, #0d47a1 100%);
    border-radius: 2px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 1rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 144px;
    top: 12px;
    bottom: -2rem;
    width: 3px;
    background: linear-gradient(to bottom, #1a73e8 0%, #e0e0e0 100%);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-time {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a73e8;
    text-align: right;
    padding-top: 0.25rem;
    position: relative;
}

.timeline-time::after {
    content: '';
    position: absolute;
    right: -2.5rem;
    top: 12px;
    width: 16px;
    height: 16px;
    background: #1a73e8;
    border: 4px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 3px #1a73e8;
}

.timeline-content {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.timeline-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(26, 115, 232, 0.15);
    border-color: #1a73e8;
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.timeline-location {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.timeline-location::before {
    content: '📍';
    font-size: 1rem;
}

.timeline-description {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Badges d'activité */
.activity-badge {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-vip {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a;
}

.badge-demo {
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    color: white;
}

.badge-workshop {
    background: linear-gradient(135deg, #34A853 0%, #0F9D58 100%);
    color: white;
}

.badge-show {
    background: linear-gradient(135deg, #EA4335 0%, #C5221F 100%);
    color: white;
}

/* Légende améliorée pour aller avec la timeline */
.event-map-wrapper {
    margin: 2rem 0;
}

.event-map-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.map-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255,255,255,0.9);
    border-radius: 12px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #333;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.legend-stands { background: #1a73e8; }
.legend-activities { background: #34A853; }
.legend-food { background: #FBBC04; }
.legend-services { background: #EA4335; }
.legend-parking { background: #9E9E9E; }
.legend-entry { background: #9C27B0; }

/* Responsive Mobile */
@media (max-width: 768px) {
    .timeline-item {
        grid-template-columns: 70px 1fr;
        gap: 1rem;
        padding-left: 0;
    }

    .timeline-item::before {
        left: 104px;
    }

    .timeline-time {
        font-size: 1.2rem;
    }

    .timeline-time::after {
        right: -1.75rem;
        width: 12px;
        height: 12px;
    }

    .timeline-content {
        padding: 1.25rem;
    }

    .timeline-title {
        font-size: 1.1rem;
    }

    .timeline-section-title {
        font-size: 1.5rem;
    }

    .activity-timeline {
        padding: 1.5rem 1rem;
        margin: 2rem 1rem;
    }
}


