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

/*Mes Typographies*/

@font-face {
    font-family: "jetBrains Mono";
    src: url(font/JetBrainsMono[wght].woff2) format("woff2");
    font-weight: 100 900;
    font-display: swap;
}
@font-face {
    font-family: "Inter";
    src: url(font/inter-latin-400-normal.woff2) format("woff2");
    font-weight: 400;
    font-display: swap;
}

/*Mes variable*/

:root{
    --white1: rgb(248, 245, 240);
    --white2: rgb(255, 255, 255);
    --black1: rgb(28, 28, 28);
    --black2: rgb(15, 15, 15);
    --padding-section: clamp(2rem, 3vw, 4rem);
    --padding: clamp(1rem, 2vw, 2rem);
}


body{
    font-family: "jetBrains Mono","Inter", monospace;
    background-color: var(--black1);
    color: var(--white1);
    cursor: url('Curseur/normal-2.svg') 4 4, auto;

}

/*Enléve les bar de scroll*/
body::-webkit-scrollbar {
  display: none;
}

a:hover, ul li:hover {
    cursor: url('Curseur/hover1.svg') 4 4, pointer;
}

a:active {
    cursor: url('Curseur/click.svg') 4 4, auto;
}

/*Taille, Couleur, typo, Graisse des texte*/

h1{
    font-size: clamp(2.25rem, 5vw, 4rem);
    color: var(--white1);
    text-transform: uppercase;
    font-weight: 700;
}

h2{
    font-size: clamp(1.375rem, 3vw, 2.5rem);
    color: var(--white1);
    text-transform: uppercase;
    font-weight: 700;
}

h3{
    font-size: clamp(1.125rem, 2vw, 1.75rem);
    color: var(--white1);
    text-transform: uppercase;
    font-weight: 700;
}

p{
    font-family: "Inter";
    font-size: clamp(0.875rem, 1vw, 1.125rem);
    max-width: 60ch;
    font-weight: 400;
}

a{
    font-size: clamp(1rem, 2vw, 1.25rem);
}

ul{
    list-style-type: none;
}

/*Les bouttons*/

/*Bouton noir + le hover*/

.btnDark{
    background-color: var(--black1);
    border: 2px solid  var(--white1);
    padding: 1rem;
    color: var(--white1);
    text-transform: uppercase;
    font-family: "jetBrains Mono";
    border-radius: 10px;
    text-decoration: none;
    transition: 0.2s linear;
}
.btnDark:hover{
    border: 2px solid  var(--white2);
    background-color: var(--black2);
    color: var(--white2);
    transform: scale(0.9);
}

/*Bouton blanc + le hover*/

.boutonW{
    background-color: var(--white1);
    text-transform: uppercase;
    color: var(--black1);
    padding: 1rem;
    text-decoration: none;
    border-radius: 10px;
    border: 2px solid var(--white1);
    display: block;
    transition: 0.2s linear;
}

.boutonW:hover{
    background-color: var(--black2);
    color: var(--white2);
    border-color: var(--white2);
    transform: scale(0.9);
}


/* Ecran de chargement */
#loaderScreen{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black1);
    z-index: 99;
    transition: opacity 1.5s ease-in;
}

.progressContainer {
    height: clamp(300px, 50vw, 600px);
    width: clamp(300px, 50vw, 600px);
    text-align: center;
}

/* CERCLE DE PROGRESSION */
.progressCircle {
    position: relative;
    height: 100%;
    width:  100%;
    border-radius: 50%;
    background: conic-gradient(
        #2e2e2e 0%
    );
    z-index: 1;
}

/* L'IMAGE */
.progressContainer .iconOnLoading {
    position: absolute;
    background-color: var(--black1);
    inset: 2px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border-radius: 50%;
    z-index: 3;

}

.progressContainer .iconOnLoading img {
    width: 85%;
    height: auto;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
}


#loaderScreen.disable {
    opacity: 0;
    pointer-events: none;
}

.progressContainer span{
    color: var(--white1);
    margin: 1rem;
    display: inline-block;
    font-size: clamp(1.125rem, 2vw, 1.75rem);
}

/*Fait disparaitre l'ecran de chargement*/



