:root {
    --color-titre: #ffffff;
    --color-font: #ffffff;
    --back-color: #000000;
    --font-fam-one: "Rubik", sans-serif;
    --font-fam-two: "Cormorant Upright", serif;
    --url-img-profile: url("/imgprofile/profile.png");
    --url-img-contact: url("/imgcontact/illustration-contact.jpg");
    --color-button: #ffffff;
    --color-primaire: #ffffff;
    --red: #f43f5e;
    --back-folder: #ffffffa8;
    --before-color: #efefef;
    --green: #007bff;
    --bg-color: #000;
    --text-color: #ffffffe7;
    --c-cyan: #00ffe9;
    --c-purple: #cf7dff;
    --c-blue: #0047ff;

}

/* --- SÉLECTION NÉON PREMIUM --- */
.img-wrapper-portfolio {
    position: relative;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
}

.img-wrapper-portfolio.selected-neon {
    transform: scale(0.92);
    z-index: 10;
}

.img-wrapper-portfolio.selected-neon::before {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(45deg, var(--c-cyan), var(--c-purple), var(--c-cyan));
    background-size: 200% 200%;
    z-index: -1;
    border-radius: 15px;
    animation: neon-rotate 2s linear infinite;
    filter: blur(8px);
    opacity: 0.8;
}

.img-wrapper-portfolio.selected-neon::after {
    content: "";
    position: absolute;
    inset: 2px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    pointer-events: none;
    z-index: 2;
}

@keyframes neon-rotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.navy {
    position: fixed;
    top: 25px;
    /* Un peu plus d'espace en haut */
    left: 50%;
    transform: translateX(-50%);

    /* Taille maitrisée : ni trop large, ni trop haut */
    width: 90%;
    max-width: 500px;
    height: 60px;
    /* Plus fin que 70px pour l'élégance */

    border-radius: 100px;
    /* Forme de pilule parfaite */

    /* --- GLASSMORPHISM SUPRÊME --- */
    /* Fond très léger pour voir le fluide derrière */
    background: rgba(255, 255, 255, 0.03);

    /* Le flou qui rend tout lisible */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    /* La bordure magique : fine et brillante */
    border: 1px solid rgba(255, 255, 255, 0.15);
    /* Une ombre portée diffuse pour détacher la barre du fond */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);

    z-index: 1000;

    /* Transition douce au survol */
    /* MODIFICATIONS POUR L'APPARITION */
    opacity: 0;
    pointer-events: none;
    /* Inactif quand invisible */
    transform: translateX(-50%) translateY(-20px);
    /* Un petit effet de glissement vers le bas */
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.navy.visible {
    opacity: 1;
    pointer-events: auto;
    /* Réactive les clics */
    transform: translateX(-50%) translateY(0);
}

/* Petit effet interactif quand on passe la souris sur la barre */
.navy:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    transform: translateX(-50%) translateY(-2px);
}

/* On supprime le pseudo-element ::before qui ne sert plus à rien avec backdrop-filter moderne */
.navy::before {
    display: none;
}

/* --- LE CONTENU --- */
#content-navy {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 30px;
    /* Espace interne généreux */
    box-sizing: border-box;
}

/* --- LE LOGO --- */
#content-navy img {
    height: 24px;
    /* Beaucoup plus petit et raffiné */
    width: auto;
    object-fit: contain;
    /* Si ton logo est noir et le fond sombre, inverse-le ou utilise un logo blanc */
    filter: invert(1);
    opacity: 0.9;
}

/* --- LES BOUTONS (ICÔNES) --- */
.button-navy-content {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    /* Espace entre les icônes */
}

.button-navy-content svg {
    height: 20px;
    /* Taille "Bijou" (petit) */
    width: auto;
    fill: #fff;
    /* Force la couleur blanche */
    cursor: pointer;

    opacity: 0.6;
    /* Un peu transparent au repos */
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Rebond */
}

/* Effet Glow au survol des icônes */
.button-navy-content svg:hover {
    opacity: 1;
    transform: scale(1.2);
    /* Grossit un peu */
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
    /* Lueur néon */
}

/* Assure-toi que le canvas #fluid a un z-index inférieur à cette section */

.image-portal-section {
    position: relative;
    z-index: 100000;
    /* Devant le fluide */
    background: transparent;
    /* Important pour voir le fluide */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.portal-container {
    position: relative;
    width: 300px;
    /* Ajuste selon ton besoin */
    height: 400px;
}

.symbiotic-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    /* On commence caché */
    transition: opacity 0.5s ease;

    /* C'est ICI la magie : L'image ne se révèle que sur la lumière du fluide */
    mix-blend-mode: hard-light;
    filter: contrast(1.2);
    /* Un peu de peps */
}

.symbiotic-image.revealed {
    opacity: 1;
}

.logo-wrapper {
    background: #000;
    padding: 2rem;
    display: flex;
    justify-content: center;
}

.glow-svg {
    width: 200px;
    /* À ta convenance */
    height: auto;
    overflow: visible;
}

.logo-outline {
    fill: none;
    stroke: url(#glow-grad);
    /* Le contour utilise aussi le point lumineux */
    stroke-width: 2px;
    opacity: var(--glow-opacity, 0);
    filter: blur(1px);
    /* Adoucit la lueur sur les bords */
    transition: opacity 0.3s;
}

/* --- MAIN VIEWPORT --- */
.main-viewport {
    position: relative;
    width: 100vw;
    height: 100vh;
    /* display: flex; -> SUPPRIMÉ pour éviter le conflit de layout */
    background: #000;
}

/* --- H1 SIGNATURE --- */
.header-title {
    font-family: var(--font-fam-two);
    position: absolute;
    color: white;
    right: 20px;
    top: 20px;
    letter-spacing: 4px;
    opacity: 0;
    transition: opacity 1.5s ease;
}

/* --- LAYOUT CENTRAL --- */
.hero-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 95%;
    z-index: 20;
}

/* --- LE TITRE (MASQUAGE ET RÉFLEXION) --- */
.title-wrapper {
    overflow: hidden;
    /* Pour l'effet de sortie de l'ombre */
    padding: 10px 0;
}

.main-title {
    font-family: var(--font-fam-one);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.982);
    /* Texte éteint par défaut */
    text-transform: uppercase;
    letter-spacing: -2px;
    margin: 0;
    position: relative;

    /* Animation de montée */
    transform: translateY(110%);
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1);
}

/* La couche de "Lumière/Reflet" qui suit le feu follet */
.main-title::after {
    content: attr(data-text);
    position: absolute;
    inset: -1px;
    color: #fff;
    /* Le reflet suit les variables --x et --y */
    background: radial-gradient(circle 300px at var(--x) var(--y),
            rgba(0, 255, 233, 0.8) 0%,
            rgba(207, 125, 255, 0.4) 40%,
            transparent 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transition: opacity 2s ease;
}

/* --- LE SOUS-TITRE --- */
.main-subtitle {
    font-family: var(--font-fam-one);
    font-size: 1rem;
    font-weight: 100;
    color: #fff;
    letter-spacing: 5px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(10px);
    transition: all 2s ease 1s;
}

/* --- ÉTAT RÉVÉLÉ --- */
.hero-center.reveal .main-title {
    transform: translateY(0);
}

.hero-center.reveal .main-title::after {
    opacity: 1;
}

.hero-center.reveal .main-subtitle {
    opacity: 1;
    transform: translateY(0);
}

/* --- CONTENEUR PREMIER PLAN (H1 + SVG) --- */
.foreground-content {
    position: relative;
    z-index: 10;
    /* Au-dessus du canvas */
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    pointer-events: none;
    /* Pour que la souris passe à travers vers le canvas si besoin */
}

/* --- LOGO SVG --- */
.snake-svg {
    width: 90%;
    height: auto;
    overflow: visible;
    --x: 50%;
    --y: -20%;
    --mask-opacity: 0;
    transition: --mask-opacity 0.5s ease;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.8));
    pointer-events: auto;
    /* On réactive les événements sur le SVG lui-même */
}

@media (min-width: 920px) {

    .snake-svg{
        width: auto;
        height: 100vh
    }
}

