@font-face {
    font-family: "Galyon-Book";
    src: url("../polices/Galyon-Book.otf");
}

@font-face {
    font-family: "Galyon-Book-Italic";
    src: url("../polices/Galyon-Book-Italic.otf");
}

@font-face {
    font-family: "Galyon-Bold";
    src: url("../polices/Galyon-Bold.otf");
}

@font-face {
    font-family: "Galyon-Bold-Italic";
    src: url("../polices/Galyon-Bold-Italic.otf");
}

@font-face {
    font-family: "Coco-Sharp-Regular";
    src: url("../polices/Coco-Sharp-Regular-trial.ttf");
}

@font-face {
    font-family: "Coco-Sharp-Heavy";
    src: url("../polices/Coco-Sharp-Heavy-trial.ttf");
}

@font-face {
    font-family: "Coco-Sharp-Italic";
    src: url("../polices/Coco-Sharp-Italic-trial.ttf");
}

:root {
    --couleur-principal: #ef476f;
    --couleur-secondaire: #ffd166;
    --couleur-fonce: #242331;

    --police-book: "Galyon-Book";
    --police-book-italic: "Galyon-Book-Italic";
    --police-bold: "Galyon-Bold";
    --police-bold-italic: "Galyon-Bold-Italic";
    --police-texte-courant: "Coco-Sharp-Regular";
    --police-texte-courant-italic: "Coco-Sharp-Italic";
    --police-texte-courant-bold: "Coco-Sharp-Heavy";
}

/* --------------------------------------------------------------- */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--police-book);
    user-select: none;
    overflow: hidden;
}

main {
    background-color: var(--couleur-principal);
    width: 100vw;
    height: 90vh;
    position: relative;
}

header {
    background-color: white;
    height: 10vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10vw;
    position: relative;
    z-index: 1;
}



.link-language{
    margin-right: 10px;
    color: black;
    text-decoration: none;
}

section {
    width: 100%;
    height: 100%;
    left: 100%;
    position: absolute;
    transition: all 1500ms ease;
}

section:nth-child(1) {
    left: 0%;
}

/* --------------------------------------------------------------- */

.asset-deco {
    position: absolute;
}

.deco-1 {
    top: 5%;
    right: 15%;
    width: 6%;
}

.deco-1-contact {
    top: -6%;
    left: 15%;
    width: 4%;
    transform: rotate(90deg);
}

.deco-1-presentation {
    top: 85%;
    right: 15%;
    width: 5%;
    transform: rotate(90deg);
}

.deco-1-realisation {
    bottom: 9%;
    right: 13%;
    width: 5%;
    transform: rotate(90deg);
}

.deco-2 {
    top: 85%;
    right: 20%;
    width: 3%;
}

.deco-2-contact {
    top: 70%;
    right: 11%;
    width: 3%;
}

.deco-3 {
    top: 10%;
    left: 15%;
    width: 3%;
}

.deco-3-contact {
    top: 20%;
    left: 35%;
    width: 3%;
}

.deco-3-realisation {
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    width: 5%;
}

.deco-4 {
    top: 75%;
    left: 12%;
    width: 20%;
}

.deco-4-contact {
    top: 80%;
    left: 12%;
    width: 20%;
}

.deco-4-presentation {
    top: 5%;
    right: 12%;
    width: 10%;
}

.deco-4-realisation {
    bottom: -20%;
    right: 40%;
    width: 15%;
}

.deco-5 {
    top: 65%;
    left: 25%;
    width: 8%;
}

.deco-5-contact {
    top: -6%;
    right: 13%;
    width: 8%;
}

.deco-5-presentation {
    top: 80%;
    left: 30%;
    width: 12%;
}

.deco-7-presentation {
    top: -5%;
    left: -10%;
    width: 50%;
}

.deco-8-realisation {
    top: 12%;
    left: 9%;
    width: 12%;
}

.deco-9-realisation {
    top: 3%;
    right: 9%;
    width: 7%;
}

.deco-10-realisation {
    bottom: -1%;
    left: 9%;
    width: 10%;
}

.deco-papillon {
    top: -8%;
    right: -20%;
    width: 40%;
}

.deco-cercles {
    top: 8%;
    left: 63%;
    width: 5%;
}