/*Header*/

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--black1);
    height: clamp(4rem, 6vw, 5rem);
    padding: 0 1rem;
    border-bottom: 1px solid var(--white1);
    transition: transform 0.3s ease-in;
}

.menuHeader {
    height: 100%;
    width: 100%;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    position: fixed;
    z-index: 100;
    top: 0;
    right: -450px; /*cache le menu sur mobile*/
    background-color: var(--black1);
    opacity: 0.95;
    transition: right 0.5s ease;
}

/*fait aparaitre le menu en mobile*/

.menuHeader.active{
     right: 0;
}

.menuHeader .close{
    display: block;
    text-align: start;
    padding: 1rem 0.5rem;
    height: 4rem;
    cursor: pointer;

}


.menuHeader nav a{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 3rem;
    height: 44px;
    width: 100%;
    text-decoration: none;
    text-transform: uppercase;
    color: var(--white1);
    opacity: 1;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.menuHeader nav a:hover{
    opacity: 0.7;
    transform: scale(0.9);
}

.btnMenu{
    color: var(--white1);
    width: 2.75rem;
    height: 2.75rem;
}

.menuHeader ul{
    margin: 0;
    padding: 0;
}


.logo{
    line-height: 0;
}


.logo img{
    height: 2rem;
    width: 2rem;
}

header i{
    color: var(--white1);
    font-size: clamp(0.625rem, 2vw, 0.750rem);
    font-style: normal;
    text-align: center;
    display: inline-block;
    width: 100%;
    margin: auto 0 2rem 0;
}

/*Header Desktop*/

.headerDesktop  {
    display: none;
}


.headerDesktop nav ul {
    display: flex;
    gap: 0.5rem;
}

.headerDesktop nav a {
    display: block;
    padding: 1rem;
    text-decoration: none;
    color: var(--white1);
    text-transform: uppercase;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.headerDesktop nav a:hover {
    opacity: 0.7;
    transform: scale(0.9);
}

.headerDesktop nav a.disable {
    pointer-events: none;
    cursor: default; /* Optionnel : pour montrer que ce n'est pas cliquable */
}

.headerDesktop nav a.disable:hover {
    opacity: 1;
    transform: scale(1);
}

.open, .close {
    display: block;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.close:hover, .open:hover{
    opacity: 0.7;
    transform: scale(0.9);
}

/*Break point header */

@media (min-width: 1024px) {

    header{
        padding: 1rem 2rem;
        opacity: 0.95;
        transition: all 0.3s;
    }

    .open, .menuHeader {
        display: none;
    }

    body#index header {
        width: 100%;
        padding: 1rem 2rem;
        position: sticky;
        top: 0;
        z-index: 99;
    }

    body#index header.hide{
        opacity: 0;
    }


    .headerDesktop {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .logo img{
        height: 3rem;
        width: 3rem;
    }


}

/*Fin du header*/



/*Section Hero*/

#hero{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    width: 100%;
    padding: var(--padding-section);
}

#hero h1{
    text-align: center;
}

#hero h2{
    text-align: center;
}

#hero p{
    padding: var(--padding) 0;
}

.heroPosition{
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.heroPosition svg{
    height: 1rem;
    width: 1rem;
}

.heroRigth{
    width: 70%;
}

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

.containerHeroIcon{
    perspective: 400px;
}

#heroIcon{
    width: 100%;
    transform-style: preserve-3d;
    transition: transform 0.1s ease;
    transform: rotate(0deg);
    user-select: none;
    -webkit-user-drag: none;
}

/*Animation aux click de l'icon section hero*/

@keyframes oneClick{
    0%{
        transform: rotateY(0deg);
    }
    100%{
        transform: rotateY(720deg);
    }


}

/*Animation Double click de l'icon section hero*/

@keyframes doubleClick{
    from{

    transform: rotate(0deg);
   }
   to{

    transform: rotate(360deg);
   }
}