.snake-svg.interactive {
    transition: --x 0.08s ease-out, --y 0.08s ease-out;
}

/* --- L'ORBE (Z-INDEX 50 : DERRIÈRE LE LOGO) --- */
.falling-orb {
    position: absolute;
    left: 50%;
    top: -20%;
    transform: translate(-50%, -50%);
    width: 5px;
    height: 120px;
    background: linear-gradient(to bottom, transparent, #fff, var(--c-cyan));
    box-shadow: 0 0 30px var(--c-cyan), 0 0 60px var(--c-purple);
    z-index: 50;
    opacity: 0;
    border-radius: 100px;
    pointer-events: none;
    filter: blur(1px);
}


/* Flash d'impact blanc pur */
.impact-flash {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 150;
    opacity: 0;
    pointer-events: none;
}

#toggleswitchfxed {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    background-color: #000;
}


.revealCircle,
.revealCircleLocal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    clip-path: circle(0px at var(--x) var(--y));
    animation: growCircle 1.9s ease-out forwards;
    background-size: cover;
    background-position: center;
}

.revealCircleLocal {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    /* facultatif pour correspondre à .imgjsp */
}

@keyframes growCircle {
    0% {
        clip-path: circle(0px at var(--x) var(--y));
    }

    100% {
        clip-path: circle(150vmax at var(--x) var(--y));
    }
}

.overlayZoom {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    z-index: -1000;
    overflow: hidden;
    transition: opacity 0.5s ease;
}

/* Le flou est constant, mais transparent au départ */
.overlayZoom::before {
    content: "";
    position: absolute;
    inset: 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.05);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 0;
}

.overlayZoom.active {
    opacity: 1;
    z-index: 1000;
}

.overlayZoom.active::before {
    opacity: 1;
    /* le flou devient visible progressivement */
}

.overlayZoom img {
    position: relative;
    z-index: 1;
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

/* --- PRESTA DESIGN 3 : EXPANSION LUXE (MOBILE-FIRST) --- */
.expanding-design3 {
    position: fixed;
    z-index: 99999;
    background: #000;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 50px rgba(0,0,0,0.8);
}

.expanded-presta-content {
    position: absolute;
    /* Mobile: Bottom Sheet */
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px 25px;
    
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px 30px 0 0;
    
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    z-index: 10;
}

.expanded-presta-content.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.expanded-presta-content h2 {
    font-family: var(--font-fam-two) !important;
    font-size: clamp(2rem, 6vw, 3rem) !important;
    color: #fff !important;
    margin: 0 0 10px 0 !important;
    line-height: 1.1 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
}

.expanded-presta-content .separate {
    width: 60px;
    height: 1px;
    background: var(--c-purple);
    margin: 15px 0 25px 0;
    opacity: 0.8;
}

.expanded-price {
    font-family: var(--font-fam-one);
    font-size: 1.1rem;
    color: var(--c-cyan);
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-weight: 300;
}

.expanded-desc {
    font-family: var(--font-fam-one);
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    width: 100%;
    margin-bottom: 30px;
    line-height: 1.7;
    max-height: 40vh;
    overflow-y: auto;
    padding-right: 10px;
    font-weight: 300;
}

/* Scrollbar invisible mais fonctionnelle */
.expanded-desc::-webkit-scrollbar { width: 3px; }
.expanded-desc::-webkit-scrollbar-track { background: transparent; }
.expanded-desc::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 10px; }

.btn-close-presta {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 20;
}

.btn-close-presta:hover {
    background: #fff;
    color: #000;
    transform: rotate(90deg) scale(1.1);
}

.prst-modal-btn-contact {
    background: #fff;
    color: #000;
    border: none;
    padding: 18px 35px;
    font-family: var(--font-fam-one);
    font-weight: 600;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    border-radius: 2px;
    font-size: 0.8rem;
}

.prst-modal-btn-contact:hover {
    background: var(--c-cyan);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

/* --- VERSION TABLETTE / DESKTOP (SIDE PANEL) --- */
@media (min-width: 1024px) {
    .expanded-presta-content {
        top: 0;
        bottom: 0;
        left: auto;
        right: 0;
        width: 480px;
        height: 100%;
        max-height: 100%;
        border-top: none;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 0;
        padding: 60px 50px;
        justify-content: center;
        transform: translateX(100%);
    }

    .expanded-presta-content.visible {
        transform: translateX(0);
    }

    .expanded-desc {
        max-height: 50vh;
    }

    .prst-modal-btn-contact {
        width: fit-content;
    }
    
    .btn-close-presta {
        top: 40px;
        right: 40px;
    }
}

.expanding-design3::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, var(--c-purple) 0%, transparent 70%);
    opacity: 0.1;
    pointer-events: none;
    animation: pulse-bg 4s infinite alternate;
}

@keyframes pulse-bg {
    from { opacity: 0.05; transform: scale(1); }
    to { opacity: 0.15; transform: scale(1.1); }
}


.theme-overlay {
    position: fixed;
    border-radius: 50%;
    transform: scale(0);
    pointer-events: none;
    z-index: 0;
    transition: transform 0.6s ease-out, opacity 0.4s ease-out;
    opacity: 1;
}

@keyframes gradientMove {
    to {
        background-position: 200% center;
    }
}

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

}



#logochargingandtitle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

#logochargingandtitle img {
    height: 100px;
    width: auto;
}

#logochargingandtitle h2 {
    font-family: var(--font-fam-two);
    font-size: 1.5rem;
    font-weight: 100;
    color: #fff;
}

.loadoverlay {
    z-index: 1000000000000000000000000000000000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--vh);
    background: rgb(0, 0, 0);
    /* Assombrissement */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.loadoverlay p {
    position: absolute;
    transform: translateX(-50%);
    bottom: 10vh;
    left: 50%;
    text-decoration: none;
    color: #ffffff;
    font-family: var(--font-fam-one);
    font-weight: 100;
    font-size: 0.7rem;
}



.container {
    /* Permet de positionner les enfants de manière absolue */
    position: relative;
    /* Dimensions pour que le conteneur soit visible */
    width: 500px;
    height: 300px;
    margin: 100px auto;
}

.content-box {
    /* Positionnement standard de la boîte */
    position: relative;
    width: 90%;
    height: 90%;
    margin: auto;
    background-color: #ffffff;
    border-radius: 15px;
    /* Une ombre subtile pour l'effet de superposition */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 2;
    /* S'assure que la boîte est au-dessus du canvas */
    /* Styles pour le contenu */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.fluid-shadow {
    /* Positionnement absolu pour le placer derrière la boîte */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* S'assure qu'il est juste derrière la boîte */
    /* Désactive les interactions de la souris pour que les clics passent au contenu */
    pointer-events: none;
}



.hero {
    width: 90%;
    height: auto;
    transform: translate(-50%, -50%);
    top: 40%;
    left: 50%;
    position: absolute;

}

.heroblur {
    width: 100%;
    height: auto;
    transform: translate(-50%, -50%);
    top: 40%;
    left: 50%;
    position: absolute;
    filter: blur(1px);
}

.effectLogo {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 150px 0;
    background: #000;
    /* --- Les lignes clés pour l'effet de fondu --- */

    /* 1. Définir le masque de dégradé */
    mask-image: linear-gradient(to bottom,
            /* Dégradé du haut vers le bas */
            transparent 0%,
            /* Transparent en haut */
            black 15%,
            /* Opaque (visible) à 15% */
            black 85%,
            /* Reste opaque jusqu'à 85% */
            transparent 100%
            /* Transparent en bas */
        );

    /* 2. Ajout des préfixes pour une meilleure compatibilité */
    -webkit-mask-image: linear-gradient(to bottom,
            transparent 0%,
            black 15%,
            black 85%,
            transparent 100%);
}

.lumiLogo {
    position: absolute;
    top: 50%;
    left: 50%;
    /* on garde le translate centré en Y et X */
    transform: translate(-50%, -50%);
    width: 420px;
    height: 420px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;

    /* multi-layer halo + un peu plus d'alpha pour être visible */
    background:
        radial-gradient(circle at 45% 45%, rgba(0, 255, 233, 0.85) 0%, rgba(0, 255, 233, 0.18) 35%, transparent 65%),
        radial-gradient(circle at 60% 60%, rgba(207, 125, 255, 0.75) 0%, rgba(207, 125, 255, 0.14) 45%, transparent 75%);
    mix-blend-mode: screen;

    /* blur réduit pour garder puissance visuelle mais conserver douceur */
    filter: blur(70px) brightness(1.3);
    transition: opacity 0.35s ease-out, transform 0.25s linear, filter 0.6s ease;
    opacity: 0;
    will-change: transform, top, opacity;
}

/* logo au-dessus */
.logopngaccueil {
    width: auto;
    height: 100vh;
    z-index: 2;
}


.cacheLog {
    width: 100%;
    height: 100vh;
    background-color: #000000;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}

#nav-lens-strip {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 90px;
    z-index: 998;
    pointer-events: none;
    backdrop-filter: blur(15px) saturate(110%);
    /* fiable */
    -webkit-backdrop-filter: blur(8px) saturate(110%);
    mask-image: linear-gradient(to top, black 60%, transparent 100%);
}



html {
    scroll-behavior: smooth;
    /* min-height: var(--vh); */
    background-color: #000000;
}


#particle {
    position: fixed;
    top: 0;
    left: 0;
    /* ou absolute/fixed selon ton layout */
    inset: 0;
    width: 100%;
    height: 100vh;
    /* ajuste si besoin */
    overflow: hidden;
    pointer-events: none;
    /* les clics passent à travers */
}


