/**********************************************************
                        BODY CSS           
**********************************************************/
body{ /*propriétées générales de toutes les pages*/ 
    width: 100%;
    height: auto;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #F0F0F0;
    margin: 0px;
    padding: 0px;
    position: relative;
}
.theme-clair {
    background-color: #F0F0F0;
}
.theme-sombre {
    background-color: black;
}
.theme-sombre .prenom{
    color: #1F3751;
}
/**********************************************************
                        LIENS CSS           
**********************************************************/
a:hover{ /*Zoom sur les liens lorsqu'ils sont survolés*/
    transform: scale(1.1);
    transition: transform 0.1s ease-in-out;
}
a{ /*Suppression du soulignage des liens*/
    text-decoration: none;
    color: #1F3751;
    margin-right: 0%;
    padding-right: 0%;
}
/**********************************************************
                        HEADER CSS           
**********************************************************/
header{ /*Gestion comportement header avec les autres blocs*/
    background-color: #E1D6C3;
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100px;
    align-content: center;
    z-index: 10000;
    border-bottom: black solid 1px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0%;
}
header div:first-of-type{ /*CSS menu*/
    justify-content: flex-start;
    width: 40%;
    padding: 35px;
}
header div:last-of-type{
    justify-content: flex-end;
    width: 40%;
    padding: 35px;
    padding-right: 0%;
    margin-right: 0%;
}
header div a{ /*CSS gérer l'alignement horizontal menu*/
    background-color: #F0F0F0;
    border: solid 1px black;
    border-radius: 20px;
    color: #1F3751;
    font-size: 24px;
    font-weight: bold;
    margin-left: 1%;
    margin-right: 0%;
    padding: 1.5%;
    justify-content: center;
}
/**********************************************************
                        FOOTER CSS                           
***********************************************************/
footer{ /*gestion comportement footer avec les autres blocs*/
    color: #1F3751;
    background-color: #E1D6C3;
    font-size: 24px;
    font-weight: bold;
    position: relative;
    padding-top: 1%;
    padding-bottom: 1%;
    padding-left: 60px;
    padding-right: 30px;
    display: flex;
    align-items: center;
    gap: 30%;
    width: auto;
    height: auto;
}
footer img{ /*image dans le footer*/ 
    width: 20%;
    box-shadow: 5px 5px 4px #F0F0F0;
}
footer div{ /*alignement des textes*/
    max-width: 75%;
    align-self: center;
    text-indent: 50px;
    padding-left: 10px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}
footer div p span{ /*alligment du 1er texte*/
    text-align: center;
    text-indent: 0px;
}
footer div ul li a{ /*liste des liens*/
    color: #1F3751;
    text-decoration: none;
    list-style-type: none;
}
/**********************************************************
                        FONT CSS                           
***********************************************************/
h1{ /*Affichage des titres en H1*/
    display: inline-block;
    color: #1F3751;
    font-size: 64px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
}
h2{ /*Affichage des titres en H2*/
    font-size: 36px;
    text-align: center;
    padding: 10px;
    text-indent: 0px;
    font-weight: bold;
    color: #1F3751;
}
h3{ /*Affichage des titres en H2*/
    font-size: 24px;
    text-align: center;
    text-indent: 0px;
    font-weight: bold;
    color: #1F3751;
}
/**********************************************************
                    INDEX MAIN CSS                           
***********************************************************/
main{ /*Gestion comportement main avec les autres blocs*/
    position: relative;
    width: 100%;
    margin: 0px;
    padding: 0px;
    height: auto;
    margin-top: 100px;
}
.premiereSection img{ /*Photo de profil*/
    margin-right: 20px;
    margin-top: 20px;
    border-radius: 20px;
    width: 450px;
    box-shadow: -5px 5px 4px #E1D6C3;
}
.premiereSection p{ /*Message Bonjour...*/
    background-color: #E1D6C3;
    color: #1F3751;
    padding: 30px;
    border-radius: 20px;
    font-size: 64px;
    font-weight: bold;
    margin-left: 20px;
}
.premiereSection{ /*bloc intro (nom+Bonjour...+photo)*/
    display: flex;
    align-items: center;
    gap: 5%;
    width: 100%;
    margin-top: 7%;
}
#INDEX main #sectionIntroAnglais{ /*bloc intro (nom+Bonjour...+photo) page anglaise*/
    display: flex;
    align-items: center;
    gap: 13%;
    width: 100%;
    margin-top: 7%;
}
#INDEX main div{ /*alignement Nom+Bonjour...*/
    max-width: 100%;
    align-self: center;
}
/**********************************************************
                        BIOGRPAHIE CSS                           
***********************************************************/
#INDEX #APROPOS{ /*bloc biogrpahie*/
    scroll-margin-top: 130px;
    background-color: #E1D6C3;
    color: #1F3751;
    border-radius: 20px;
    margin: 20px;
    margin-top: 60px;
    margin-bottom: 0px;
    font-size: 20px;
    padding: 10px;
    text-indent: 50px;
}