.deco-centre {
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    width: 50%;
}

/* --------------------------------------------------------------- */

.monogramme {
    width: 3%;
    cursor: pointer;
}

.fluid {
    width: 100%;
    height: auto;
}

.fluid-icone {
    width: auto;
    height: 100%;
}

.icone-nav {
    height: 150%;
}

nav {
    height: 100%;
    position: relative;
}

.grand-nav {
    display: flex;
    align-items: center;
    gap: 4em;
    margin: 0;
    padding: 0;
    height: 100%;
}

.petit-nav {
    display: flex;
    list-style: none;
    height: 2vh;
    align-items: center;
    gap: 2em;
    text-transform: uppercase;
}

.bouton-nav {
    color: var(--couleur-fonce);
    text-decoration: none;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.bandeau {
    content: "";
    width: 130%;
    height: 80%;
    background-color: var(--couleur-secondaire);
    position: absolute;
    top: 50%;
    left: -79%;
    transform: translateX(0%) scaleX(0);
    transition: transform 250ms ease;
    z-index: -1;
}

#box-realisations {
    height: 100%;
    display: flex;
    align-items: center;
}

.menu-deroulant {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 100%;
    overflow: hidden;
}

.grand-menu-deroulant {
    display: flex;
    justify-content: space-around;
    padding: 0;
    list-style: none;
    align-items: center;
    height: 100%;
    margin: 0;
    background-color: var(--couleur-secondaire);
    transform: translateY(-100%);
    transition: transform 350ms ease;
}

.petit-menu-deroulant a {
    text-decoration: none;
    color: var(--couleur-fonce);
    cursor: pointer;

}
.petit-menu-deroulant{
    transition: 150ms all ease;
}

.insta-icon{
    cursor: pointer;
    aspect-ratio: 1/1;
    width: 3vh;
    display: flex;
}

.petit-menu-deroulant:hover{
    transform: scale(1.2);
}

.titre-gauche {
    color: white;
    width: 90vh;
    transform-origin: top left;
    transform: rotate(90deg) translate(0, -100%);
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    user-select: none;
}

.titre-droit {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: white;
    width: 90vh;
    color: transparent;
    transform-origin: top left;
    transform: rotate(-90deg) translate(0, -100%);
    position: absolute;
    top: 100%;
    left: 100%;
    pointer-events: none;
    user-select: none;
}

#texte-dynamique {
    white-space: nowrap;
    margin: 0;
    display: inline-block;
    pointer-events: none;
    user-select: none;
}

/* --------------------------------------------------------------- */
/* ---------------------    Présentation    ---------------------- */
/* --------------------------------------------------------------- */

.presentation {
    display: flex;
    justify-content: space-evenly;
    margin: 0 5%;
    align-items: center;
    height: 100%;
}

.portrait {
    display: flex;
    flex-basis: 25%;
    position: relative;
}

.bloc-presentation {
    color: white;
    flex-basis: 50%;
    height: 70%;
}

.bloc-presentation h1 {
    font-size: 5vw;
    margin: 0;
    width: auto;
    position: relative;
    z-index: 1;
    margin-bottom: 8%;
}

.bloc-presentation h1::after {
    content: "";
    position: absolute;
    width: 67%;
    height: 50%;
    top: 55%;
    left: -5%;
    background-color: var(--couleur-secondaire);
    z-index: -1;
}

.text-presentation {
    font-family: var(--police-texte-courant);
    height: 70%;
    overflow-y: auto;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0px -40px 50px -60px var(--couleur-fonce) inset;
    -webkit-box-shadow: 0px -40px 50px -60px var(--couleur-fonce) inset;
    -moz-box-shadow: 0px -40px 50px -60px var(--couleur-fonce) inset;
}

.span-bold {
    font-family: var(--police-texte-courant-bold);
    color: var(--couleur-secondaire);
}

.span-italic {
    font-family: var(--police-texte-courant-italic);
}

.text-presentation::-webkit-scrollbar {
    width: 10px;
}

.text-presentation::-webkit-scrollbar-thumb {
    background-color: var(--couleur-secondaire);
    border-radius: 50px;
}