body {
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    /* min-height: var(--vh); */

    overflow: hidden;


}

body.lock-scroll, html.lock-scroll {
    overflow: hidden !important;
    height: 100% !important;
}

.button-close-subfolder {
    background-color: #c13434;
    border: none;
    text-align: center;
    padding: 12px 20px;
    border-radius: 50px;
    color: rgb(255, 255, 255);
    margin: 1px;
    font-family: var(--font-fam-one);
}

.button-close-subfolder:hover {
    background-color: #a82828;
}

.overlaybackend {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
    z-index: 100000;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.pOverlayBack {
    color: #c13434;
    font-size: 1.2rem;
    text-align: center;
    font-family: var(--font-fam-one);
    font-weight: 500;
    width: 90%;
}

.remarque {
    font-size: 0.9rem;
    color: #fff;
    font-family: var(--font-fam-one);
    font-weight: 400;
    width: 90%;
}

.picsparam {
    color: #eee;
    font-family: var(--font-fam-one);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;

}


.picsparam::after {
    border-radius: 50px;
    content: '';
    background: linear-gradient(var(--deg-), rgb(255 0 67) 0%, rgb(0 7 185) 88%);
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;

}

.picsparam::before {
    content: '';
    position: absolute;
    background: linear-gradient(var(--deg-), rgb(255 0 67) 0%, rgb(0 7 185) 88%);
    filter: blur(10px);
    /* Intensifie l'effet lumineux */
    border-radius: 60px;
    /* Doit être un peu plus grand pour bien entourer l'élément */
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
}



.background-permanant {
    border-radius: 50%;
    width: auto;
    background: linear-gradient(34deg, rgb(255 0 67) 0%, rgb(0 7 185) 88%);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;

}


.background-permanant::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    background: linear-gradient(34deg, rgb(255 0 67) 0%, rgb(0 7 185) 88%);
    transition: background 20s linear;
    /* Transition fluide */
    filter: blur(10px);
    /* Intensifie l'effet lumineux */
    z-index: -1;
    /* Place derrière la div principale */
    border-radius: 60px;
    /* Doit être un peu plus grand pour bien entourer l'élément */
}

.overlayLoad {
    z-index: 90;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px);
    /* Effet de flou */
    background: rgb(0 0 0 / 43%);
    /* Assombrissement */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.overlayLoad::before {
    content: '';
    position: absolute;
    inset: -50%;
    /* agrandi pour que la rotation ne coupe pas l'effet */
    z-index: -1;
    background: linear-gradient(130deg, rgba(255, 255, 255, 0.185), rgba(0, 0, 0, 0.25)),
        repeating-radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 40%);
    animation: fogCombined 3s ease-in-out infinite, fogLightPulse 5s ease-in-out infinite;
    opacity: 0.5;
    filter: blur(60px) brightness(0.5);
    /* base plus lumineuse */
    mix-blend-mode: screen;
    transform-origin: center;
}


@keyframes fogCombined {
    0% {
        transform: rotate(0deg) scale(1.05) translate(0, 0);
    }

    100% {
        transform: rotate(360deg) scale(1.05) translate(0, 0);
    }
}

@keyframes fogLightPulse {
    0% {
        filter: blur(60px) brightness(1.2);
    }

    50% {
        filter: blur(75px) brightness(1.45);
    }

    100% {
        filter: blur(60px) brightness(1.2);
    }
}





.poverlay {
    font-family: var(--font-fam-one);
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 1rem;
    padding: 15px 25px;


}

.overlayy {
    z-index: 10000;
    position: fixed;
    padding: 50px 0;
    inset: 0;
    backdrop-filter: blur(10px);
    /* Effet de flou */
    background: rgba(0, 0, 0, 0);
    /* Assombrissement */
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    overflow-x: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;

}

.overlayy h4 {
    font-family: var(--font-fam-one);
    font-size: 2rem;
    font-weight: 100;
    color: #fff;
    width: 100%;
    text-align: center;
}

/* Contenu de l'overlay */
.overlay-content {
    position: relative;
    background: white;
    padding: 20px;

    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 50px;
}

/* Bouton de fermeture */
.close-btn {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 40px;
    cursor: pointer;
    background: transparent;
    border: none;

}

.limage {
    position: absolute;
    filter: brightness(80%);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: var(--vh);
}

.loadoverlay video {
    width: 100%;
}

#fluid {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100svh;
    z-index: 1;
    /* Entre le background et le logo */
    pointer-events: none;
}


header {
    min-height: 100vh;
    width: 100%;
    position: relative;
    margin: 0;
    overflow-x: hidden;
    background-color: #000;
    color: #fff;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

#logoinheader {
    position: absolute;
    top: 10px;
    left: 10px;
}

#logoinheader div img {
    width: 50px;
    height: 50px;
}

/* #halo-lumineux {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%) rotate(217deg);
    width: 80vw;
    height: 80vh;
    pointer-events: none;
    background: radial-gradient(ellipse at 50% 100%, rgb(0 78 255) 0%, rgb(0 0 255) 20%, rgb(255 0 0) 35%, rgb(255 255 255 / 31%) 60%, #0034ff00 80%);
    filter: blur(80px) brightness(1.7);
    animation: pulseHalo 6s ease-in-out infinite;
    opacity: 1;
} */

/* #halo-lumineux {
    min-height: 100vh;
    width: 100%;
    animation: pulseHalo 6s ease-in-out infinite;
    position: absolute;
    top: -50%;
    left: 0;
 
    background: radial-gradient(ellipse at 0% 100%, rgb(13 0 255 / 50%) 0%, rgb(255 0 0) 20%, rgb(0 26 255 / 25%) 35%, rgb(130 130 255 / 29%) 60%, #00ff9d00 80%);
} */

#halo-lumineux {
    top: -15%;
    width: 100%;
    height: 100vh;
    right: -5%;
    transform: rotate(48deg);
}

#halo-lumineux-footer {
    transform: rotate(142deg);
    top: 85%;
    right: 3%;
}


.ambiance-color {
    min-height: 50vh;
    width: 100%;
    animation: pulseHalo 6s ease-in-out infinite;
    position: absolute;
    background: radial-gradient(ellipse at 0% 100%, rgb(0 255 233) 0%, rgb(207 125 255) 20%, rgb(207 125 255) 35%, rgb(0 255 233/ 29%) 60%, #00ff9d00 80%);
}

.ambiance-color::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 40% 90%, rgba(0, 255, 150, 0.08), transparent 60%),
        radial-gradient(circle at 60% 85%, rgba(255, 255, 0, 0.08), transparent 60%),
        radial-gradient(circle at 50% 100%, rgba(255, 100, 255, 0.07), transparent 50%);
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.ambiance-color::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 100%,
            rgba(255, 255, 255, 0.35) 0%,
            rgba(255, 0, 255, 0.2) 20%,
            transparent 50%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 1;
}

@keyframes pulseHalo {

    0%,
    100% {
        filter: blur(50px) brightness(1.1);
    }

    50% {
        filter: blur(60px) brightness(1.3);
    }
}


h1 {
    font-family: var(--font-fam-two);
    font-size: 1.5rem;
    font-weight: 100;
    position: absolute;
    color: var(--text-color);
    right: 10px;
    top: 10px;
}

.big-button button {
    position: relative;
    font-family: var(--font-fam-one, sans-serif);
    font-weight: 300;
    color: #fff;
    font-size: 1rem;
    letter-spacing: 1px;
    border: 0.1px solid #ffffff1f;
    padding: 20px 30px;
    background-color: transparent;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    z-index: 2;
    /* indispensable pour contenir le ::before */
}


#signature {
    font-family: var(--font-fam-one);
}


.background-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

.shadow-canvas {
    position: fixed;
    background-color: #0000003b;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
}

.background-canvas-absolute {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.big-button {
    /* background: radial-gradient(circle, rgb(207 125 255) 29%, rgb(255 232 176 / 0%) 97%, rgb(92 104 215 / 0%) 100%); */
    width: auto;
    /* background: radial-gradient(ellipse at 0% 100%, rgb(0 255 233) 0%, rgb(207 125 255) 20%, rgb(207 125 255) 35%, rgb(0 255 233/ 29%) 60%, #00ff9d00 80%); */
    height: auto;
    background: linear-gradient(to right,
            rgba(0, 255, 233, 0) 0%,
            rgba(0, 255, 233, 0) 15%,
            rgb(0, 255, 233) 25%,
            rgb(207, 125, 255) 50%,
            rgb(207, 125, 255) 65%,
            rgba(0, 255, 233, 0) 85%,
            rgba(0, 255, 233, 0) 100%);

    opacity: 1;
    transition: 0.4s ease;
    position: relative;
    /* animation: pulseHalo 6s ease-in-out infinite; */
    border-radius: 10px;
    background-size: 200% auto;
    animation: gradientMove 2s linear infinite;

    /* facultatif, mais joli */
}

.big-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    /* reprend le fond du parent */
    filter: blur(10px);
    z-index: 1;
}



.big-button::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    /* reprend le fond du parent */
    backdrop-filter: blur(10px);
    background-color: #000000;
    z-index: 1;
    border-radius: 8px;
}

.lw-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 15%);
    backdrop-filter: blur(7px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.big-button-rond {
    background: linear-gradient(to right,
            rgba(0, 255, 233, 0) 0%,
            rgba(0, 255, 233, 0) 15%,
            rgb(0, 255, 233) 25%,
            rgb(207, 125, 255) 50%,
            rgb(207, 125, 255) 65%,
            rgba(0, 255, 233, 0) 85%,
            rgba(0, 255, 233, 0) 100%);
    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 1;
    transition: 0.4s ease;
    position: relative;
    /* animation: pulseHalo 6s ease-in-out infinite; */
    border-radius: 50%;
    background-size: 200% auto;
    animation: gradientMove 2s linear infinite;
    /* facultatif, mais joli */
}

.big-button-rond::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    /* reprend le fond du parent */
    backdrop-filter: blur(10px);
    background-color: #000000;
    z-index: 1;
    border-radius: 50%;
}

.big-button-rond::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    /* reprend le fond du parent */
    filter: blur(10px);
    z-index: 1;
    border-radius: 50%;
}

.big-button-rond img {
    border-radius: 50%;
    z-index: 4;
    position: relative;
    height: 35px;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px;
}






.big-button-rond-nomoov {
    background: radial-gradient(circle, rgba(58, 68, 180, 1) 29%, rgba(253, 29, 29, 1) 97%, rgb(255, 0, 0) 100%);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 1;
    transition: 0.4s ease;
    position: relative;
    /* animation: pulseHalo 6s ease-in-out infinite; */
    border-radius: 50%;
    background-size: 200% auto;
    /* facultatif, mais joli */
}

.big-button-rond-nomoov::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    /* reprend le fond du parent */
    filter: blur(22px);
    z-index: 1;
}

.big-button-rond-nomoov img {
    border-radius: 50%;
    z-index: 4;
    position: relative;
}

.errform {
    font-family: var(--font-fam-one);
    color: #c13434;
}

.big-button-rond-nomoov::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    /* reprend le fond du parent */
    backdrop-filter: blur(10px);
    background-color: #000000;
    z-index: 1;
    border-radius: 50%;
}


@keyframes entreesloga {
    0% {

        top: 110%;
        opacity: 0;

    }


    100% {

        top: 53%;
        opacity: 1;

    }
}



#animblockheader {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    flex-direction: column;
    width: 100%;
    position: absolute;
    transform: translate(-50%, -50%);
    bottom: 2%;
    left: 50%;
    /* animation: entreesloga 1s ease-out forwards; */
    opacity: 1;
    z-index: 3;
    gap: 25px;
    transition: all 1s ease-out;
}

.loadoverlay {
    z-index: 1000000000000000000000000000000000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgb(0, 0, 0);
    /* Assombrissement */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
    -o-transition: opacity 0.3s ease, visibility 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}




.loadoverlay video {
    width: 100%;
    max-width: 400px;
}




#animblockheader h3 {
    font-size: 2rem;
    font-family: var(--font-fam-one);
    font-weight: 100;
    letter-spacing: 2px;
    color: var(--text-color);
    text-align: center;
}

#animblockheader.active {
    opacity: 1;
}




.mockup {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    perspective: 1200px;
    z-index: 2;
}

.mockup h2 {
    font-size: 5rem;
    font-family: var(--font-fam-two);
    font-weight: 100;
    letter-spacing: 2px;
    color: #ffffffe7;
    text-shadow: 0px 0px 20px #000;
    width: 100%;
    margin-left: 10%;
    position: absolute;
    left: 0;
    top: 16%;
    z-index: 5;
    opacity: 0;
    transition: all 1s ease-out;
}

.mockup h2.active {
    opacity: 1;
}


.coquedemo {
    position: absolute;
    top: 50%;
    width: auto;
    cursor: pointer;
    height: 100%;
    aspect-ratio: 9 / 19.5;
    border: 1px solid #fff;
    /* format téléphone */
    transform-style: preserve-3d;
    background: linear-gradient(145deg, #111, #222);
    /* matière sombre */
    border-radius: 40px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.5),
        /* ombre portée */
        inset 0 0 10px rgba(255, 255, 255, 0.08),
        /* reflet interne doux */
        inset 0 0 30px rgba(255, 0, 128, 0.05);
    /* glow léger interne */
    padding: 1.5%;

    transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg) scale(1) rotate(0deg);
    left: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
    mask-image: linear-gradient(to bottom, rgb(0 0 0 / 70%) 0%, rgba(0, 0, 0, 1) 40%);
    -webkit-mask-image: linear-gradient(to bottom, rgb(0 0 0 / 70%) 0%, rgba(0, 0, 0, 1) 40%);
    mask-size: 100% 100%;
    mask-repeat: no-repeat;
}

.coquedemo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
    box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.1);
    filter: contrast(1.1) brightness(1.05);
}

.coquedemo::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 40px;
    /* légèrement plus petit que la coque */
    border: 1px solid #fff;
    box-sizing: border-box;
    pointer-events: none;
    /* ne bloque pas les clics/touch */
    z-index: 2;
}


.contentcoque {
    width: 100%;
    height: 50vh;
    perspective: 1200px;
    position: relative;
}