#INDEX #APROPOS a{ /*liste des compétences*/
    text-decoration: underline;
    
}
/**********************************************************
                        TRAVAIL CSS                           
***********************************************************/
#INDEX .travail{ /*bloc du texte de présentation des travaux*/
    width: 100%;
    font-size: 20px;
    padding: 10px;
    text-indent: 50px;
    background-color: #E1D6C3;
    color: #1F3751;
    border-radius: 20px;
    margin: 20px;
    margin-top: 60px;
    margin-bottom: 0px;
}
#INDEX .travail ul{ /*liste des compétences*/
    margin-left: 40px;
}
#INDEX #TRAVAIL{ /*Gestion de l'aligmenent des icônes*/
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    scroll-margin-top: 70px;
}
#INDEX #TRAVAIL a {  /*Gestion de l'affichage des icônes*/
    width: 27%;
    margin: 2%;
}
#INDEX #TRAVAIL a img { /*Gestion de l'affichage des images dans les icônes*/
    width: 100%;
    height: 100%;
    padding: 0%;
    margin: 0%;
    border-radius: 22px;
    border-radius: 22px;
    border: solid 1px black;
    box-shadow: -5px 5px 4px #E1D6C3;
}
#INDEX #TRAVAIL .travail .lienGit{
    text-decoration: underline;
    color: #1F3751;
    padding: 0px;
    margin: 0px;
}
/**********************************************************
                        CONTACT CSS                           
***********************************************************/
#INDEX #CONTACT { /*bloc de contact*/
    background-color: #E1D6C3;
    color: #1F3751;
    margin-left: 20px;
    margin-right: 20px;
    padding: 0%;
    border-radius: 20px;
    margin-bottom: 60px;
}
#INDEX #CONTACT a{ /*liens (mail+linkedIn)*/
    color: #1F3751;
    text-decoration: underline;
}
#INDEX #CONTACT h2{ /*ajout propriété spécifique contact*/
    margin-bottom: 0px;
}
#INDEX .container { /*texte+formulaire de contact*/
    display: flex;
    flex-wrap: nowrap;
    padding: 40px;
    justify-content: center;
    align-items: flex-start;
    gap: 100px;
}
#INDEX .left { /*texte contact*/
    max-width: 500px;
}
#INDEX .left>div{
    width: 100%;
    padding: 0px;
    margin: 0px;
    text-align: center;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}