@media(min-width: 1024px){

    #hero {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin: 0 auto;
        gap: 2rem;
        max-width: 1440px;
    }

    #hero h1{
        text-align: start;
    }

    #hero h2{
        text-align: start;
    }

    .heroLeft{
        display: flex;
        flex-direction: column;
        width: 50%;
    }

    .heroRigth{
        width: 50%;
        padding: 4rem;
        margin: 0;
    }

    .heroPosition{
    justify-content: flex-start;
    }

}


/* Section Marquee */

#marquee {
  overflow: hidden;
  padding: var(--padding-section) 0;
}

#marquee span {
  font-size: clamp(0.875rem, 1vw, 1.25rem);
  color: var(--white1);
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 1rem;
}

.trackM {
    display:  flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.contentMarquee{
    display: flex;
}

/*Animation du Marquee*/

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/*Section Projets*/

#projets {
    scroll-margin-top: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--padding-section);
    width: 100%;

}

.myProjets{
    padding: var(--padding);
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 32px;
}

#projets h3{
    margin-right: auto;
}

#projets img {
    max-width: 100%;
    height: auto;
}


.projet1{
    padding: 1rem 0;
}

.projet1Right{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.projet1Right p{
    padding: var(--padding) 0;
    margin-right: auto;
}

.projet1Right .boutonW{
    display: inline-block;
    margin: 0 auto;
}

@media(min-width: 1024px){
    #projets{
        max-width: 1440px;
        margin: 0 auto;
    }
    .projet1{
        display: flex;
        flex-direction: row-reverse;
        width: 100%;
        gap: 64px;
        padding: 1rem 0;
    }
    .projet1Right{
        align-items: flex-start;
    }
    .projet1Right .boutonW{
        margin: auto auto 0 0;
    }
    .projet2{
        display: flex;
        flex-direction: row;
        width: 100%;
        gap: 64px;
        padding: 1rem 0;
    }

}

/*Animation lors du hover des image de mes projets*/
#projets .projet1Left{
    transition: transform 0.2s ease-in;
    transform: rotate(0deg);
}


#projets .projet1Left:hover{
    transform: rotate(-2deg);
    transition: transform 0.2s ease-in;
}


/*Section mes compétences*/

#comp{
    scroll-margin-top: 64px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    width: 100%;
    padding: var(--padding-section) 0;
    max-width: 1440px;
}

#comp .container{
    margin: 0 auto;
    padding: var(--padding-section) 0;
    width: 80%;
}

#comp h2{
    display: flex;
    justify-content: center;
}

#comp  p{
    padding: 0.5rem;
}

.topComp, .botComp{
    display:flex;
    flex-direction: column;
    align-items: center;
}


.comp1{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem;
    width: 100%;
}



.comp1:hover{
    background-color: var(--black2);
    cursor: url('Curseur/hover1.svg') 4 4, pointer;
}

.mainComp{
    border-bottom: 1px solid var(--white1);
    border-top: 1px solid var(--white1);
    margin: 0.5rem;
    width: 100%;
}

.comp1 svg {
    width: 1.5rem;
    height: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s linear;
    color: var(--white1);
}

.comp1.openMoin svg {
    transform: rotate(90deg);
}


.contentComp{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s linear;
}


.contentComp ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin: 0.5rem;
}
.contentComp li  {
    margin: 2px 0;
}

.contentComp.openComp{
    max-height: 500px;
}

/*Desktop*/

@media (min-width: 1024px) {
    .topComp{
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 32px;
        width: 100%;
        padding-bottom: var(--padding);
    }

    .botComp{
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 32px;
        width: 100%;
    }

    .mainComp{
        max-width: 330px;
    }
}


/*Section me contacter*/
#contact{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--padding-section);
}

#contact p{
    padding: var(--padding) 0;
    text-align: center;
}


/*page blog*/

#blog{
    margin: var(--padding-section) 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.blogRight{
    width: 90%;

}

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

.blogLeft h1{
    text-align: center;
}

.blogLeft p{
    padding: var(--padding) 0;
}

.blogLeft{
    margin: var(--padding);
}

@media(min-width: 1024px){

    #blog{
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
    max-width: 1440px;
    gap: 4rem;
    margin: var(--padding-section) auto;
    }

    .blogLeft h1{
    margin: 0;
    text-align: start;
    }

    .blogRight{
    width: 50%;
    }
}