.coque {
    position: absolute;
    top: 80%;
    width: auto;
    height: 60vh;
    aspect-ratio: 9 / 19.5;
    border: 1px solid #fff;
    /* format téléphone */
    transform-style: preserve-3d;
    background: linear-gradient(145deg, #111, #222);
    /* matière sombre */
    border-radius: 40px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.5),
        /* ombre portée */
        inset 0 0 10px rgba(255, 255, 255, 0.08),
        /* reflet interne doux */
        inset 0 0 30px rgba(255, 0, 128, 0.05);
    /* glow léger interne */
    padding: 1.5%;

    transform: translate(-50%, -50%) rotateX(64deg) rotateY(64deg) scale(1) rotate(-64deg);
    left: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
    mask-image: linear-gradient(to bottom, rgb(0 0 0 / 70%) 0%, rgba(0, 0, 0, 1) 40%);
    -webkit-mask-image: linear-gradient(to bottom, rgb(0 0 0 / 70%) 0%, rgba(0, 0, 0, 1) 40%);
    mask-size: 100% 100%;
    mask-repeat: no-repeat;
}

.coque video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
    box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.1);
    filter: contrast(1.1) brightness(1.05);
}

@keyframes entreeCoque {
    0% {

        transform: translate(-50%, -50%) rotateX(64deg) rotateY(64deg) scale(1) rotate(-64deg);
        top: 80%;


    }


    100% {

        transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg) scale(1) rotate(0deg);
        top: 40%;

    }
}



















/* HTML: <div class="loader"></div> */
.loaderecrit {
    font-weight: bold;
    font-family: monospace;
    display: inline-grid;
    font-size: 30px;
}

.loaderecrit:before,
.loaderecrit:after {
    content: "Loading...";
    grid-area: 1/1;
    -webkit-mask-size: 1.5ch 100%, 100% 100%;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: l36-1 1s infinite;
}

.loaderecrit:before {
    -webkit-mask-image:
        linear-gradient(#000 0 0),
        linear-gradient(#000 0 0);
}

.loaderecrit:after {
    -webkit-mask-image: linear-gradient(#000 0 0);
    animation:
        l36-1 1s infinite,
        l36-2 .2s infinite cubic-bezier(0.5, 200, 0.5, -200);
}

@keyframes l36-1 {
    0% {
        -webkit-mask-position: 0 0, 0 0
    }

    20% {
        -webkit-mask-position: .5ch 0, 0 0
    }

    40% {
        -webkit-mask-position: 100% 0, 0 0
    }

    60% {
        -webkit-mask-position: 4.5ch 0, 0 0
    }

    80% {
        -webkit-mask-position: 6.5ch 0, 0 0
    }

    100% {
        -webkit-mask-position: 2.5ch 0, 0 0
    }
}

@keyframes l36-2 {
    100% {
        transform: translateY(0.2px)
    }
}


.shadow {
    box-shadow: 0px 0px 30px rgba(227, 228, 237, 0.37);
    backdrop-filter: blur(10px);
    mask-image: radial-gradient(circle, black 60%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle, black 60%, transparent 100%);

}

/* header div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 20px;
}

header div h1{
    font-size: 3.8rem;
    color: #eee;
    font-family: "Cormorant Upright", serif;
    font-weight: 400;
    letter-spacing: 4px;
    filter: drop-shadow(4px 4px 7px rgba(0, 0, 0, 0.692));
    margin: 0;
}

header div p{
    color: #eee;
    font-family: "Rubik", sans-serif;
    font-weight: 500;
    letter-spacing: 3px;
    filter: drop-shadow(4px 4px 7px rgba(0, 0, 0, 0.68));
    font-size: 0.8rem;
    margin-bottom: 20px;
} */





#laptop {
    display: none;

}

main {
    position: relative;

    overflow: clip; /* clip au lieu de hidden pour autoriser position: sticky */
    width: 100%;
    /* background-color: #000; */
}

#contentblocdesc {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 250px;
    background-color: #000;
    padding: 50px 0;
}

.blocdesc {
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#main-content {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    /* overflow: hidden; */
    position: relative;
    z-index: 1;
    gap: 150px;
    /* padding: 150px 0; */
    transition: opacity 0.3s ease-in-out;
    opacity: 1;

}

#main-content.fading-out {
    opacity: 0;
}

.fxed {
    width: auto;
    height: 100vh;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.fullbody {
    width: 760px;
    height: auto;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;

}


/* body::after {
    content: '';

    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/imgPc/back-removebg.png') center/cover no-repeat;
    z-index: -2;} */

/* body::before {
    content: '';
  
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(var(--deg-), rgb(255 0 222) 0%, rgb(0 7 185) 88%);
    z-index: -2; 
} */



#navigation {
    position: fixed;
    opacity: 1;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: flex-end;
    /* background-color: var(--back-color); */
    z-index: 999;
    top: 0;
    height: 50px;
    filter: drop-shadow(0 8px 10px #0000005d);
    transition: opacity 0.3s ease;
    box-sizing: border-box;
    transform: translateZ(0);
    /* force un rendu GPU */


}

#gargantua {
    position: fixed;
    inset: 0;
    z-index: 998;
    /* ta nav est à 999 → canvas dessous */
    pointer-events: none;
    /* clics transparents */
    opacity: 0;
    /* rendu visible dès que la 1re frame est prête */
}

#navigation .svg {
    color: var(--color-font);
}

#navigation .svgsansfill {
    fill: var(--color-font);
}

#navigation.visible {
    opacity: 1;
    /* classe qu’on appliquera au scroll */
}

.bloc {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    width: 100%;
    z-index: 2;
    background-color: #000;
    height: 100%;
    transform: translateZ(0);
    /* force un rendu GPU */

}

#blocleft {
    border-top-right-radius: 0px;
    box-shadow: 1px 0px 0px #000;
}

#blocright {
    border-top-left-radius: 0px;
    box-shadow: -1px 0px 0px #000;
}

#mask-circlenav {
    color: #000;
    transform: rotate(180deg);
    width: 100px;
}

.bloc div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 6px;

}

.bloc div a {
    text-decoration: none;
    color: var(--color-font);
    font-family: "Rubik", sans-serif;
    font-weight: 700;
    font-size: 0.6rem;
}

/* .bloc div .svg {
    fill: var(--color-font);
    

} */

/* #navigation svg {
    color: var(--color-font);
} */

.circle {
    height: 50px;
    /* background-color: var(--back); */
    position: relative;
    transform: translateZ(0);
    /* force un rendu GPU */
    z-index: 5;

}

/* force un rendu GPU */



#admin {
    transform: translateY(33px) translateX(-50%) translateZ(0);
    /* Position de base */
    background-color: transparent;
    border-radius: 50%;
    will-change: transform;
    transition: transform 0.1s ease-out;
    position: relative;
    padding: 5px;
    position: fixed;
    top: 0;
    left: 50%;

}




