/* Styles spécifiques pour la page portes ouvertes */
        .hero-event {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            padding: 8rem 0 4rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-event::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('../../src/img/dessin3.JPG') center/cover;
            opacity: 0.1;
            z-index: 1;
        }

        .hero-event .container {
            position: relative;
            z-index: 2;
        }

        .hero-event h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .event-date {
            font-size: 1.5rem;
            font-weight: 300;
            margin-bottom: 1rem;
            opacity: 0.9;
        }

        .event-subtitle {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }

        /* Timeline styles */
        .timeline-section {
            padding: 4rem 0;
        }

        .timeline {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            padding: 2rem 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
            transform: translateX(-50%);
        }

        .timeline-item {
            position: relative;
            margin: 3rem 0;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .timeline-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .timeline-item:nth-child(odd) .timeline-content {
            margin-right: 50%;
            padding-right: 3rem;
            text-align: right;
        }

        .timeline-item:nth-child(even) .timeline-content {
            margin-left: 50%;
            padding-left: 3rem;
            text-align: left;
        }

        .timeline-item:nth-child(odd) .timeline-content ul li {
            padding-left: 0;
            padding-right: 1.5rem;
        }

        .timeline-item:nth-child(odd) .timeline-content ul li::before {
            left: auto;
            right: 0;
        }

        .timeline-time {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary-color);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
            z-index: 2;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .timeline-content {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
            border-left: 4px solid var(--accent-color);
            position: relative;
        }

        .timeline-item:nth-child(even) .timeline-content {
            border-left: none;
            border-right: 4px solid var(--accent-color);
        }

        .activity-type {
            display: inline-block;
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 500;
            margin-bottom: 1rem;
        }

        .activity-type.conference {
            background: rgba(72, 119, 144, 0.1);
            color: var(--primary-color);
        }

        .activity-type.atelier {
            background: rgba(157, 182, 162, 0.2);
            color: var(--secondary-color);
        }

        .activity-type.visite {
            background: rgba(255, 183, 77, 0.2);
            color: #d4951a;
        }

        .activity-type.pause {
            background: rgba(233, 150, 122, 0.2);
            color: #c8763e;
        }

        .activity-type.cloture {
            background: rgba(147, 112, 219, 0.2);
            color: #8a5fbf;
        }

        .timeline-content h3 {
            font-family: 'Playfair Display', serif;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
            font-size: 1.3rem;
        }

        .timeline-content .description {
            font-style: italic;
            color: var(--text-light);
            margin-bottom: 1rem;
        }

        .timeline-content ul {
            list-style: none;
            padding: 0;
            margin: 1rem 0;
        }

        .timeline-content ul li {
            margin: 0.5rem 0;
            padding-left: 1.5rem;
            position: relative;
        }

        .timeline-content ul li::before {
            content: '•';
            color: var(--accent-color);
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        .animator {
            color: var(--secondary-color);
            font-weight: 500;
            font-size: 0.9rem;
        }

        /* Section info pratiques */
        .info-pratiques {
            background: var(--background-light);
            padding: 3rem 0;
        }

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

        .info-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            text-align: center;
        }

        .info-card i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .info-card h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .cta-section {
            background: var(--primary-color);
            color: white;
            padding: 3rem 0;
            text-align: center;
        }

        .cta-section h2 {
            color: white;
            margin-bottom: 1rem;
        }

        .cta-section .cta-button {
            background: white;
            color: var(--primary-color);
            margin: 1rem;
        }

        .cta-section .cta-button:hover {
            background: var(--background-light);
            transform: translateY(-2px);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-event {
                padding: 6rem 0 3rem;
            }

            .hero-event h1 {
                font-size: 2.2rem;
                line-height: 1.2;
                margin-bottom: 1.5rem;
            }

            .event-date {
                font-size: 1.3rem;
                margin-bottom: 1.5rem;
            }

            .event-subtitle {
                font-size: 1.1rem;
                padding: 0 1rem;
            }

            .timeline-section {
                padding: 2rem 0;
            }

            .timeline {
                padding: 1rem 0;
                margin: 0 1rem;
            }

            .timeline::before {
                display: none;
            }

            .timeline-item {
                margin: 2rem 0;
            }

            .timeline-item:nth-child(odd) .timeline-content,
            .timeline-item:nth-child(even) .timeline-content {
                margin: 0;
                padding: 1.5rem;
                margin-left: 0;
                text-align: left;
                border-left: 3px solid var(--accent-color);
                border-right: none;
            }

            .timeline-time {
                position: relative;
                left: auto;
                transform: none;
                font-size: 0.8rem;
                padding: 0.4rem 0.8rem;
                top: auto;
                margin-bottom: 1rem;
                display: inline-block;
            }

            .timeline-content h3 {
                font-size: 1.1rem;
                margin-bottom: 0.8rem;
            }

            .activity-type {
                font-size: 0.75rem;
                padding: 0.25rem 0.6rem;
                margin-bottom: 0.8rem;
            }

            .timeline-content .description {
                font-size: 0.9rem;
                margin-bottom: 0.8rem;
            }

            .timeline-content ul li {
                font-size: 0.9rem;
                padding-left: 1.2rem;
                margin: 0.4rem 0;
            }

            .animator {
                font-size: 0.85rem;
            }

            .info-pratiques {
                padding: 2rem 0;
            }

            .info-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                margin-top: 1.5rem;
                padding: 0 1rem;
            }

            .info-card {
                padding: 1.5rem;
            }

            .info-card i {
                font-size: 2rem;
            }

            .info-card h3 {
                font-size: 1.1rem;
            }

            .info-card p {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .hero-event {
                padding: 5rem 0 2rem;
            }

            .hero-event h1 {
                font-size: 1.8rem;
            }

            .event-date {
                font-size: 1.1rem;
            }

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

            .timeline {
                margin: 0 0.5rem;
            }

            .timeline-item:nth-child(odd) .timeline-content,
            .timeline-item:nth-child(even) .timeline-content {
                margin-left: 0;
                padding: 1.2rem;
            }

            .timeline-time {
                font-size: 0.75rem;
                padding: 0.3rem 0.6rem;
            }

            .timeline-content h3 {
                font-size: 1rem;
            }

            .info-grid {
                padding: 0 0.5rem;
            }

            .info-card {
                padding: 1.2rem;
            }
        }

        /* Animation d'entrée */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }