
@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');



        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            height: 100vh;
            width: 100vw;
            overflow: hidden;
            position: relative;
            background-color: #0b1a2f;
        }

        /* --- CARROUSEL --- */
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center 30%;
            background-repeat: no-repeat;
            opacity: 0;
            transition: opacity 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            z-index: 0;
        }
        .slide.active {
            opacity: 1;
            z-index: 1;
        }
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 30%, rgba(0, 10, 25, 0.3) 0%, rgba(0, 5, 15, 0.7) 90%);
            z-index: 2;
            pointer-events: none;
        }
        

        /* --- CONTENEUR PRINCIPAL --- */
        .container {
            position: relative;
            z-index: 10;
            height: 100vh;
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 2rem 3.5rem 1.8rem 3.5rem;
            color: #fff;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(2px);
        }

        /* --- NAVIGATION (avec dropdown) --- */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.25rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
            padding-bottom: 1rem;
            flex-wrap: wrap;
        }

        .logo img {
            height: 52px;
            width: auto;
            border-radius: 2px;
            filter: drop-shadow(0 2px 6px #00000050);
            transition: transform 0.3s ease;
        }
        .logo img:hover {
            transform: scale(1.02);
        }

        .nav-links {
            display: flex;
            gap: 2.8rem;
            font-weight: 500;
            letter-spacing: 1.5px;
            font-size: 0.9rem;
            align-items: center;
        }

        .nav-links > a, .dropdown {
            color: white;
            text-decoration: none;
            padding: 0.4rem 0;
            border-bottom: 2px solid transparent;
            transition: 0.25s;
            opacity: 0.8;
            font-weight: 400;
        }

        .nav-links > a:hover, .nav-links > a.active,
        .dropdown:hover .dropbtn {
            opacity: 1;
            border-bottom-color: #d4af6c;
            transform: translateY(-1px);
        }

        .nav-links > a.active {
            font-weight: 600;
            color: #f5e9d8;
        }

        /* Style du dropdown */
        .dropdown {
            position: relative;
            display: inline-block;
        }

        .dropbtn {
            background: transparent;
            border: none;
            color: white;
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 1.5px;
            padding: 0.4rem 0;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 6px;
            opacity: 0.8;
            border-bottom: 2px solid transparent;
            transition: 0.25s;
        }

        .dropdown-content {
            position: absolute;
            top: 100%;
            left: -10px;
            background: rgba(2, 15, 30, 0.95);
            backdrop-filter: blur(12px);
            min-width: 200px;
            box-shadow: 0 20px 30px -10px black;
            border-radius: 0 0 8px 8px;
            border: 1px solid rgba(212, 175, 108, 0.3);
            border-top: 2px solid #d4af6c;
            padding: 0.8rem 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 100;
        }

        .dropdown:hover .dropdown-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-content a {
            color: rgba(255, 255, 255, 0.9);
            padding: 0.8rem 1.8rem;
            text-decoration: none;
            display: block;
            font-size: 0.9rem;
            font-weight: 400;
            letter-spacing: 1px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: 0.2s;
        }

        .dropdown-content a:last-child {
            border-bottom: none;
        }

        .dropdown-content a:hover {
            background-color: rgba(212, 175, 108, 0.15);
            color: #d4af6c;
            padding-left: 2.2rem;
        }

        .menu-toggle {
            display: none;
            font-size: 2rem;
            cursor: pointer;
            color: white;
            opacity: 0.9;
        }

        /* --- TITRE PRINCIPAL --- */
        .main-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            max-width: 1000px;
            margin-left: 5%;
            margin-top: -2vh;
        }

        h1.animate-title {
            font-size: 6.5rem;
            font-weight: 700;
            line-height: 1;
            letter-spacing: 8px;
            color: #fff;
            text-transform: uppercase;
            background: linear-gradient(135deg, #ffffff 0%, #e0d6c0 80%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.2rem;
            text-shadow: 0 5px 15px rgba(0,0,0,0.5);
            animation: fadeUp 1.4s ease-out;
        }

        .subtitle {
            font-size: 2rem;
            font-weight: 300;
            letter-spacing: 12px;
            margin-left: 10px;
            color: rgba(255, 255, 255, 0.9);
            text-transform: uppercase;
            margin-bottom: 2rem;
            animation: fadeUp 1.4s 0.2s both;
            border-left: 3px solid #d4af6c;
            padding-left: 20px;
        }

        .cta-button {
            margin-top: 0.5rem;
            animation: fadeUp 1.4s 0.4s both;
        }

        .btn {
            display: inline-block;
            background: transparent;
            border: 2px solid #d4af6c;
            color: white;
            padding: 1rem 3.5rem;
            font-weight: 600;
            letter-spacing: 4px;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.4s ease;
            backdrop-filter: blur(4px);
            background-color: rgba(0, 0, 0, 0.2);
            border-radius: 40px;
            box-shadow: 0 8px 20px -8px rgba(0,0,0,0.5);
        }

        .btn:hover {
            background-color: #d4af6c;
            color: #0a1c2f;
            border-color: #d4af6c;
            transform: scale(1.05);
            box-shadow: 0 15px 30px -5px #00000080;
            letter-spacing: 5px;
        }

        /* --- FOOTER --- */
        .footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
            font-weight: 300;
            padding-top: 1rem;
            border-top: 1px solid rgba(255,255,255,0.15);
            color: rgba(255,255,255,0.8);
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-left p {
            font-style: italic;
            letter-spacing: 0.5px;
        }

        .footer-right {
            display: flex;
            gap: 1.8rem;
        }
        .footer-right a {
            color: white;
            font-size: 1.3rem;
            opacity: 0.7;
            transition: 0.2s;
            text-decoration: none;
        }
        .footer-right a:hover {
            opacity: 1;
            transform: translateY(-3px);
            color: #d4af6c;
        }

        
       /* --- INDICATEURS --- */
        .slider-indicators {
            position: absolute;
            bottom: 6rem;  /* Ajustez cette valeur selon vos besoins */
            right: 3.5rem;
            z-index: 20;
            display: flex;
            gap: 1rem;
        }
                .indicator {
            width: 50px;
            height: 3px;
            background-color: rgba(255,255,255,0.35);
            border-radius: 0;
            cursor: pointer;
            transition: 0.3s;
            box-shadow: 0 0 8px black;
        }
        .indicator.active {
            background-color: #d4af6c;
            width: 70px;
            background-color: #f5d79c;
            box-shadow: 0 0 12px #e0b156;
        }

        @keyframes fadeUp {
            0% { opacity: 0; transform: translateY(40px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        /* --- RESPONSIVE (gestion du dropdown sur mobile) --- */
        @media (max-width: 900px) {
            .container {
                padding: 1.5rem 1.8rem 1.2rem;
            }
            h1.animate-title {
                font-size: 4.2rem;
                letter-spacing: 5px;
            }
            .subtitle {
                font-size: 1.5rem;
                letter-spacing: 7px;
            }
            .nav-links {
                gap: 1.5rem;
                font-size: 0.8rem;
            }
        }

        @media (max-width: 700px) {
            .menu-toggle {
                display: block;
            }
            .nav-links {
                position: absolute;
                top: 90px;
                left: 0;
                width: 100%;
                background: rgba(2, 15, 30, 0.98);
                backdrop-filter: blur(12px);
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                gap: 1.8rem;
                border-bottom: 1px solid #d4af6c;
                box-shadow: 0 20px 30px -10px black;
                transform: translateY(-150%);
                opacity: 0;
                transition: 0.4s ease;
                pointer-events: none;
                z-index: 25;
            }
            .nav-links.active {
                transform: translateY(0);
                opacity: 1;
                pointer-events: all;
            }
            
            /* Adaptation du dropdown en version mobile */
            .dropdown {
                width: 100%;
                text-align: center;
            }
            .dropbtn {
                width: 100%;
                justify-content: center;
                font-size: 1.2rem;
                padding: 0.8rem 0;
            }
            .dropdown-content {
                position: static;
                background: rgba(0, 0, 0, 0.3);
                border: none;
                border-top: 1px solid #d4af6c;
                border-bottom: 1px solid #d4af6c;
                border-radius: 0;
                margin-top: 0.5rem;
                opacity: 1;
                visibility: visible;
                transform: none;
                display: none; /* caché par défaut sur mobile */
                box-shadow: none;
                backdrop-filter: none;
            }
            .dropdown.active .dropdown-content {
                display: block; /* apparaît si on ajoute classe active au click (géré par JS) */
            }
            .dropdown-content a {
                text-align: center;
                padding: 1rem;
            }
            .dropdown-content a:hover {
                padding-left: 1rem; /* on garde le style centré */
            }
            
            .slider-indicators {
                right: 1.8rem;
                bottom: 2rem;
            }
            .indicator {
                width: 35px;
            }
            .indicator.active {
                width: 55px;
            }
        }

        @media (max-width: 480px) {
            h1.animate-title {
                font-size: 3.2rem;
                letter-spacing: 3px;
            }
            .subtitle {
                font-size: 1.2rem;
                letter-spacing: 5px;
                border-left-width: 2px;
            }
            .btn {
                padding: 0.8rem 2.2rem;
                letter-spacing: 3px;
            }
            .footer {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        @media (max-width: 700px) {
    .slider-indicators {
        right: 1.8rem;
        bottom: 6rem;  /* Ajusté pour mobile */
    }
    .indicator {
        width: 35px;
    }
    .indicator.active {
        width: 55px;
    }
}
        body::after {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJmIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iLjc0IiBudW1PY3RhdmVzPSIzIiAvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbHRlcj0idXJsKCNmKSIgb3BhY2l0eT0iMC4wMjUiIC8+PC9zdmc+');
            opacity: 0.2;
            pointer-events: none;
            z-index: 5;
        }