.blob {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: relative;
    filter: drop-shadow(0px 5px 10px #111);

}

/* IMAGE FIXE À L’INTÉRIEUR */


/* ANIMATION DES BORDS ORGANIQUES */
@keyframes blobber {
    0% {
        border-radius: 48% 52% 68% 32% / 42% 28% 72% 58%;
    }

    10% {
        border-radius: 69% 31% 71% 29% / 67% 31% 69% 33%;
    }

    20% {
        border-radius: 61% 39% 51% 49% / 57% 58% 42% 43%;
    }

    30% {
        border-radius: 32% 68% 38% 62% / 65% 60% 40% 35%;
    }

    40% {
        border-radius: 57% 43% 49% 51% / 55% 71% 29% 45%;
    }

    50% {
        border-radius: 44% 56% 32% 68% / 69% 26% 74% 31%;
    }

    60% {
        border-radius: 38% 62% 35% 65% / 74% 53% 47% 26%;
    }

    70% {
        border-radius: 75% 25% 47% 53% / 49% 53% 47% 51%;
    }

    80% {
        border-radius: 41% 59% 65% 35% / 73% 50% 50% 27%;
    }

    90% {
        border-radius: 74% 26% 33% 67% / 40% 65% 35% 60%;
    }

    100% {
        border-radius: 48% 52% 68% 32% / 42% 28% 72% 58%;
    }
}

/* LÉGÈRE OSCILLATION */
@keyframes wobbler {
    0% {
        transform: rotateZ(2deg);
    }

    100% {
        transform: rotateZ(-2deg);
    }
}

.blur-background {
    position: absolute;
    inset: 0;
    /* Remplit le parent */
    background: rgba(255, 255, 255, 0.2);
    /* Couleur semi-transparente */
    backdrop-filter: blur(5px);
    z-index: 20;
    /* Applique un flou sur l'arrière-plan */
    /* Envoie l'élément derrière les enfants */
}



.gradload {
    position: absolute;
    z-index: 4;
    background: linear-gradient(var(--deg-), rgb(255 0 67) 0%, rgb(0 7 185) 88%);
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loaderi {
    width: 80px;
    aspect-ratio: 1;
    padding: 5px;
    border-radius: 50%;
    box-sizing: border-box;
    background: #ffffff;
    display: grid;
    filter: blur(5px) contrast(15) hue-rotate(250deg);
    mix-blend-mode: darken;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    z-index: 3;
}

.loaderi:before,
.loaderi:after {
    content: "";
    margin: 5px;
    border-radius: 50%;
    background: #000000;
    grid-area: 1/1;
    -webkit-mask-size: 100% 20px, 100% 100%;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}

.loaderi:before {
    -webkit-mask-image:
        linear-gradient(#000 0 0),
        linear-gradient(#000 0 0);
    animation: l8-1 2s infinite;
}

.loaderi:after {
    -webkit-mask-image:
        linear-gradient(#000 0 0);
    animation:
        l8-1 2s infinite,
        l8-2 .5s infinite cubic-bezier(0.5, 200, 0.5, -200);
}

@keyframes l8-1 {
    0% {
        -webkit-mask-position: 0 20%, 0 0
    }

    20% {
        -webkit-mask-position: 0 80%, 0 0
    }

    40% {
        -webkit-mask-position: 0 100%, 0 0
    }

    60% {
        -webkit-mask-position: 0 0%, 0 0
    }

    80% {
        -webkit-mask-position: 0 35%, 0 0
    }

    100% {
        -webkit-mask-position: 0 0, 0 0
    }
}

@keyframes l8-2 {
    100% {
        transform: translate(0.1px)
    }
}




.bubbly-button {

    position: relative;
    transition: transform ease-in 0.1s, box-shadow ease-in 0.25s;
    /* box-shadow: 0 2px 25px rgba(255, 0, 130, 0.5); */
}

.bubbly-button:focus {
    outline: 0;
}

.bubbly-button:before,
.bubbly-button:after {
    position: absolute;
    content: "";
    display: block;
    width: 140%;
    height: 100%;
    left: -20%;
    /* z-index: -1000; */
    transition: all ease-in-out 0.5s;
    background-repeat: no-repeat;
}

.bubbly-button:before {
    display: none;
    top: -75%;
    background-image:
        radial-gradient(circle, rgba(255, 71, 234, 1) 20%, transparent 20%),
        radial-gradient(circle, transparent 20%, rgba(88, 64, 251, 1) 20%, transparent 30%),
        radial-gradient(circle, rgba(255, 71, 234, 1) 20%, transparent 20%),
        radial-gradient(circle, rgba(88, 64, 251, 1) 20%, transparent 20%),
        radial-gradient(circle, transparent 10%, rgba(255, 71, 234, 1) 15%, transparent 20%),
        radial-gradient(circle, rgba(88, 64, 251, 1) 20%, transparent 20%),
        radial-gradient(circle, rgba(255, 71, 234, 1) 20%, transparent 20%),
        radial-gradient(circle, rgba(88, 64, 251, 1) 20%, transparent 20%),
        radial-gradient(circle, rgba(255, 71, 234, 1) 20%, transparent 20%);
    background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%, 10% 10%, 18% 18%;

}

.bubbly-button:after {
    display: none;
    bottom: -75%;
    background-image:
        radial-gradient(circle, rgba(88, 64, 251, 1) 20%, transparent 20%),
        radial-gradient(circle, rgba(255, 71, 234, 1) 20%, transparent 20%),
        radial-gradient(circle, transparent 10%, rgba(88, 64, 251, 1) 15%, transparent 20%),
        radial-gradient(circle, rgba(255, 71, 234, 1) 20%, transparent 20%),
        radial-gradient(circle, rgba(88, 64, 251, 1) 20%, transparent 20%),
        radial-gradient(circle, rgba(255, 71, 234, 1) 20%, transparent 20%),
        radial-gradient(circle, rgba(88, 64, 251, 1) 20%, transparent 20%);
    background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 10% 10%, 20% 20%;

}

.bubbly-button:active {
    transform: scale(0.9);
    background-color: #e60074;
    box-shadow: 0 2px 25px rgba(255, 0, 130, 0.2);
}

.bubbly-button.anima:before {
    display: block;
    animation: topBubbles ease-in-out 0.75s forwards;
}

.bubbly-button.anima:after {
    display: block;
    animation: bottomBubbles ease-in-out 0.75s forwards;
}


@keyframes topBubbles {
    0% {
        background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
    }

    50% {
        background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;
    }

    100% {
        background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
        background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
}

@keyframes bottomBubbles {
    0% {
        background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%;
    }

    50% {
        background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%;
    }

    100% {
        background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
        background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
}




#confprice {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#confpriceclient {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#price {
    font-family: var(--font-fam-one);
    color: var(--text-color);
    font-weight: 100;
    font-size: 5rem;
}

#price span {
    font-family: var(--font-fam-one);
    color: var(--text-color);
    font-weight: 100;
    font-size: 2rem;
}

.separate {
    width: 105%;
    height: 2px;
    background: linear-gradient(to right,

            rgb(207, 125, 255) 0%,
            rgb(0, 255, 233) 20%,
            rgb(207, 125, 255) 40%,
            rgb(207, 125, 255) 60%,
            rgb(0, 255, 233) 80%,
            rgb(207, 125, 255) 100%);
}

#photocount {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

#photocount p span {
    font-family: var(--font-fam-one);
    color: var(--text-color);
    font-weight: 100;
    font-size: 2rem;
}

#photocount p {
    font-family: var(--font-fam-one);
    color: var(--text-color);
    font-weight: 100;
    font-size: 1.5rem;
}

#photocount div {
    cursor: pointer;
    font-family: var(--font-fam-one);
    color: var(--text-color);
    font-weight: 100;
    font-size: 2rem;
}


footer {

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
    width: 100%;
    padding: 50px 20px 10px 20px;

    color: #fff;
    z-index: 1000;
    overflow: hidden;
    position: relative;

}


footer p:nth-child(1) {
    color: var(--text-color);
    font-family: var(--font-fam-one);
    font-weight: 300;
    letter-spacing: 3px;
    font-size: 1rem;
    margin-bottom: 20px;
    z-index: 2;
}

#copyright {
    text-decoration: none;
    color: var(--text-color);
    font-family: var(--font-fam-one);
    font-weight: 100;
    z-index: 2;
    font-size: 0.7rem;
}

#version {
    text-decoration: none;
    color: var(--text-color);
    font-family: var(--font-fam-one);
    font-weight: 100;
    z-index: 2;
    font-size: 0.7rem;
    transform: translateX(-50%);
}


footer div {
    z-index: 2;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 50px;
}

footer div a {
    text-decoration: none;
    color: var(--text-color);
    font-family: var(--font-fam-one);
    font-weight: 300;
}

footer div a img {
    width: 50px;
    height: 50px;
}

footer #reseaufooter {
    width: 90%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    z-index: 2;
}




#fin {

    justify-content: space-between;
    font-size: 0.5rem;

}

#fin img {
    width: 60px;
    height: auto;
}


.contentticket {
    width: 80px;
    height: 80px;
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    /* filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.5)); */
    position: fixed;
    right: 0px;
    top: 0px;
}

.contentlogoticket {
    position: absolute;
    top: 5px;
    left: 8px;
}

.logoTicket {
    width: 35px;
    height: 35px;
}