#INDEX .left>div aside{
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: center;
    margin: 1%;
}
#INDEX .left>div aside:first-of-type{
    gap: 1px;
}
#INDEX .left>div a{
    text-decoration: none;
    margin: 0%;
    padding: 0%;
}
#INDEX .right { /*formulaire de contact*/
    background-color: #E1D6C3;
    padding: 30px;
    border-radius: 10px;
    width: 50%;
}
#INDEX .contact-form { /*zone du formulaire de contact*/
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 0px;
    padding: 0px;
    width: 100%;
}
#INDEX .contact-form label{ /*textes du formulaire de contact*/
    text-align: center;
    color: #1F3751;
}
#INDEX .contact-form input, .contact-form textarea { /*zone d'écritures du formulaire de contact*/
    margin: 5px;
    padding: 10px;
    width: 50%;
    border: none;
    color: #1F3751;
    background-color: #F0F0F0;
    border-radius: 5px;
    font-family: Arial, Helvetica, sans-serif;
    
}
#INDEX .contact-form button { /*bouton envoyer*/
    background-color: #F0F0F0;
    color: #1F3751;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    align-items: center;
    margin-bottom: 5px;
    padding: 10px;
    width: 52%;
    height: auto;
    align-self: center;
}
#INDEX .contact-form button:hover{ /*bouton survolé*/
    background-color: #E1D6C3;
    color: #1F3751;
    border: solid 5px #1F3751;
}
/**********************************************************
                    PROJETS MAIN CSS                           
***********************************************************/
#PROJET main section:first-of-type{ /*bloc intro (nom+compétence+photo)*/
    display: flex;
    align-items: center;
    gap: 5%;
    width: 100%;
    margin-top: 7%;
}
#PROJET main section:first-of-type img{ /*Photo du projet*/
    margin-right: 20px;
    margin-top: 20px;
    border-radius: 20px;
    width: 400px;
    box-shadow: -5px 5px 4px #E1D6C3;
}
#PROJET main section:first-of-type div article{  /*numéro+intitulé compétence*/
    background-color: #E1D6C3;
    color: #1F3751;
    padding: 20px;
    border-radius: 20px;
    font-size: 20px;
    margin-left: 20px;
    margin-right: 20px;
    width: 100%;
}
#PROJET main section:first-of-type article h1{ /*numéro compétence*/
    color:#1F3751;
    margin-top: 20px;
    width: 100%;
}
#PROJET main section:first-of-type article p{ /*intitulé compétence*/
    text-align: center;
}
#PROJET main section:first-of-type div{ /*nom+compétence*/
    width: 70%;
}
/**********************************************************
                PROJETS PRESENTATION CSS                           
***********************************************************/
.presentation { /*paragraphe de présentation de chaque projet*/
    width: auto;
    background-color: #E1D6C3;
    color: #1F3751;
    border-radius: 20px;
    margin-top: 60px;
    margin-left: 20px;
    margin-right: 20px;
    padding:40px;
    margin-bottom: 60px;
    text-align: center;
    font-size: 20px;
}
/**********************************************************
                PROJETS TECHNOLOGIES CSS                           
***********************************************************/
.technologies{ /* liste des technologies utilisées par projet */
    width: auto;
    color: #1F3751;
    background-color: #E1D6C3;
    border-radius: 20px;
    margin-left: 20px;
    margin-top: 60px;
    margin-right: 20px;
    margin-bottom: 0px;
    padding: 40px;
    font-size: 20px;
}
/**********************************************************
                PROJETS VISUELS CSS                           
***********************************************************/
.visuels{ /* paragraphes des visuels de rendus de projets */
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: auto;
    background-color: #E1D6C3;
    border-radius: 20px;
    margin-left: 20px;
    margin-top: 60px;
    margin-right: 20px;
    margin-bottom: 0px;
    padding: 40px;
}
.visuels h2{ /* titres des visuels de rendus de projets */
    width: 100%;
    padding: 0px;
    padding-bottom: 50px;
    margin: 0px;
}
.visuels figure, .visuels div{ /* conteneurs des visuels de rendus de projets */
    color: #1F3751;
    font-size: 24px;
    text-align: center;
    width: 45%;
    height: auto;
    padding: 0px;
    margin: auto;
    border-radius: 22px;    
    margin-bottom: 50px;
    justify-content: space-between;
}
.visuels img{ /* images des visuels de rendus de projets */
    width: 100%;
    height: 100%;
    padding: 0%;
    margin: 0%;
    border-radius: 22px;
    border: solid 1px black;
    box-shadow: -5px 5px 4px #1F3751
}
.visuels video{ /* vidéos des visuels de rendus de projets */
    object-fit: cover;
    padding: 0%;
    margin: 0%;
    border-radius: 22px;
    border: solid 1px black;
    box-shadow: 5px -5px 4px #1F3751;
}
/**********************************************************
                PROJETS LIENS CSS                           
***********************************************************/
.liens{ /* texte lien github */
    width: auto;
    margin: 20px;
    margin-top: 60px;
    margin-bottom: 60px;
    background-color: #E1D6C3;
    color: #1F3751;
    border-radius: 20px;
    text-align: center;
    padding: 10px;
}
.liens a{ /* lien github */
    color: #1F3751;
    text-decoration: underline;
}
/**********************************************************
                MENTIONS LEGALES CSS                           
***********************************************************/
#MENTIONS article{
    background-color: #E1D6C3;
    color: #1F3751;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    padding: 20px;
    margin: 20px;
    border-radius: 20px;
}