.text-presentation::-webkit-scrollbar-track {
    background-color: var(--couleur-fonce);
    border-radius: 50px;
}

.text-presentation p {
    margin: 0;
    margin-bottom: 5%;
    width: auto;
    position: relative;
    line-height: 2em;
    z-index: 1;
}

.text-presentation p:last-child {
    margin-bottom: 0;
}

/* --------------------------------------------------------------- */
/* -----------------------    Contact    ------------------------- */
/* --------------------------------------------------------------- */

.flex-contact {
    display: flex;
    justify-content: center;
    gap: 5%;
    align-items: center;
    height: 100%;
    color: white;
}

.coordonnees-contact {
    display: flex;
    align-items: center;
    gap: 2em;
    margin-bottom: 1em;
}

.copy-button {
    position: relative;
    padding: 4px 15px;
    border: 2px solid var(--couleur-secondaire);
    background-color: var(--couleur-principal);
    color: white;
    cursor: pointer;
    font-size: 1em;
    transition: all 350ms ease;
    font-family: var(--police-bold);
}

.copy-button:hover {
    background-color: var(--couleur-secondaire);
    color: var(--couleur-principal);
}

.bulle-copy {
    position: absolute;
    width: 50vh;
    top: -10%;
    left: 50%;
    transform: translate(-50%, -100%);
    background-color: var(--couleur-fonce);
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s;
    font-family: var(--police-bold-italic);
    line-height: 1.5em;
}

.show-bulle-copy .bulle-copy {
    opacity: 1;
}

.coordonnees-contact div {
    width: 50px;
}

.bloc-contact-coordonnees {
    flex-basis: 20%;
}

.bloc-contact-coordonnees .bouton-cv {
    margin-top: 5vh;
    width: 100%;
    padding: 5px;
    border: 2px solid var(--couleur-secondaire);
    background-color: var(--couleur-principal);
    cursor: pointer;
    color: white;
    font-size: 1.3em;
    font-family: var(--police-bold);
    transition: all 350ms ease;
}

.bloc-contact-coordonnees .bouton-cv:hover {
    background-color: var(--couleur-secondaire);
    color: var(--couleur-principal);
}

.bloc-contact-coordonnees a {
    text-decoration: none;
    width: 100%;
    height: 100%;
}

.bloc-contact-formulaire {
    flex-basis: 40%;
}

.bloc-contact-formulaire p {
    font-family: var(--police-texte-courant);
}

