        /* (Tous les styles restent identiques, sauf pour la galerie) */
        body {
            font-family: "Space Mono";
            line-height: 24px;
            font-weight: 400;
            font-style: normal;
            font-size: 18px;
            margin: 0;
            padding: 0;
            color: #bbbbbb;
            background-color: #1f1f1f;
            overflow-x: hidden;
        }
        a {
            color: #929292;
            text-decoration: none;
        }
        a:hover {
            color: #ccc;
            text-decoration: none;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .spacer {
            height: 20px;
        }
        header {
            background-color: #1f1f1f;
            padding: 0;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            width: 100%;
        }
        .header-content {
            width: 100%;
            max-width: 1200px;
            margin: auto;
            padding: 20px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .header-logo img {
            height: 60px;
            width: auto;
        }
        .header-nav {
            display: flex;
            gap: 30px;
            margin-right: 0;
        }
        .header-nav a {
            color: #828282;
            text-decoration: none;
            font-size: 0.9em;
            transition: color 0.3s ease;
        }
        .header-nav a:hover {
            color: #ccc;
        }
        .intro-text {
            flex: 0 0 50%;
            max-width: 50%;
            padding: 0 20px 20px;
        }
        .image-bande {
            display: flex;
            justify-content: space-between;
            margin: 20px 0;
            gap: 20px;
        }
        .image-link {
            flex: 1;
            position: relative;
            text-decoration: none;
            color: inherit;
            aspect-ratio: 1/1;
            overflow: hidden;
            background-color: #fff;
        }
        .image-link img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }
        .image-link:hover img {
            transform: scale(1.05);
        }
        .image-caption {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.8);
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .image-link:hover .image-caption {
            opacity: 1;
        }
        .image-caption h3 {
            margin: 0 0 10px 0;
            font-size: 1.4em;
            font-weight: 700;
        }
        .image-caption p {
            margin: 0;
            font-size: 1em;
        }
        footer {
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #1f1f1f;
        }
        .footer-logo img {
            height: 40px;
            width: auto;
        }
        .footer-nav {
            display: flex;
            gap: 20px;
            margin-right: 20px;
            flex-wrap: wrap;
            justify-content: flex-end;
        }
        .footer-nav a {
            color: #828282;
            text-decoration: none;
            font-size: 0.8em;
        }
        .footer-nav a:hover {
            color: #ccc;
        }

        @keyframes float {
            0%   { opacity: 0; transform: scale(0.3) translateY(100px); }
            10%  { opacity: 1; transform: scale(1) translateY(50px); }
            50%  { opacity: 1; transform: scale(1.4) translateY(0px); }
            80%  { opacity: 0.5; transform: scale(1) translateY(-30px); }
            100% { opacity: 0; transform: scale(0.3) translateY(-50px); }
        }
        @media (max-width: 100vw) {
            .bulle {
                animation: float 4s ease-in-out infinite;
            }
        }

        /* Galerie horizontale */
        .gallery-container {
            width: 100%;
            max-width: none;
            margin: 0 auto;
            overflow-x: auto;
            overflow-y: hidden;
            scrollbar-width: none;
            -ms-overflow-style: none;
            cursor: grab;
            touch-action: pan-x;
            height: 85vh;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            background-color: #1f1f1f;
            padding: 0px 0;
            box-sizing: border-box;
            margin-bottom: 0;
            padding-top: 100px;
        }
        .gallery-container::-webkit-scrollbar {
            display: none;
        }
        .gallery {
            display: flex;
            flex-direction: row;
            height: 72vh;
            align-items: flex-start;
            flex-wrap: nowrap;
            padding: 0 50px;
            margin-top: 0;
        }
        .gallery img {
            max-height: 72vh;
            width: auto;
            object-fit: contain;
            flex-shrink: 0;
            pointer-events: auto;
            margin: 0 5px;
        }

        /* Adaptation pour les écrans courts (desktop et mobile horizontal) */
        @media (max-height: 700px) {
            .gallery {
                height: 63vh;
            }
            .gallery img {
                max-height: 54vh;
            }
        }

        /* Mobile horizontal spécifique */
        @media (max-width: 1024px) and (max-height: 700px) and (orientation: landscape) {
            .gallery {
                height: 54vh;
            }
            .gallery img {
                max-height: 45vh;
            }
        }

        @media (max-width: 768px) {
            .header-nav a {
                font-size: 0.8em;
            }
            .image-bande {
                flex-direction: column;
            }
            footer {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
            .gallery img {
                max-height: 54vh;
                margin: 0 5px;
            }
            .gallery {
                height: 63vh;
            }
            .intro-text {
                flex: 0 0 100%;
                max-width: 100%;
                padding: 0 20px 20px;
            }
        }

        /* Bouton burger (masqué par défaut sur desktop) */
        .burger-menu {
            display: none;
            flex-direction: column;
            justify-content: space-around;
            align-items: center;
            width: 30px;
            height: 25px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 101;
            margin-right: 50px;
        }

        .burger-bar {
            width: 24px;
            height: 3px;
            background-color: #828282;
            transition: all 0.3s ease;
            transform-origin: center;
        }

        /* Menu mobile (masqué par défaut) */
        .mobile-nav {
            display: none;
            flex-direction: column;
            position: fixed;
            top: 80px;
            left: 0;
            right: 0;
            background-color: #1f1f1f;
            padding: 20px;
            gap: 15px;
            z-index: 100;
            text-align: center;
        }

        .mobile-nav a {
            color: #828282;
            text-decoration: none;
            font-size: 1.2em;
            padding: 10px 20px;
            transition: color 0.3s ease;
        }

        .mobile-nav a:hover {
            color: #ccc;
        }

        /* Animation du bouton burger en croix */
        .burger-menu.open .burger-bar:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .burger-menu.open .burger-bar:nth-child(2) {
            opacity: 0;
        }

        .burger-menu.open .burger-bar:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        /* Afficher le bouton burger et masquer le menu classique sur mobile */
        @media (max-width: 768px) {
            .header-nav {
                display: none;
            }

            .burger-menu {
                display: flex;
            }

            .mobile-nav.active {
                display: flex;
            }
        }