/* État initial des paragraphes */
.scroll-fade {
    opacity: 0;
    transform: translateX(-100px);
    /* Commence à gauche */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Classe pour l'apparition des paragraphes */
.scroll-fade.visible {
    opacity: 1;
    transform: translateX(0);
    /* Se place à sa position d'origine */
}

.translate {
    transform: translateY(80px);
    opacity: 0;
    transition: 0.6s ease-out;
}

.translate.visible {
    opacity: 1;
    transform: translateY(0px);
}

.fade-in-image {
    opacity: 0;
    /* Initialement invisible */
    transition: opacity 1s ease-in-out;
    /* Transition douce sur l'opacité */
    transform: translateY(50px);
    /* Décalage initial pour l'effet de mouvement */
}

.fade-in-image.visible {
    opacity: 1;
    transform: translateY(0);
    /* Image à sa position finale */
}

.button {
    color: #eee;
    text-decoration: none;
    font-family: "Rubik", sans-serif;
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 0.9rem;
    padding: 15px 28px;
    background-color: #666;
    border: none;
    z-index: 2;
}

.dnone {
    display: none;
}


.contenuback {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    background-color: #ffffff;
    padding: 100px 20px;
    width: 100%;

}

.backlock {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}

.conteneurform {
    background-color: rgb(0 0 0 / 56%);
    backdrop-filter: blur(35px);
    border-bottom-left-radius: 30%;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 80px 30px 20px 30px;
    position: relative;
    min-width: 300px;
    box-shadow: 0px 0px 20px #00000094, inset 0px 0px 0px #fff;
    margin: 3px;

    font-family: var(--font-fam-one);
    width: 95%;
    max-width: 450px;

}


@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
        /* Déplace l'élément vers le haut */
    }

    100% {
        transform: translateY(0);
        /* Ramène l'élément à sa position d'origine */
    }
}


.imgform {
    width: 50px;
    height: 50px;
    margin: 2px;
}

.conteneurimgform {
    position: absolute;
    top: 20px;
    left: 20px;
}

.titreform {
    font-size: 1.3rem;
    color: #eeeeeef5;
    text-shadow: 0px 0px 20px black;
    font-family: var(--font-fam-one);
    font-weight: 100;
}

.formform {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 25px;
    width: 100%;
}

.inputform {
    border: none;
    text-align: center;
    padding: 20px;
    border-radius: 50px;
    width: 100%;
    background-color: #ffffff;
    color: black;
    font-family: var(--font-fam-one);
    outline: none;
}

.conteneurform:has(.inputform:focus) {
    animation: none !important;
    transform: none !important;
}

.areaform {
    border: none;
    text-align: center;
    padding: 20px;
    border-radius: 25px;
    width: 100%;
    background-color: #ffffff;
    color: black;
    resize: none;
    height: 300px;
    font-family: var(--font-fam-one);
    outline: none;
}

.buttonform {
    border: none;
    text-align: center;
    padding: 12px 20px;
    border-radius: 50px;
    background-color: #000;
    color: rgb(255, 255, 255);
    font-family: var(--font-fam-one);
    letter-spacing: 1px;
}


.gradient {
    width: 100%;
    padding: 100px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(var(--deg-), rgb(255 0 67) 0%, rgb(0 7 185) 88%);
    /* box-shadow: inset 0px 20px 20px 0px #00000040; */
}

.gradient100 {
    width: 100%;
    padding: 100px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(var(--deg-), rgb(255 0 67) 0%, rgb(0 7 185) 88%);
    /* box-shadow: inset 0px 20px 20px 0px #00000040; */
}

.message {
    width: 85%;
    padding: 10px 0;
    text-align: center;
    font-family: var(--font-fam-one);
    font-size: 0.7rem;
    font-weight: 500;
    transform: translateY(-45px);
}

.err {
    color: #c13434;
    margin-bottom: 20px;
}

.valid {
    color: rgb(22, 193, 90);
}

.rep {
    color: #ffffff;
    font-family: var(--font-fam-one);
    font-weight: 100;
    font-size: 0.8rem;
    width: 80%;
    position: absolute;
    text-align: center;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
}



.background-button button {
    position: relative;
    font-family: var(--font-fam-one, sans-serif);
    font-weight: 300;
    color: #fff;
    font-size: 1rem;
    letter-spacing: 1px;
    border: 0.1px solid #ffffff45;
    padding: 20px 30px;
    background-color: transparent;
    border-radius: 10px;
    overflow: hidden;
    z-index: 2;
    /* indispensable pour contenir le ::before */
}


.background-button {
    background: radial-gradient(circle, rgba(58, 68, 180, 1) 29%, rgba(253, 29, 29, 1) 97%, rgb(255, 0, 0) 100%);
    width: auto;
    height: auto;

    opacity: 1;
    transition: 0.4s ease;
    position: relative;
    /* animation: pulseHalo 6s ease-in-out infinite; */
    border-radius: 10px;
    background-size: 200% auto;
    animation: gradientMove 2s linear infinite;
    /* facultatif, mais joli */
}

.background-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    /* reprend le fond du parent */
    filter: blur(22px);
    z-index: 1;
}



.background-button::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    /* reprend le fond du parent */
    backdrop-filter: blur(10px);
    background-color: #000000;
    z-index: 1;
    border-radius: 7px;
}






@keyframes pulse-chaos {
    0% {
        transform: scale(1);
        filter: blur(5px) saturate(2);
    }

    10% {
        transform: scale(1.01);
        filter: blur(6px) saturate(2.4);
    }

    23% {
        transform: scale(0.97);
        filter: blur(4px) saturate(1.8);
    }

    39% {
        transform: scale(1.015);
        filter: blur(7px) saturate(2.8);
    }

    55% {
        transform: scale(0.96);
        filter: blur(5px) saturate(1.5);
    }

    71% {
        transform: scale(1.02);
        filter: blur(6px) saturate(2.3);
    }

    87% {
        transform: scale(0.98);
        filter: blur(4.5px) saturate(2);
    }

    100% {
        transform: scale(1);
        filter: blur(5px) saturate(2);
    }
}









.backgroundcard {

    width: 100%;
    /* background: linear-gradient(var(--deg-), rgb(255 0 67) 0%, rgb(0 7 185) 88%); */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;

    height: auto;
    border-radius: 10px;
}


.backgroundcard::before {

    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 10px;
    background: linear-gradient(var(--deg-), rgb(255 0 67) 0%, rgb(0 7 185) 88%);

    filter: blur(0px);
    /* Intensifie l'effet lumineux */
    z-index: -1;
    /* Place derrière la div principale */
    /* Doit être un peu plus grand pour bien entourer l'élément */
}

.sous-titre {
    font-family: var(--font-fam-one);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-font);
    text-align: center;
}



.containerfolder {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 4px solid #000;

}

.containerfolder img {
    filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.5));

}

.containerLogoFolder {
    position: absolute;
    bottom: 41px;
    right: 37px;
    filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.171));
    z-index: 8;
}

.h2folders {
    font-family: var(--font-fam-one);
    color: #000000;
    font-size: 1.5rem;
    text-transform: capitalize;
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.3));
}


.imgFolder {
    width: 96px;
    height: 96px;
    margin: 3px;
    transition: all 0.3s ease-in-out;
}

.animrotate {
    animation-name: rotate;
    animation-duration: 0.25s;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
}

.animrotatemoins {
    animation-name: rotatemoins;
    animation-duration: 0.25s;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotatemoins {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

.contentsoussvgfolder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;

}

.titresousdossier {
    font-family: var(--font-fam-one);
    color: #000000;
    font-size: 0.8rem;
    text-transform: capitalize;
}

.svgsousFolder {
    width: 100px;
    height: 100px;
    filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.171));
}

.containerLogosousFolder {
    position: absolute;
    bottom: 9px;
    right: 4px;
}

.imgsousFolder {
    width: 50px;
    height: 50px;
    filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.171));
    margin: 9px;
}


.img-gallery {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: calc((100% - 6px) / 3);
    /* 3 images par ligne avec un gap */
    aspect-ratio: 1 / 1;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.5s ease, transform 0.5s ease;
    will-change: opacity, transform;
    position: relative;
    filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.171));
}

.img-gallery.loaded {
    opacity: 1;
    transform: scale(1);
}

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}