.bloc-contact-formulaire h1 {
    font-size: 5vh;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.bloc-contact-formulaire h1::after {
    content: "";
    position: absolute;
    width: 55%;
    height: 50%;
    top: 60%;
    left: -3%;
    background-color: var(--couleur-secondaire);
    z-index: -1;
}

.formulaire-contact {
    margin-top: 6vh;
    padding-left: 2vw;
}

.parent-bouton-formulaire {
    display: flex;
    justify-content: flex-end;
}

.formulaire-contact button {
    padding: 5px;
    border: 2px solid var(--couleur-secondaire);
    background-color: var(--couleur-principal);
    cursor: pointer;
    color: white;
    font-size: 1.3em;
    font-family: var(--police-bold);
    transition: all 350ms ease;
}

.formulaire-contact button:hover {
    background-color: var(--couleur-secondaire);
    color: var(--couleur-principal);
}

.formulaire-contact div {
    margin-bottom: 2vh;
}

.formulaire-contact label {
    text-transform: uppercase;
    font-family: var(--police-bold);
}

.formulaire-contact div input,
textarea {
    border: 0;
    width: 98%;
    margin-top: 1vh;
    padding: 1%;
    font-family: var(--police-book);
}

textarea {
    height: 15vh;
    resize: none;
}

/* --------------------------------------------------------------- */
/* ---------------------    Réalisations    ---------------------- */
/* --------------------------------------------------------------- */

.group-boutons-realisations {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15vh;
    height: 100%;
}

.boutons-realisations {
    display: flex;
    justify-content: space-evenly;
    height: 20%;
}

.boutons-realisations a {
    display: flex;
    justify-content: center;
    width: 30%;
    height: 100%;
}

.boutons-realisations button {
    text-transform: uppercase;
    width: 100%;
    height: 100%;
    border: 5px solid var(--couleur-secondaire);
    background-color: var(--couleur-principal);
    cursor: pointer;
    color: white;
    font-size:4.5vw;
 
    font-family: var(--police-bold);
    transition: all 350ms ease;
}

.boutons-realisations button:hover {
    background-color: var(--couleur-secondaire);
    color: var(--couleur-principal);
}

.interface-realisations {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 20%;
    gap: 2vh;
    overflow-y: auto;
    height: 80vh;
    margin-top: 5vh;
    padding: 0 0.9%;
    border-radius: 12px;
    box-shadow: 0px -40px 50px -60px var(--couleur-fonce) inset;
}

.bloc-realisation-presentation {
    flex-basis: 48%;
    cursor: pointer;
}

.img-realisation-presentation {
    aspect-ratio: 2/1;
    overflow: hidden;
    border: 10px solid var(--couleur-secondaire);
    border-bottom: none;
    pointer-events: none;
}

/*.img-realisation-presentation img{
    transform: translateY(-25%);
    object-fit: contain;
}*/

.titre-realisation-presentation {
    width: 100%;
    background-color: var(--couleur-secondaire);
    text-align: center;
    margin: 0;
    padding: 5% 0;
    text-transform: uppercase;
    font-family: var(--police-bold);
    font-size: 2em;
    pointer-events: none;
}

.interface-realisations::-webkit-scrollbar {
    width: 10px;
}

.interface-realisations::-webkit-scrollbar-thumb {
    background-color: var(--couleur-secondaire);
    border-radius: 50px;
}

.interface-realisations::-webkit-scrollbar-track {
    background-color: var(--couleur-fonce);
    border-radius: 50px;
}

.conteneur-detail-realisation {
    height: 100%;
    position: relative;
}

.bloc-detail-realisation {
    display: flex;
    justify-content: center;
    gap: 5%;
    height: 100%;
    align-items: center;
}

.galerie {
    flex-basis: 35%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    position: relative;
}

.groupe-rond {
    display: flex;
    justify-content: center;
    gap: 1em;
    margin-top: 20px;
}

.rond-galerie {
    cursor: pointer;
    width: 30px;
    height: 30px;
    background-color: var(--couleur-fonce);
    border-radius: 50%;
}

.rond-galerie-actif {
    border: 5px solid var(--couleur-secondaire);
}

.img-detail-realisation {
    display: flex;
    width: 100%;
    position: relative;
    height: 80%;
    overflow: hidden;
    
    overflow-y: auto;
}

.img-detail-realisation a {
    width: 100%;
}

.img-detail-realisation::-webkit-scrollbar {
    width: 10px;
}

.img-detail-realisation::-webkit-scrollbar-thumb {
    background-color: var(--couleur-secondaire);
    border-radius: 50px;
}

.img-detail-realisation::-webkit-scrollbar-track {
    background-color: var(--couleur-fonce);
    border-radius: 50px;
}

.infos-detail-realisation {
    color: white;
    flex-basis: 30%;
    height: 70%;
}

.titre-detail-realisation {
    font-size: 2.5vw;
    margin: 0;
    width: auto;
    position: relative;
    z-index: 1;
    margin-bottom: 8%;
}

.titre-detail-realisation::after {
    content: "";
    position: absolute;
    width: 110%;
    height: 50%;
    top: 60%;
    left: -5%;
    background-color: var(--couleur-secondaire);
    z-index: -1;
}

.description-detail-realisation {
    padding: 5%;
    line-height: 200%;
    height: 80%;
    overflow-y: auto;
}

.description-detail-realisation::-webkit-scrollbar {
    width: 10px;
}

.description-detail-realisation::-webkit-scrollbar-thumb {
    background-color: var(--couleur-secondaire);
    border-radius: 50px;
}

.description-detail-realisation::-webkit-scrollbar-track {
    background-color: var(--couleur-fonce);
    border-radius: 50px;
}

.croix {
    position: absolute;
    top: 5%;
    right: 15%;
    font-size: 3em;
    margin: 0;
    padding: 0 10px;
    color: white;
    border: 3px solid var(--couleur-secondaire);
    cursor: pointer;
    transition: all 350ms ease;
}

.croix:hover {
    background-color: var(--couleur-secondaire);
    color: var(--couleur-principal);
}

.youtube-responsive {
    position: relative;
    overflow: hidden;
    width: 35%;
}
.youtube-responsive::after {
    display: block;
    content: "";
    padding-top: 56.25%;
}
.youtube-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hover-site-web{
    position: relative;
    display: flex;

}

.hover-site-web::after{
    content: "Voir le lien";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #242331bd;
    border: solid 5px var(--couleur-secondaire);
    box-sizing: border-box;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--couleur-secondaire);
    font-size: 4em;
    text-transform: uppercase;
    font-family: var(--police-bold);
    backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity 350ms ease;
    pointer-events: none;
}