/*Page formulaire*/
#contactMe{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: var(--padding-section) 0;
}

.contactTop{
    display: flex;
    flex-direction: column;

    align-items: center;
    padding: var(--padding);
}

.contactBot{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: var(--padding);
}

#contactMe h1{
    margin: 0 auto;
}

.iframeCont h2{
    text-align: center;
    padding-bottom: 0.5rem;
}

.contactBot h2{
    padding-bottom: 0.5rem;
}

#contactMe p{
    padding:  var(--padding) 0;
}

#contactMe .email{
    text-align: center;
    padding: 1rem 0;
    font-size: 1.25rem;
    color: var(--white1);
    text-decoration: underline;
}

.mediaContact, .flexCenter{
    display: flex;
    justify-content: center;
    align-items: center;
}

.blockEmail{
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease-out;
    cursor: pointer;
}

.blockEmail .copieEmail img{
    height: 32px;
    width:  32px;
}

.blockEmail:hover{
    transform: scale(0.9);
    opacity: 0.7;
}




.socialBtn {
  cursor: pointer;
  height: 50px;
  width: 50px;
  font-family: 'Titillium Web', sans-serif;
  color: var(--black1);
  border-radius: 10px;
  background: var(--white1);
  margin: 5px;
  transition: 0.3s;
  justify-content: center;
  text-decoration: none;
}

.socialBtn svg {
  height: 2rem;
  width: 2rem;
}

.socialBtn span {
  width: 0px;
  overflow: hidden;
  transition: 0.3s;
  text-align: center;

}

.socialBtn:hover {
  width: 150px;
  border-radius: 5px;
}

.socialBtn:hover span {
  padding: 2px 0;
  width: 80px;
}


#linkedin svg {
  fill: var(--black1);
}

#github {
  fill: var(--black1);
}

.iframeCont{
    margin: var(--padding);
    height: 300px;
    width: 100%;
}

iframe{
    border-radius: 10px;
    height: 100%;
    width: 100%;
}
/*Section formulaire*/

form{
    width: 100%;
    max-width: 700px;
}

label{
    font-size: clamp(1rem, 2vw, 1.25rem);
    text-transform: uppercase;
}

input[type="text"],
input[type="email"]{
    width: 100%;
    height: 50px;
    padding: 0.5rem;
    font-family: "inter";
    font-size: 16px;
    border-radius: 5px;
}

textarea{
    height: 150px;
    width: 100%;
    padding: 0.5rem;
    font-family: "inter";
    font-size: 16px;
    border-radius: 10px;
}

.cookies{
    font-size: 12px;
    font-family: 'jetBrains Mono';
}



.formContent{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0.25rem;
    padding: 1rem 0;
    border-radius: 15px;
}

.boxForm{
    display: flex;
    gap: 1rem;
    align-items: center;
}


.btnForm{
    margin: var(--padding) auto;
    font-family: 'jetBrains Mono';
    font-weight: 700;
    width: 100%;
    display: inline-block;
}

#contactMe .errorP{
    padding: 0;
    text-align: center;
    margin: 0 auto;
    color: red;
}

#contactMe .errorInput{
    outline: 1px solid red;
    outline-offset: -4px;
    animation: error 0.3s linear;
}

#contactMe .errorCheck{
    color: red;
    animation: error 0.3s linear;
}

#contactMe .emailValidate :is(img, h2){
    text-align: center;
    width: 100%;
    height: auto;
}

@keyframes error {
    0% {
        transform: translateX(0);
    }
    20% {
        transform: translateX(2px);
    }
    40% {
        transform: translateX(-2px);
    }
    60% {
        transform: translateX(2px);
    }
    80% {
        transform: translateX(-2px);
    }
    100% {
        transform: translateX(0);
    }
}



/*Responsive Formulaire*/
@media(min-width: 1024px){
    #contactMe{
        padding: var(--padding-section) 0;
        max-width: 1440px;
        margin: 0 auto;
    }

    .mainForm{
        display: flex;
        width: 100%;
        align-content: center;
    }

    .contactTop{
        width: 50%;

    }

    .contactBot{
        width: 50%;
    }

    .contactBot p{
        margin-right: auto;
    }
}

