        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .adresse {
            position: fixed;
            z-index: 4;
            bottom: 100px;
            left: 50%;
            transform: translateX(-50%);
        }

        .pincha {
            position: fixed;
            left: 30px;
            top: 100px;
            max-width: 100px;
            transform: rotate(-20deg);
        }

        .pincha img {
            width: 100%;
        }

        .adresse a {
            text-decoration: none;
            font-size: 36px;
        }

        .adresse a:hover {
            color: #ff6600
        }

        body {
            overflow-x: hidden;
            transition: background-color 0.5s ease;
        }

        /* Bouton hamburger */
        .menu-container {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1000;
        }

        .drapeau {
            position: fixed;
            top: 20px;
            left: 20px;
            font-size: 34px;
            cursor: pointer;
            transition: all 1s ease;
            z-index: 12;
        }

        .drapeau a {
            text-decoration: none;
        }

        .drapeau:hover {
            transform: scale(1.2);
            transition: all 1s ease;
        }

        .menu {
            background-color: transparent;
            border: none;
            cursor: pointer;
            display: flex;
            padding: 0;
            z-index: 1001;
            transition: transform 0.3s ease;
        }

        .menu:hover {
            transform: scale(1.05);
        }

        .line {
            fill: none;
            stroke: #ff6600;
            stroke-width: 6;
            transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
                stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
        }

        .line1 {
            stroke-dasharray: 60 207;
            stroke-width: 6;
        }

        .line2 {
            stroke-dasharray: 60 60;
            stroke-width: 6;
        }

        .line3 {
            stroke-dasharray: 60 207;
            stroke-width: 6;
        }

        .opened .line1 {
            stroke-dasharray: 90 207;
            stroke-dashoffset: -134;
            stroke-width: 6;
            stroke: white;
        }

        .opened .line2 {
            stroke-dasharray: 1 60;
            stroke-dashoffset: -30;
            stroke-width: 6;
            stroke: white;
        }

        .opened .line3 {
            stroke-dasharray: 90 207;
            stroke-dashoffset: -134;
            stroke-width: 6;
            stroke: white;
        }

        /* Menu pleine page */
        .fullpage-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #ff6600;
            display: flex;
            justify-content: center;
            align-items: center;
            transform: translateX(100%);
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 999;
            overflow-y: auto;
        }

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

        .menu-content {
            max-width: 1200px;
            width: 90%;
            padding: 40px;
            text-align: center;
        }


        .menu-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-bottom: 80px;
        }

        .menu-link {
            color: white;
            text-decoration: none;
            font-size: 1.8rem;
            padding: 15px 30px;
            position: relative;
            transition: color 0.3s ease;
            border-radius: 8px;
            overflow: hidden;
        }

        .menu-link:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #f8d30f;
            transform: translateX(-100%);
            transition: transform 0.4s ease;
            z-index: -1;
        }

        .menu-link:hover {
            color: #1a1a2e;
        }

        .menu-link:hover:before {
            transform: translateX(0);
        }


        .menu-social {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }

        .social-icon {
            color: white;
            font-size: 1.5rem;
            text-decoration: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .social-icon img {
            width: 100%;
        }

        .social-icon:hover {
            background-color: #f8d30f;
            transform: translateY(-5px);
        }

        /* Contenu principal */




        /* Animation d'apparition pour les liens du menu */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .menu-link {
            animation: fadeInUp 0.5s ease forwards;
            opacity: 0;
        }

        .menu-link:nth-child(1) {
            animation-delay: 0.1s;
        }

        .menu-link:nth-child(2) {
            animation-delay: 0.2s;
        }

        .menu-link:nth-child(3) {
            animation-delay: 0.3s;
        }

        .menu-link:nth-child(4) {
            animation-delay: 0.4s;
        }

        .menu-link:nth-child(5) {
            animation-delay: 0.5s;
        }

        /* Responsive */



      


        @media (max-width: 768px) {
            .pincha {
                position: fixed;
                left: 2%;
                top: 60px;
                max-width: 100px;
            }

            .pincha img {
                width: 60%;
            }

            .menu-link {
                font-size: 1.5rem;
                padding: 12px 20px;
            }

            h1 {
                font-size: 2.5rem;
            }




            .menu-links {
                flex-direction: column;
                align-items: center;
            }
        }