.hover-site-web:hover::after{
    opacity: 1;
}

.hover-site-web::before{
    box-sizing: border-box;
    content: "";
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    width: 100%;
    height: 102%;
    border: solid 7px var(--couleur-secondaire);
    animation: borderAnimation 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

.hover-site-web-eng{
    position: relative;
    display: flex;

}

.hover-site-web-eng img{
object-fit: cover;
}

.hover-site-web img{
    object-fit: cover;
}

.hover-site-web-eng::after{
    content: "Show link";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #242331bd;
    border: solid 5px var(--couleur-secondaire);
    box-sizing: border-box;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--couleur-secondaire);
    font-size: 4em;
    text-transform: uppercase;
    font-family: var(--police-bold);
    backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity 350ms ease;
    pointer-events: none;
}

.hover-site-web-eng:hover::after{
    opacity: 1;
}

.hover-site-web-eng::before{
    box-sizing: border-box;
    content: "";
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    width: 100%;
    height: 102%;
    border: solid 7px var(--couleur-secondaire);
    animation: borderAnimation 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

@keyframes borderAnimation {
    0%{
        opacity: 0;
    }
    10% {
        width: 100%;
        height: 102%;
        opacity: 1;
    }
    50% {
        width: 110%;
        height: 110%;
        border: solid 1px transparent; /* Pour rendre le border invisible */
    }
    100% {
        width: 120%;
        height: 120%;
        border: solid 0px transparent;
    }
}

@keyframes borderAnimationMobile {
    0%{
        box-shadow: 0px 0px 0px 0px transparent /* Pour rendre le border invisible */
    }
    10% {
        box-shadow: 0px 0px 0px 5px var(--couleur-secondaire) /* Pour rendre le border invisible */
    }
    50% {

        box-shadow: 0px 0px 0px 1px transparent /* Pour rendre le border invisible */
    }
    100% {

        box-shadow: 0px 0px 0px 0px transparent
    }
}

.img-site-web{
    overflow: visible;
}

.nav-mobile{
    display: none;
}

.display-none{
    display: none;
}

.fleche-gauche{
    user-select: none;
    position: absolute;
    transform: translateY(-50%);
    top: 47%;
    left: 3%;
    font-size: 5vw;
    color: var(--couleur-fonce);
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: white;
    opacity: 0.8;
    cursor: pointer;
    z-index: 5;
}

.fleche-droit{
    user-select: none;
    position: absolute;
    transform: translateY(-50%);
    top: 47%;
    right: 3%;
    font-size: 5vw;
    color: var(--couleur-fonce);
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: white;
    opacity: 0.8;
    cursor: pointer;
    z-index: 5;
}

footer{
    display: none;
}


/* --------------------------------------------------------------- */

@media screen and (max-width: 768px) {

    body{
        overflow: auto;
        width: 100%;
    }


    .fleche-gauche, .fleche-droit{

        top: 44%;
        font-size: 10vw;
        -webkit-text-stroke-width: 1px;
       
    }

    .hover-site-web::before{
display: none;
    }
    .hover-site-web-eng::before{
        display: none;
            }

    header{
        position: fixed;
        z-index: 1000000;
        width: 100vw;
    }

    main {
        background-color: var(--couleur-principal);
        width: 100vw;
        height: auto;
        position: relative;
    }
    
    .titre-gauche {
        width: 100vw;
        transform: rotate(0deg) translate(0, 0);
        position: relative;
        font-size: 3.5em;
        text-align: center;
        transform-origin: initial;
        top: 0;
        left: 0;
        margin-bottom: 50px;
        padding-top: 100px;
        user-select: auto;
        pointer-events: visible;
    }
    
    
    .titre-droit {
        display: none;
    }

    section {
        width: 100%;
        height: auto;
        margin: 0;
        left: 0;
        position: relative;
        transition: none;
    }

    #section-accueil{
        height: 100vh;
    }

    #section-realisations{
        display: none;
    }

    #section-design{
        margin-bottom: 20px;
    }

    .monogramme {
        width: 10%;
    }
    
    nav {
        display: none;
    }
    
    .grand-nav {
        display: none;
    }
    
    .petit-nav {
        display: none;
    }
    
    .bouton-nav {
        display: none;
    }
    
    .bandeau {
        display: none;
    }
    
    #box-realisations {
        display: none;
    }
    
    .menu-deroulant {
        display: none;
    }
    
    .grand-menu-deroulant {
        display: none;
    }
    
    .petit-menu-deroulant a {
        display: none;
    }

    .nav-mobile{
        display: block;
    }

    .nav-mobile p{
        color: var(--couleur-fonce);
        font-size: 3em;
        margin: 0;
        padding: 0;
    }

    .menu-mobile{
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: auto;
        background-color:var(--couleur-secondaire);
    }

    .list-mobile{
        display: flex;
        flex-direction: column;
        padding: 0;
        margin: 50px 0;
    }

    .list-mobile li{
        display: flex;
        align-items: center;
        justify-content: end;
  
        gap: 1em;
        width:45%;
        height: 20px;
        font-family: var(--police-bold);
        position: relative;
        margin: 0 auto;
        margin-top: 50px;
    }

    .list-mobile li:first-child{
        margin-top: 0;
    }

    .list-mobile li .icone-nav{
        display: flex;
        justify-content: center;
    }

    .list-mobile li a{
        font-size: 1.5em;
        color: var(--couleur-fonce);
        text-decoration: none;
    }

    .sous-menu-mobile{
        font-family: var(--police-book-italic) !important;
        margin-top: 10px !important;
    }

    .sous-menu-mobile a{
        font-size: 1.2em !important;
        color: var(--couleur-fonce);
        text-decoration: none;
    }

    .presentation {
        display: block;
        justify-content: space-evenly;
        margin: 0 5%;
        align-items: center;
        height: 100%;
    }

    .bloc-presentation h1 {
        font-size: 3em;
        margin: 0;
        width: auto;
        position: relative;
        z-index: 1;
        margin-bottom: 8%;
    }
    
    .bloc-presentation h1::after {
        content: "";
        position: absolute;
        width: 67%;
        height: 50%;
        top: 55%;
        left: -5%;
        background-color: var(--couleur-secondaire);
        z-index: -1;
    }

    .portrait {
        display: block;
        flex-basis: 25%;
        position: relative;
    }
    
    .bloc-presentation {
        color: white;
        flex-basis: 50%;
        height: 70%;
    }
    
    .text-presentation {
        font-family: var(--police-texte-courant);
        height: 55%;
        overflow-y: auto;
        padding: 25px;
        border-radius: 20px;
        box-shadow: 0px 0px 0px 0px var(--couleur-fonce) inset;
        -webkit-box-shadow: 0px 0px 0px 0px var(--couleur-fonce) inset;
        -moz-box-shadow: 0px 0px 0px 0px var(--couleur-fonce) inset;
    }
    

    .interface-realisations {
        display: block;
        justify-content: center;
        flex-wrap: wrap;
        margin: 10%;
        gap: 4%;
        overflow-y: visible;
        height: auto;
        margin-top: 5vh;
        padding: 0 0.9%;
    }

    .bloc-realisation-presentation {
        margin-bottom: 20%;
    }

    .deco-centre {
        transform: translate(-50%, -50%);
        top: 50%;
        left: 50%;
        width: 80%;
    }

    .flex-contact{
        display: flex;
        flex-direction: column-reverse;
        padding: 0 5%;
        
    }

    #section-contact{
        padding-bottom: 50px;
    }

    .coordonnees-contact {
        display: flex;
        align-items: center;
        gap: 0.5em;
        font-size: 0.8em;
        margin-bottom: 1em;
    }

    .bloc-contact-coordonnees{
        margin-top: 20px;
    }

    .portrait{
        width: 60%;
        margin: 0 auto;
        margin-bottom: 20px;
    }

    .bloc-contact-coordonnees .bouton-cv {
        
        margin-top: 5vh;
        width:100%;
        padding: 5px;
        margin: 0 auto;
        border: 2px solid var(--couleur-secondaire);
        background-color: var(--couleur-principal);
        cursor: pointer;
        color: white;
        font-size: 1.3em;
        font-family: var(--police-bold);
        transition: all 350ms ease;
        
    }

    .icone-contact{
        flex-basis: 8%;
    }

    .conteneur-detail-realisation{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        padding: 20px;
        z-index: 1000;
        background-color: var(--couleur-principal);
    }

    .bloc-detail-realisation{
        display: flex;
        flex-direction: column;
        justify-content: end;
        gap: 1em;
    }

    .rond-galerie{
        width: 15px;
        height: 15px;
    }

    .groupe-rond{
        gap: 0.5em;
    }

    .rond-galerie-actif{
        border-width: 2px;
    }

    .galerie {
        flex-basis: 35%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: auto;
        max-height: 42vh;
        
    }

    .description-detail-realisation{
        max-height: 20vh;
        font-size: 1em;
        margin-bottom:25px;
    }

    .croix {
        position: absolute;
        top: 11%;
        right: 3.5%;
        font-size: 3em;
        margin: 0;
        padding: 0 10px;
        color: white;
        border: 3px solid var(--couleur-secondaire);
        cursor: pointer;
        transition: all 350ms ease;
    }

    .titre-detail-realisation{
        font-size:1.5em;
        margin-bottom: 10px;
    }



    footer{
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--couleur-fonce);
        color: var(--couleur-secondaire);
        font-size: 1.5em;
        font-family: var(--police-book);
        width: 100%;
        height: 150px;
    }

    .hover-site-web::after{
        content: "Voir le lien";
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: #242331bd;
        border: solid 5px var(--couleur-secondaire);
        box-sizing: border-box;
        top: 0;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: var(--couleur-secondaire);
        font-size: 2.5em;
        text-transform: uppercase;
        font-family: var(--police-bold);
        backdrop-filter: blur(3px);
        opacity: 1;
        transition: opacity 350ms ease;
        pointer-events: none;
    }

    .hover-site-web-eng::after{
        content: "Show Link";
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: #242331bd;
        border: solid 5px var(--couleur-secondaire);
        box-sizing: border-box;
        top: 0;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: var(--couleur-secondaire);
        font-size: 2.5em;
        text-transform: uppercase;
        font-family: var(--police-bold);
        backdrop-filter: blur(3px);
        opacity: 1;
        transition: opacity 350ms ease;
        pointer-events: none;
    }

    .youtube-responsive {
        position: relative;
        overflow: hidden;
        width: 100%;
        margin-bottom: 40px;
    }
    .youtube-responsive::after {
        display: block;
        content: "";
        padding-top: 56.25%;
    }
    .youtube-responsive iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .img-detail-realisation{
        display: flex;
        box-sizing: border-box;
        box-shadow: 0px 0px 0px 5px var(--couleur-secondaire);
        animation: borderAnimationMobile 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
    }

    .insta-icon{
        cursor: pointer;
        aspect-ratio: unset;
        width: 30px;
        height: 30px;

    }
    .bloc-contact-formulaire h1{
        display: none;
    }

    .img-site-web{
        margin-bottom: 40px;
    }

    #section-contact .asset-deco{
        display: none;
    }

    #section-presentation .asset-deco{
        display: none;
    }

    .portrait .asset-deco{
        display: block !important;
    }

    .deco-1 {
        top: 7%;
        right: 10%;
        width: 10%;
    }
    
    .deco-2 {
        top: 75%;
        right: 10%;
        width: 10%;
    }
    
    .deco-3 {
        top: 25%;
        left: 15%;
        width: 10%;
    }
    
    .deco-4 {
        top: 75%;
        left: 0%;
        width: 30%;
    }
    
    .deco-5 {
        top: 30%;
        left: 75%;
        width: 15%;
    }
}