: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: #f10d0d;
    --back-folder: #ffffffa8;
    --before-color: #fff;
    --green: #007bff;


}

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

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

}


#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);
}


#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);

}

.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);
    }
}




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

.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;
    /* plus stable que 100dvh */
    z-index: 1000;
    /* au-dessus visuellement */
    pointer-events: none;

}

canvas#fluid * {
  pointer-events: none !important;
}


header {
    height: 100vh;
    width: 100%;
    position: relative;
    margin: 0;
    z-index: 1000;
    overflow: hidden;
    /* background-color: #000003; */
    background-color: #000000;
    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 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%); */
    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::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;
}

#halo-lumineux::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;
}

@keyframes pulseHalo {

    0%,
    100% {
        filter: blur(80px) brightness(1.5);
    }

    50% {
        filter: blur(100px) brightness(2.2);
    }
}


h1 {
    font-family: var(--font-fam-two);
    font-size: 1.5rem;
    font-weight: 100;
    position: absolute;
    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 */
}


.big-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 */
}

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



.big-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;
}

.big-button-rond {
    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;
    animation: gradientMove 6s linear infinite;
    /* facultatif, mais joli */
}

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

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





.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: 0;
    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: #ffffffe7;
    text-shadow: 0px 0px 20px #000;
    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;
    clip-path: inset(0);
    min-height: 100vh;
    overflow: hidden;
    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: 0;
    gap: 150px;

}

.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;
    bottom: 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: 50%;
    z-index: 2;
    background-color: #000;
    height: 100%;
    transform: translateZ(0);
    /* force un rendu GPU */
}

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

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

#mask-circlenav {
    color: var(--back);
    transform: translateX(-50%);
    position: absolute;
    bottom: -11px;
    left: 50%;
    width: 80px;
}

.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;
    width: 80px;
}

/* force un rendu GPU */



#admin {
    transform: translateY(-45px) 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: absolute;
    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 */
.blob img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    user-select: none;
}

/* 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: #fff;
    font-weight: 100;
    font-size: 5rem;
}

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

.separate {
    width: 105%;
    height: 2px;
    background: linear-gradient(34deg, rgb(255 0 67) 0%, rgb(0 7 185) 88%);
}

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

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

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

#photocount div {
    cursor: pointer;
    font-family: var(--font-fam-one);
    color: #fff;
    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;
    background: #000;
    color: #ffffff;
    z-index: 1000;
    position: relative;

}


footer p:nth-child(1) {
    color: #ffffff;
    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: #ffffff;
    font-family: var(--font-fam-one);
    font-weight: 100;
    z-index: 2;
    font-size: 0.7rem;
}

#version {
    text-decoration: none;
    color: #ffffff;
    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: #ffffff;
    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(255 255 255 / 4%);
    backdrop-filter: blur(15px);
    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;
    animation: float 3s ease-in-out infinite;
}


@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: #fff;
    font-size: 1.2rem;
    width: 100%;
    text-align: left;
}


.button-close-subfolder {
    background-color: #c13434;
    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) {

    .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: 20%;
        left: 60%;
        gap: 100px;
    }

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


    #navigation {
        position: fixed;
        top: 0;
        left: 50px;
        width: 100vh;
        transform: rotate(90deg);
        transform-origin: top left;
        z-index: 1001;

    }

    .coque{
        height: 75vh;
    }

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

    .svgsansfill,
    .svg,
    .blob img {
        transform: rotate(-90deg);
    }

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

    #mask-circlenav {
        bottom: -15px;
    }

    #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%;
    }
}