.logoload {
    width: 150px;
    height: 150px;
    padding: 2px;
}


#clientcontent {
    flex-grow: 1;
    background-color: #ffffff;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;


}

#clientcontent #arriereplan {
    width: 100%;
    background: linear-gradient(var(--deg-), rgb(255 0 67) 0%, rgb(0 7 185) 88%);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

#clientcontent #arriereplan::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(var(--deg-), rgb(255 0 67) 0%, rgb(0 7 185) 88%);
    transition: background 20s linear;
    /* Transition fluide */
    filter: blur(10px);
    /* Intensifie l'effet lumineux */
    z-index: 1;
    /* Place derrière la div principale */
    /* Doit être un peu plus grand pour bien entourer l'élément */
}




#clientcontent #arriereplan #contenuclient {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 100px 10px 200px 10px;
    background-color: #fff;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
}


#clientcontent #arriereplan #contenuclient #contentPhotoTicket {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;

}

#downloadDossierPhoto {
    width: 113px;
    height: 40px;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    z-index: 10;
    opacity: 0;
}


.h2outil {
    font-family: var(--font-fam-two);
    font-weight: 900;
    font-size: 1.3rem;
    color: var(--color-font);
    text-align: center;
    text-transform: capitalize;
}


.folderClientWithImgage {
    width: 100%;
    display: flex;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1 / 1;
    background: center/cover no-repeat;
    background-blend-mode: multiply;
    background-color: rgba(0, 0, 0, 0.2);
    /* Couleur pour assombrir */

    position: relative;
    will-change: transform;
    transform: translateZ(0);
}


.contentsubclient {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: start;
    align-items: center;
    position: relative;
}


.subcategoryclient-select {
    width: calc(50% - 5px);
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    border-radius: 5px;
    align-items: center;
    background: center/cover no-repeat;
    background-blend-mode: multiply;
    background-color: rgba(0, 0, 0, 0.2);
    /* Couleur pour assombrir */
    will-change: transform;
    transform: translateZ(0);
    overflow: hidden;
}

.subcategoryclient {
    width: 100%;
    display: flex;
    justify-content: start;
    gap: 25px;
    align-items: center;

}

.subcategoryclient div {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: center/cover no-repeat;
    background-blend-mode: multiply;
    background-color: rgba(0, 0, 0, 0.2);
    /* Couleur pour assombrir */
    will-change: transform;
    transform: translateZ(0);
    overflow: hidden;
}


.msgoverlay {
    font-size: 1rem;
    font-weight: 500;
    font-family: var(--font-fam-one);
    color: #eee;
    width: 100%;
    text-align: center;
    margin: 0 10px;
}


.overlayedit {
    position: fixed;
    inset: 0;
    z-index: 1000;
    padding: 100px 20px;
    overflow-y: auto;
    backdrop-filter: blur(6px);
    background-color: #0000006e;
    overflow-x: hidden;
    font-family: var(--font-fam-one);
    color: #fff;
}


.contentinoverlay {
    display: flex;
    flex-direction: column;
    gap: 50px;
    width: 100%;
    max-width: 600px;
    z-index: 400;
    /* Visible en fin de scroll */
}



.contentinputoverlay {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;

}

.contentinputoverlay p {
    font-weight: 100;
}

.contentinputoverlay label {
    font-family: var(--font-fam-one);
    color: var(--text-color);
    font-size: 1.2rem;
    width: 100%;
    text-align: left;
}


.button-close-subfolder {
    background-color: var(--red);
    border: none;
    text-align: center;
    padding: 12px 20px;
    border-radius: 50px;
    color: rgb(255, 255, 255);
    width: auto;
    margin: 1px;
    font-family: var(--font-fam-one);

}

.button-close-subfolder:hover {
    background-color: #a82828;
}

#cgucgv {
    display: none;
    opacity: 0;
    transition: opacity 0.3s linear;
}

#rgpd {
    cursor: pointer;
}


pre {
    margin: 0;
    font-size: 0.95rem
}

pre {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #eee;
    overflow: auto
}

.placeholder {
    background: #fff3cd;
    border-left: 4px solid #f0ad4e;
    padding: 10px;
    border-radius: 6px;
    font-size: 0.9rem
}

.small {
    font-size: 0.9rem;
    color: #666
}



#quittcg {
    position: absolute;
    right: 20px;
    top: 20px;
}

@media (min-width: 1024px) {

    #confprice {
        position: absolute;
        transform: translate(-50%, -50%);
        top: -50%;
        left: 75%;
    }

    /* #price,
    #price span{
        color: #000;
    } */

    #price {
        font-size: 7rem;
    }

    #price span {
        font-size: 4rem;
    }

    #photocount p {
        font-size: 2.5rem;
    }

    #photocount p span {
        font-size: 3rem;
    }

    .separate {
        height: 0;
        opacity: 0;
    }


    header {
        overflow-x: visible;
    }

    #halo-lumineux-footer {
        transform: rotate(184deg)
    }

    .effectLogo {
        margin: 200px 0;
        height: 200vh;
    }

    .logopngaccueil {
        height: 200vh;
    }

    #animblockheader {
        width: 55%;
    }

    #halo-lumineux {
        top: -15%;
        width: 100%;
        height: 100vh;
        right: 30%;
        transform: rotate(22deg);
    }

    .contentinoverlay {
        /* flex-direction: row;
        justify-content: center;
        align-items: center; */
        height: 100%;
        display: block;
    }

    .big-button:hover,
    .big-button-rond:hover,
    .background-button:hover,
    .background:hover {
        cursor: pointer;
        /* padding: 5px; */
        transform: scale(1.05);
        animation: gradientMove 600ms linear infinite;
    }

    .background-button:hover::after,
    .big-button:hover::after {
        transition: 0.4s ease;
        left: 50%;
        border-bottom-left-radius: 0px;
        border-top-left-radius: 0px;
    }

    #quittcg {


        top: -40px;
    }

    header {
        display: flex;
    }

    #main-content {
        justify-content: center;
    }

    .mockup {
        width: 30%;
        left: 5%;
    }

    .separate {
        width: 60%;
    }

    #animblockheader {
        bottom: 12%;
        left: 66%;
        gap: 100px;
    }

    #animblockheader h3 {
        font-size: 3rem;
    }


    .coquepics {
        width: auto;
        height: 76%;
        --slide-x: -140%;
        --slide-y: 11%;
        transform: translate(calc(-50% + var(--slide-x)), calc(-50% + var(--slide-y)));
        will-change: transform;
        transition: transform 80ms linear;
        transform-style: preserve-3d;
    }


    .coque {
        height: 75vh;
    }

    .coquedemo:hover {
        transform: scale(1.1) translate(-50%, -50%);
        transition: 400ms ease;
    }


    #navigation {
        position: absolute;
        top: 0px;
        left: 66%;
        transform: translateX(-50%);
        width: 50%;
        transform-origin: top left;
        z-index: 1001;

    }


    .bloc svg:hover {
        transform: scale(1.1) rotate(-10deg);
    }

    #blocleft {
        /* border-top-left-radius: 50px; */
        border-bottom-left-radius: 50px;
        border-bottom-right-radius: 0px;
        border-top-right-radius: 0px;
    }

    #blocright {
        /* border-top-right-radius: 50px; */
        border-bottom-right-radius: 50px;
        border-bottom-left-radius: 0px;
        border-top-left-radius: 0px;
    }

    #admin {
        transform: translateY(26px) translateX(-50%) translateZ(0);
    }

    #mask-circlenav {
        transform: rotate(180deg);
    }

    /* #price {
        font-size: 5rem;
    }

    #photocount div {
        font-size: 4rem;
    }

    #photocount p {
        font-size: 2rem;
    }

    #photocount p span {
        font-size: 3rem;
    }


    #confprice {
        position: absolute;
        left: 75%;
        top: 25%;
        transform: translate(-50%, -50%);
        width: 50%;
    } */

    footer div {
        width: 50%;
    }

    .remarque,
    .pOverlayBack {
        width: 70%;
    }

    .contentinoverlay {
        transform: translateX(-50%);
        margin-left: 50%;
    }
}