        :root {
            --primary-blue: #1a4b8c;
            --primary-purple: #6b4799;
            --accent-magenta: #d64a7b;
            --accent-yellow: #f4c542;
            --accent-cyan: #4ecdc4;
            --accent-orange: #e85a3c;
            --dark: #0f1419;
            --dark-soft: #1a1f2e;
            --light: #ffffff;
            --light-soft: #f8f9fa;
            --text-muted: #6b7280;
            
            --gradient-hero: linear-gradient(135deg, 
                #1a4b8c 0%, 
                #6b4799 30%, 
                #d64a7b 60%, 
                #e85a3c 80%, 
                #f4c542 100%);
            
            --gradient-card: linear-gradient(145deg, 
                rgba(26, 75, 140, 0.1) 0%, 
                rgba(107, 71, 153, 0.1) 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Outfit', sans-serif;
            background: var(--light);
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1rem 2rem;
            transition: all 0.4s ease;
            background: transparent;
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        }

        .navbar-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* LOGO STYLES */
        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--light);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .navbar.scrolled .logo {
            background: var(--gradient-hero);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent;
        }

        .logo span {
            font-weight: 400;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--light);
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .navbar.scrolled .nav-links a {
            color: var(--dark);
        }

        .navbar.scrolled .nav-links a:hover {
            background: var(--gradient-hero);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-magenta);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-toggle span {
            width: 28px;
            height: 3px;
            background: var(--light);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .navbar.scrolled .mobile-toggle span {
            background: var(--dark);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background: var(--gradient-hero);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(78, 205, 196, 0.4) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(244, 197, 66, 0.4) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(196, 60, 142, 0.3) 0%, transparent 40%);
            animation: heroGlow 8s ease-in-out infinite alternate;
        }

        @keyframes heroGlow {
            0% { opacity: 0.7; transform: scale(1); }
            100% { opacity: 1; transform: scale(1.1); }
        }

        .hero-content {
            text-align: center;
            z-index: 10;
            padding: 2rem;
            max-width: 900px;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            padding: 0.6rem 1.5rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--light);
            margin-bottom: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
            animation: fadeInDown 0.8s ease-out;
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(3.5rem, 10vw, 8rem);
            font-weight: 800;
            color: var(--light);
            line-height: 1;
            margin-bottom: 1rem;
            animation: fadeInUp 1s ease-out 0.2s both;
            text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }

        .hero-title span {
            display: block;
            font-size: 0.4em;
            font-weight: 400;
            letter-spacing: 0.3em;
            margin-top: 0.5rem;
            opacity: 0.9;
            text-transform: uppercase;
        }

        .hero-subtitle {
            font-size: clamp(1.1rem, 2.5vw, 1.4rem);
            color: var(--light);
            margin-bottom: 2.5rem;
            opacity: 0.95;
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        .hero-date {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 700;
            color: var(--accent-yellow);
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease-out 0.6s both;
            text-shadow: 0 2px 20px rgba(244, 197, 66, 0.5);
        }

        .hero-cta {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 0.8s both;
        }

        .btn {
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.4s ease;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: var(--light);
            color: var(--primary-purple);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--light);
            border: 2px solid rgba(255, 255, 255, 0.5);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--light);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
        }

        .scroll-indicator svg {
            width: 30px;
            height: 30px;
            color: var(--light);
            opacity: 0.7;
        }

        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(10px); }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Sections */
        section {
            padding: 6rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-badge {
            display: inline-block;
            background: var(--gradient-card);
            padding: 0.5rem 1.2rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--primary-purple);
            margin-bottom: 1rem;
            border: 1px solid rgba(107, 71, 153, 0.2);
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
        }

        /* About Section */
        .about {
            background: var(--light-soft);
        }

        .about-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            aspect-ratio: 4/5;
            box-shadow: 0 30px 60px rgba(45, 74, 158, 0.2);
        }

        .about-content h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 1.5rem;
        }

        .about-content p {
            color: var(--text-muted);
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 2.5rem;
        }

        .stat-item {
            text-align: center;
            padding: 1.5rem;
            background: var(--light);
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 800;
            background: var(--gradient-hero);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-top: 0.3rem;
        }

        /* Henri Portrait */
        .founder-section {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin: 2rem 0;
            padding: 1.5rem;
            background: linear-gradient(135deg, rgba(45, 74, 158, 0.08) 0%, rgba(107, 71, 153, 0.08) 100%);
            border-radius: 16px;
            border-left: 4px solid var(--accent-magenta);
        }

        .founder-image {
            flex-shrink: 0;
            width: 120px;
            height: 120px;
            border-radius: 50%;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(107, 71, 153, 0.25);
            border: 3px solid var(--light);
        }

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

        .founder-info h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 0.3rem;
        }

        .founder-info .founder-role {
            font-size: 0.9rem;
            color: var(--accent-magenta);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .founder-info p {
            font-size: 0.95rem;
            color: var(--text-muted);
            margin: 0;
            line-height: 1.5;
        }

        .photo-credit {
            font-size: 0.75rem;
            color: var(--text-muted);
            font-style: italic;
            margin-top: 0.5rem;
            opacity: 0.8;
        }

        @media (max-width: 600px) {
            .founder-section {
                flex-direction: column;
                text-align: center;
            }
            
            .founder-image {
                width: 100px;
                height: 100px;
            }
        }

        /* Programme Section */
        .programme {
            background: var(--dark);
            color: var(--light);
            position: relative;
            overflow: hidden;
        }

        .programme::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(107, 71, 153, 0.3) 0%, transparent 70%);
            border-radius: 50%;
        }

        .programme .section-title {
            color: var(--light);
        }

        .programme .section-badge {
            background: rgba(255, 255, 255, 0.1);
            color: var(--accent-yellow);
            border-color: rgba(244, 197, 66, 0.3);
        }

        .programme-grid {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .programme-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 24px;
            padding: 2.5rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s ease;
        }

        .programme-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .programme-day {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent-yellow);
            margin-bottom: 0.5rem;
        }

        .programme-date {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .programme-item {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
            align-items: flex-start;
        }

        .programme-time {
            font-weight: 600;
            color: var(--accent-cyan);
            min-width: 80px;
            font-size: 0.95rem;
        }

        .programme-event {
            color: rgba(255, 255, 255, 0.9);
        }

        .programme-event strong {
            display: block;
            margin-bottom: 0.3rem;
        }

        .programme-event span {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
        }

        /* Lieu Section */
        .lieu {
            background: var(--light);
        }

        .lieu-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .lieu-info h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 1.5rem;
        }

        .lieu-details {
            margin-top: 2rem;
        }

        .lieu-item {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
            align-items: flex-start;
        }

        .lieu-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-card);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .lieu-icon svg {
            width: 24px;
            height: 24px;
            color: var(--primary-purple);
        }

        .lieu-text h4 {
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 0.3rem;
        }

        .lieu-text p {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        .lieu-map {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
            aspect-ratio: 1;
            background: var(--gradient-card);
        }

        .lieu-map iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Partners Section */
        .partners {
            background: var(--light-soft);
        }

        .partners-grid {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            align-items: center;
            justify-items: center;
        }

        .partner-item svg,
        .partner-item img {
            max-width: 180px;
            max-height: 80px;
            width: 100%;
            height: auto;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
            object-fit: contain;
        }

        .partner-item svg:hover,
        .partner-item img:hover {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.05);
        }

        /* Contact Section */
        .contact {
            background: var(--light-soft);
            color: var(--dark);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .contact-content {
            position: relative;
            z-index: 10;
            max-width: 900px;
            margin: 0 auto;
        }

        .contact .section-badge {
            background: var(--gradient-card);
            color: var(--primary-purple);
            border: 1px solid rgba(107, 71, 153, 0.2);
        }

        .contact .section-title {
            color: var(--dark);
        }

        .contact .section-subtitle {
            color: var(--text-muted);
        }

        .contact-cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .contact-card {
            background: var(--light);
            padding: 2rem;
            border-radius: 20px;
            border: 1px solid rgba(0, 0, 0, 0.08);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .contact-card svg {
            width: 40px;
            height: 40px;
            margin-bottom: 1rem;
            color: var(--accent-magenta);
        }

        .contact-card h4 {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--dark);
        }

        .contact-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        .contact-card a {
            color: var(--primary-purple);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-card a:hover {
            color: var(--accent-magenta);
        }


        /* Artistes Section */
        .artistes {
            padding: 6rem 2rem 10rem 2rem;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
            overflow: visible;
            margin-bottom: 2rem;
        }

        .artistes .section-title {
            color: var(--dark);
        }

        .artistes .section-subtitle {
            color: var(--text-muted);
            margin-bottom: 2rem;
        }

        /* Statistiques */
        .artistes-stats {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 2.5rem;
            flex-wrap: wrap;
        }

        .stat-category {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.3rem;
            padding: 1rem 1.5rem;
            background: var(--light);
            border-radius: 12px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            min-width: 110px;
        }

        .stat-category:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(107, 71, 153, 0.15);
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            font-family: 'Playfair Display', serif;
            color: var(--primary-purple);
            line-height: 1;
        }

        .stat-label {
            font-size: 0.75rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        /* Grid artistes */
        .artistes-grid {
            max-width: 1400px;
            margin: 3rem auto 0;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            padding-bottom: 3rem;
        }

        /* Carte artiste */
        .artiste-item {
            background: transparent;
            padding: 0;
            border-radius: 20px;
            overflow: visible;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            cursor: pointer;
            perspective: 1000px;
            height: 320px;
        }

        /* Structure flip */
        .artiste-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: center;
            transition: transform 0.6s;
            transform-style: preserve-3d;
        }

        .artiste-item.flipped .artiste-card-inner {
            transform: rotateY(180deg);
        }

        /* Faces de la carte */
        .artiste-card-front,
        .artiste-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
            background: var(--light);
        }

        .artiste-card-front {
            border: 2px solid transparent;
            transition: border-color 0.3s ease;
        }

        .artiste-card-back {
            transform: rotateY(180deg);
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        /* Icône de spécialité */
        .specialty-icon {
            position: absolute;
            top: 12px;
            right: 12px;
            width: 32px;
            height: 32px;
            z-index: 10;
            opacity: 0.9;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
            transition: all 0.3s ease;
        }

        .artiste-item:hover .specialty-icon {
            opacity: 1;
            transform: scale(1.1) rotate(5deg);
        }

        /* Couleurs des icônes selon spécialité */
        .artiste-item[data-specialty="peinture"] .specialty-icon {
            color: #f4c542;
        }

        .artiste-item[data-specialty="sculpture"] .specialty-icon {
            color: #6b4799;
        }

        .artiste-item[data-specialty="photo"] .specialty-icon {
            color: #00b4d8;
        }

        .artiste-item[data-specialty="mixed"] .specialty-icon {
            color: #d64a7b;
        }

        /* Bordures selon spécialité */
        .artiste-item[data-specialty="peinture"] .artiste-card-front {
            border-left: 4px solid #f4c542;
        }

        .artiste-item[data-specialty="sculpture"] .artiste-card-front {
            border-left: 4px solid #6b4799;
        }

        .artiste-item[data-specialty="photo"] .artiste-card-front {
            border-left: 4px solid #00b4d8;
        }

        .artiste-item[data-specialty="mixed"] .artiste-card-front {
            border-left: 4px solid #d64a7b;
        }

        /* Verso de la carte */
        .artiste-back-content {
            color: white;
            text-align: center;
        }

        .artiste-back-content h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: white;
        }

        .artiste-back-specialty {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            opacity: 0.9;
            margin-bottom: 1.5rem;
        }

        .artiste-back-icon {
            margin-top: 1rem;
        }

        .artiste-back-icon svg {
            width: 48px;
            height: 48px;
            color: rgba(255, 255, 255, 0.8);
        }

        /* Avatar avec initiales */
        .artiste-avatar {
            width: 100%;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            font-weight: 700;
            color: white;
            font-family: 'Playfair Display', serif;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
            position: relative;
            overflow: hidden;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .artiste-avatar::before {
            content: attr(data-initials);
            position: relative;
            z-index: 2;
        }

        .artiste-avatar::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
            transform: translate(-50%, -50%);
        }

        /* Info artiste */
        .artiste-info {
            padding: 1.5rem;
        }

        .artiste-specialty {
            display: inline-block;
            background: linear-gradient(135deg, rgba(26, 75, 140, 0.1) 0%, rgba(107, 71, 153, 0.1) 100%);
            color: var(--primary-purple);
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            margin: 0;
            border: 1px solid rgba(107, 71, 153, 0.2);
        }

        .artiste-item h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.25rem;
            color: var(--dark);
            margin: 0 0 0.5rem 0;
            font-weight: 700;
            line-height: 1.3;
        }

        @media (max-width: 1024px) {
            .artistes-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 1.2rem;
            }
        }

        @media (max-width: 768px) {
            .artistes {
                padding: 4rem 1.5rem 8rem 1.5rem;
            }

            .artistes-stats {
                gap: 0.8rem;
                margin-top: 1.5rem;
            }

            .stat-category {
                min-width: 85px;
                padding: 0.7rem 1rem;
            }

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

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

            .artistes-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.9rem;
                padding-bottom: 2rem;
            }

            .artiste-item {
                border-radius: 16px;
                height: 280px;
            }

            .artiste-card-front,
            .artiste-card-back {
                border-radius: 16px;
            }

            .specialty-icon {
                width: 26px;
                height: 26px;
                top: 10px;
                right: 10px;
            }

            .artiste-avatar {
                height: 80px;
                font-size: 1.8rem;
            }

            .artiste-info {
                padding: 1rem;
            }

            .artiste-item h4 {
                font-size: 1rem;
                margin-bottom: 0.4rem;
            }

            .artiste-specialty {
                font-size: 0.6rem;
                padding: 0.25rem 0.6rem;
                letter-spacing: 0.5px;
            }

            .artiste-back-content h4 {
                font-size: 1.2rem;
            }

            .artiste-back-specialty {
                font-size: 0.75rem;
            }

            .artiste-back-icon svg {
                width: 36px;
                height: 36px;
            }
        }

        @media (max-width: 480px) {
            .artistes {
                padding: 3rem 1rem 7rem 1rem;
            }

            .artistes-stats {
                gap: 0.6rem;
                margin-top: 1.2rem;
            }

            .stat-category {
                min-width: 75px;
                padding: 0.6rem 0.8rem;
            }

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

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

            .artistes-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.7rem;
                padding-bottom: 2rem;
            }

            .artiste-item {
                border-radius: 14px;
                height: 250px;
            }

            .artiste-card-front,
            .artiste-card-back {
                border-radius: 14px;
            }

            .specialty-icon {
                width: 22px;
                height: 22px;
                top: 8px;
                right: 8px;
            }

            .artiste-avatar {
                height: 70px;
                font-size: 1.6rem;
            }

            .artiste-info {
                padding: 0.8rem;
            }

            .artiste-item h4 {
                font-size: 0.95rem;
                margin-bottom: 0.35rem;
                line-height: 1.2;
            }

            .artiste-specialty {
                font-size: 0.55rem;
                padding: 0.2rem 0.5rem;
                letter-spacing: 0.3px;
            }

            .artiste-back-content {
                padding: 1rem;
            }

            .artiste-back-content h4 {
                font-size: 1rem;
                margin-bottom: 0.5rem;
            }

            .artiste-back-specialty {
                font-size: 0.65rem;
                letter-spacing: 1px;
                margin-bottom: 1rem;
            }

            .artiste-back-icon svg {
                width: 28px;
                height: 28px;
            }
        }
        /* Footer */
        footer {
            background: linear-gradient(135deg, 
                #1a4b8c 0%, 
                #6b4799 30%, 
                #d64a7b 60%, 
                #e85a3c 80%, 
                #f4c542 100%);
            color: var(--light);
            padding: 3rem 2rem;
            text-align: center;
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(78, 205, 196, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(244, 197, 66, 0.3) 0%, transparent 50%);
            pointer-events: none;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 800;
            color: var(--light);
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            margin-bottom: 1rem;
        }

        .footer-text {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 0.3rem 0.6rem;
            border-radius: 6px;
        }

        .footer-links a:hover {
            background: rgba(255, 255, 255, 0.2);
            color: var(--light);
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.3);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-hero);
            z-index: 999;
            padding: 6rem 2rem 2rem;
            transform: translateX(100%);
            transition: transform 0.4s ease;
        }

        .mobile-menu.active {
            transform: translateX(0);
        }

        .mobile-menu-links {
            list-style: none;
            text-align: center;
        }

        .mobile-menu-links a {
            display: block;
            padding: 1.5rem;
            color: var(--light);
            text-decoration: none;
            font-size: 1.3rem;
            font-weight: 500;
            transition: all 0.3s ease;
            border-radius: 12px;
        }

        .mobile-menu-links a:hover {
            background: rgba(255, 255, 255, 0.2);
            color: var(--accent-yellow);
        }

        .mobile-menu-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: none;
            border: none;
            color: var(--light);
            font-size: 2rem;
            cursor: pointer;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .about-grid,
            .lieu-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .about-image {
                max-width: 400px;
                margin: 0 auto;
            }

            .lieu-map {
                aspect-ratio: 16/9;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-toggle {
                display: flex;
            }

            .mobile-menu {
                display: block;
            }

            .hero-cta {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 280px;
                text-align: center;
            }

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

            .about-stats {
                grid-template-columns: repeat(3, 1fr);
                gap: 1rem;
            }

            .stat-item {
                padding: 1rem;
            }

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

            .contact-cards {
                grid-template-columns: 1fr;
            }

            section {
                padding: 4rem 1.5rem;
                overflow: visible;
            }
        }

        @media (max-width: 480px) {
            .about-stats {
                grid-template-columns: 1fr;
            }

            .hero-title {
                font-size: 3rem;
            }

            .hero-date {
                font-size: 1.8rem;
            }
        }

        /* Back to top button */
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: var(--gradient-hero);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light);
            text-decoration: none;
            box-shadow: 0 10px 30px rgba(107, 71, 153, 0.4);
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            z-index: 100;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(107, 71, 153, 0.5);
        }

        /* ========== COUNTDOWN ========== */
        .countdown-container {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin: 2rem 0;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 0.5s both;
        }

        .countdown-item {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 16px;
            padding: 1.2rem 1.5rem;
            min-width: 90px;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .countdown-item:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.2);
        }

        .countdown-number {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent-yellow);
            line-height: 1;
            text-shadow: 0 2px 10px rgba(244, 197, 66, 0.5);
        }

        .countdown-label {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.9);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 0.5rem;
        }

        .countdown-ended {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            color: var(--accent-yellow);
            text-shadow: 0 2px 20px rgba(244, 197, 66, 0.5);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.8; transform: scale(1.02); }
        }

        /* ========== ACTION BUTTONS (Calendar & Share) ========== */
        .action-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 1.5rem;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 0.9s both;
        }

        .action-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

        .action-btn svg {
            width: 18px;
            height: 18px;
        }

        .btn-calendar {
            background: rgba(255, 255, 255, 0.9);
            color: var(--primary-purple);
        }

        .btn-calendar:hover {
            background: var(--light);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .btn-share {
            background: rgba(255, 255, 255, 0.2);
            color: var(--light);
            border: 1px solid rgba(255, 255, 255, 0.4);
        }

        .btn-share:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
        }

        /* Calendar dropdown */
        .calendar-dropdown {
            position: relative;
            display: inline-block;
        }

        .calendar-options {
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: var(--light);
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            padding: 0.5rem;
            margin-bottom: 0.5rem;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            min-width: 200px;
            z-index: 100;
        }

        .calendar-dropdown:hover .calendar-options,
        .calendar-dropdown:focus-within .calendar-options {
            opacity: 1;
            visibility: visible;
        }

        .calendar-option {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1rem;
            color: var(--dark);
            text-decoration: none;
            border-radius: 8px;
            transition: background 0.2s ease;
            font-size: 0.9rem;
        }

        .calendar-option:hover {
            background: var(--light-soft);
        }

        .calendar-option svg {
            width: 20px;
            height: 20px;
        }

        .calendar-option.google svg { color: #4285F4; }
        .calendar-option.apple svg { color: #333; }
        .calendar-option.outlook svg { color: #0078D4; }
        .calendar-option.ics svg { color: var(--primary-purple); }

        /* Share dropdown */
        .share-dropdown {
            position: relative;
            display: inline-block;
        }

        .share-options {
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: var(--light);
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            padding: 0.5rem;
            margin-bottom: 0.5rem;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            min-width: 180px;
            z-index: 100;
        }

        .share-dropdown:hover .share-options,
        .share-dropdown:focus-within .share-options {
            opacity: 1;
            visibility: visible;
        }

        .share-option {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1rem;
            color: var(--dark);
            text-decoration: none;
            border-radius: 8px;
            transition: background 0.2s ease;
            font-size: 0.9rem;
            cursor: pointer;
            border: none;
            background: none;
            width: 100%;
        }

        .share-option:hover {
            background: var(--light-soft);
        }

        .share-option svg {
            width: 20px;
            height: 20px;
        }

        .share-option.facebook svg { color: #1877F2; }
        .share-option.twitter svg { color: #1DA1F2; }
        .share-option.whatsapp svg { color: #25D366; }
        .share-option.email svg { color: var(--accent-magenta); }
        .share-option.copy svg { color: var(--text-muted); }

        /* ========== GALLERY ========== */
        .gallery {
            background: var(--dark);
            overflow: hidden;
        }

        .gallery .section-badge {
            background: rgba(255, 255, 255, 0.1);
            color: var(--light);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .gallery .section-title {
            color: var(--light);
        }

        .gallery .section-subtitle {
            color: rgba(255, 255, 255, 0.7);
        }

        .gallery-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: repeat(2, 250px);
            gap: 1rem;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            cursor: pointer;
        }

        .gallery-item:nth-child(1) {
            grid-column: span 2;
            grid-row: span 2;
        }

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

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
            display: flex;
            align-items: flex-end;
            padding: 1.5rem;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-caption {
            color: var(--light);
        }

        .gallery-caption h4 {
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
        }

        .gallery-caption p {
            font-size: 0.85rem;
            opacity: 0.8;
        }

        /* Lightbox */
        .lightbox {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.95);
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .lightbox.active {
            opacity: 1;
            visibility: visible;
        }

        .lightbox-content {
            max-width: 90vw;
            max-height: 90vh;
            position: relative;
        }

        .lightbox-content img {
            max-width: 100%;
            max-height: 85vh;
            border-radius: 8px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .lightbox-close {
            position: absolute;
            top: -50px;
            right: 0;
            background: none;
            border: none;
            color: var(--light);
            font-size: 2rem;
            cursor: pointer;
            padding: 0.5rem;
            transition: transform 0.3s ease;
        }

        .lightbox-close:hover {
            transform: rotate(90deg);
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.1);
            border: none;
            color: var(--light);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .lightbox-nav:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .lightbox-prev { left: -70px; }
        .lightbox-next { right: -70px; }

        .lightbox-caption {
            text-align: center;
            color: var(--light);
            margin-top: 1rem;
            font-size: 1rem;
        }

        /* Toast notification */
        .toast {
            position: fixed;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            background: var(--dark);
            color: var(--light);
            padding: 1rem 2rem;
            border-radius: 50px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            z-index: 3000;
            opacity: 0;
            transition: all 0.4s ease;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .toast.show {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }

        .toast svg {
            width: 20px;
            height: 20px;
            color: var(--accent-cyan);
        }

        /* Responsive gallery */
        @media (max-width: 1024px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: repeat(3, 200px);
            }

            .gallery-item:nth-child(1) {
                grid-column: span 2;
                grid-row: span 1;
            }
        }

        @media (max-width: 768px) {
            .countdown-container {
                gap: 1rem;
            }

            .countdown-item {
                min-width: 70px;
                padding: 1rem;
            }

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

            .action-buttons {
                flex-direction: column;
                align-items: center;
            }

            .calendar-options,
            .share-options {
                position: fixed;
                bottom: auto;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                margin-bottom: 0;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
                grid-template-rows: auto;
            }

            .gallery-item,
            .gallery-item:nth-child(1) {
                grid-column: span 1;
                grid-row: span 1;
                height: 250px;
            }

            .lightbox-nav {
                display: none;
            }
        }

        /* Section Retour sur 2025 */
        .retour-2025 {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, #1a1f2e 0%, #0f1419 100%);
        }

        .retour-2025 .section-title {
            color: var(--light);
        }

        .retour-2025 .section-subtitle {
            color: rgba(255, 255, 255, 0.7);
        }

        .retour-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 2rem;
            margin-top: 3rem;
        }

        .retour-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s ease;
        }

        .retour-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent-magenta);
            box-shadow: 0 20px 40px rgba(196, 60, 142, 0.2);
        }

        .retour-card-header {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
            padding: 1rem 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .retour-card-header.flyer-header {
            background: linear-gradient(135deg, var(--accent-magenta) 0%, var(--accent-orange) 100%);
        }

        .retour-card-header svg {
            width: 24px;
            height: 24px;
            color: var(--light);
        }

        .retour-card-header span {
            color: var(--light);
            font-weight: 600;
            font-size: 1rem;
        }

        .retour-card-image {
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .retour-card-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

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

        .retour-card-body {
            padding: 1.5rem;
        }

        .retour-card-body h4 {
            color: var(--light);
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            font-family: 'Playfair Display', serif;
        }

        .retour-card-body p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .retour-card-badge {
            display: inline-block;
            background: var(--accent-cyan);
            color: var(--dark);
            padding: 0.25rem 0.75rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        @media (max-width: 1024px) {
            .retour-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .retour-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Animations au scroll */
        .scroll-animate {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .scroll-animate.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .scroll-animate-left {
            opacity: 0;
            transform: translateX(-40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .scroll-animate-left.animated {
            opacity: 1;
            transform: translateX(0);
        }

        .scroll-animate-right {
            opacity: 0;
            transform: translateX(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .scroll-animate-right.animated {
            opacity: 1;
            transform: translateX(0);
        }

        .scroll-animate-scale {
            opacity: 0;
            transform: scale(0.9);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .scroll-animate-scale.animated {
            opacity: 1;
            transform: scale(1);
        }

        /* Délais pour effet cascade */
        .delay-1 { transition-delay: 0.1s; }
        .delay-2 { transition-delay: 0.2s; }
        .delay-3 { transition-delay: 0.3s; }
        .delay-4 { transition-delay: 0.4s; }