/*page projets*/

#columnLeft{
    display: none;
}
#contentLeft{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--padding-section) var(--padding);
}

#contentRight{
    background-color: var(--black2);
}

#contentLeft p{
    padding: var(--padding) 0;
}

#contentLeft h2{
    text-align: center;
}

#contentLeft li{
    display: flex;
    align-items: center;
    padding: 0.25rem;
}

#contentLeft li a{
    color: var(--white1);
    text-transform: uppercase;
    display: block;
    transition: transform 0.3s, opacity 0.3s;
    text-decoration: none;
}

#contentLeft li a:hover{
    opacity: 0.7;
    transform: scale(0.9);
}

#contentLeft ul{
    padding: var(--padding) 0;
}

@media(min-width: 768px){

    #columnLeft{
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    top: 0;
    height: 100%;
    width: 5%;
    border-right: 1px solid var(--white1);
    background-color: var(--black1);
    max-width: 80px;
    }

    /*Permet de cibler précisément le header et footer des page projets*/
    body#bodyProjet header,
    body#bodyProjet footer{
        display: none;
    }

    #columnLeft p{
        font-size: 12px;
        writing-mode: vertical-lr;
        transform: rotate(180deg);
        font-family: "jetBrains Mono";
        padding-top: 1rem;
    }

    #columnLeft img{
        margin: 1rem;
        height: 2rem;
        width: 2rem;
    }
    #contentLeft{
        background-color: var(--black1);
        width: 95%;
        margin-left: auto;
    }

    #contentRight{
        width: 95%;
        margin-left: auto;
    }
}


@media(min-width: 1024px){

    #columnLeft img{
        margin: 1rem;
        height: 3rem;
        width: 3rem;
    }

    #contentLeft{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: start;
        position: fixed;
        top: 0;
        left: 5%;

        width: 35%;
        height: 100%;

    }

    #contentRight{
        width: 60%;
        margin-left: auto;
    }

    .navDots {
        position: fixed;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 1000;
    }

    /* le style des points */
    .dot {
        border: 1px solid var(--white1);
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--black1);
        transition: background 0.3s, transform 0.3s;
    }

    .dot.active {
        background: var(--white1);
        transform: scale(1.3);
        border: 1px solid var(--black1);
    }

    #contentLeft h2{
        text-align: start;
    }

}

/*Contenu Des projets*/

/*¨Projet 1*/


#intro, #htmlCss, #jsMove, #jsKill, #jsDisplay{
    padding: var(--padding-section) 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#intro h2,  #htmlCss h2, #jsMove h2, #jsKill h2, #jsDisplay h2  {
    text-align: center;
}

.htmlCssContent div, #jsMove div, #jsKill div, #jsDisplay div{
    padding: var(--padding) 0;
    text-align: center;
}

.htmlCssContent div img, #jsMove div img, #jsKill img, #jsDisplay img{
    height: auto;
    width: 90%;
    padding-top: 1rem;
    text-align: center;
}

#intro p, #htmlCss p, #jsMove p, #jsKill p, #jsDisplay p, #logoIcon p, #temp p {
    margin: 0 auto;
    text-align: center;
    width: 55ch;
}

#intro p, #htmlCss p, #jsMove p, #jsKill p, #jsDisplay p, #logoIcon p, #temp p {
    margin: 0 auto;
    text-align: center;
    width: 55ch;
}
@media(max-width: 415px){
    #intro p, #htmlCss p, #jsMove p, #jsKill p, #jsDisplay p, #logoIcon p, #temp p {
    margin: 0 auto;
    text-align: center;
    width: 90%;
    }
}

/*Demo mini-jeu*/

#demoMap{
    background-color: var(--black2);
    width: 90%;
    height: 300px;
    overflow: hidden;
    border: 1px solid var(--white1);
    position: relative;

}

#demoMap img{
    position: absolute;
    transform: translate(-50%, -50%);
    will-change: transform;
    user-select: none;
    -webkit-user-drag: none;
    height: clamp(4rem, 6vw, 6rem);
    width: clamp(4rem, 6vw, 6rem);
}

#intro p a{
    color: var(--white1);
    transition: opacity 0.3s;
}

#intro p a:hover{
    opacity: 0.7;
}


@media(min-width: 768px){
    #intro p, #htmlCss p, #jsMove p, #jsKill p, #jsDisplay p, #logoIcon p {
    margin: 0 auto;
    text-align: center;
    }
}

@media(min-width: 1024px){

    #intro #demoMap{
    width: 60%;
    margin: var(--padding) auto;
    height: 400px;
    }

    .htmlCssContent div img, #jsMove div img, #jsKill img, #jsDisplay img{
    height: auto;
    width: 60%;
    padding: 1rem 0;
}
}

/*Projet 2*/

#contentRight #logoIcon, #contentRight #cursor, #contentRight #temp{
    padding: var(--padding-section) 0;
    text-align: center;
    width: 100%;
}

 #logoIcon p{
    margin: 0 auto;

}

#contentRight #logoIcon .logoName{
    padding: var(--padding) 0;
    width: 60%;
    max-width: 336px;
    margin: 0 auto;
}

#contentRight #logoIcon img, .logoName img{
    width: 100%;
    height: auto;
}


#contentRight #logoIcon .blockImg, #cursor .blockImg{
    padding: var(--padding) 0;
    width: 100%;
    margin: 0 auto;
}


#contentRight #logoIcon .blockImg div img{
    height: 4rem;
    width: 4rem;
}

#temp .template{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    padding: var(--padding);
}

#temp .template img{
    width: 90%;
    height: auto;
}

#temp a{
    display: inline-block;
}

@media(min-width: 768px){
    #contentRight #logoIcon .blockImg div img{
    height: 6rem;
    width: 6rem;
    }
}

@media(min-width: 1024px){
    #contentRight #logoIcon .blockImg div img{
    height: 8rem;
    width: 8rem;
    }

}

@media(min-width: 1440px){
    #temp .template{
    flex-direction: row;
    justify-content: center;
    }

}

/*Page mentions Légales*/

#mentionsLegales{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--padding-section);
}

#mentionsLegales p{
    padding: var(--padding) 0;
    text-align: start;
    width: 100%;
}

#mentionsLegales a{
    color: var(--white1);
}

#mentionsLegales h1, #mentionsLegales h2{
    text-align: center;
}

/*Pages Plan du site*/

#plan{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--padding-section);
    width: 100%;
    margin: 0 auto;
}
#plan h1{
    margin: 0 auto;
    text-align: center;
}

#plan a{
    color: var(--white1);
    display: block;
    transition:  transform 0.2s ease-out;
}
#plan a:hover{
    opacity: 0.7;
    transform: scale(0.9);
}

.containerPlan{
    padding: var(--padding);
}

#plan ul{
    list-style-type: disc;
    padding: 0 1rem;
}

#plan span{
    margin: 0 auto;
    font-size: 16px;
}

.contentPageA{
    padding: 0 0 0 1rem ;
}

.planProjets{
    padding: 0 2rem;
}

.contentPageB{
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    #plan{
        width: 80%;
        align-items: flex-start;
    }
}

/*Footer*/


footer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--padding-section);
    border-top: 1px solid var(--white1);
}

footer a, footer span, footer i {
    color: var(--white1);
    font-size: clamp(0.625rem, 2vw, 0.750rem);
    font-style: normal;
    text-align: center;
}

footer span{
    text-transform: uppercase;
    font-weight: bold;
}

footer ul{
    font-family: "Inter";
    text-transform: capitalize;
}

footer ul a{
    display: block;
    transition: transform 0.3s ease-out;
    padding: 0.125rem;
}
footer ul a.disable{
    pointer-events: none;
}

footer ul a:hover{
    opacity: 0.7;
    transform: scale(0.9);
}

footer ul a.disable:hover{
    opacity: 1;
    transform: scale(1);
}

.logoBrand{
    height: clamp(2rem, 4vw, 3rem);
    width: auto;
}


.liste{
    display: flex;
    flex-direction: row;
    gap: 2rem;
    padding: var(--padding) 0;
}

.liFooter {
    text-align: center;
}
