/* Général pour la page du CV */
.homepagebody {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: black;
    background-color: whitesmoke;
}

.homepageheader {
    display: flex;
    flex-direction: column;/*ici flexbox permet d'aligner les élements , */
    align-items: center;/*column permet de les aligner verticalement center pour les aligner au centre */
    padding: 20px;
    background-color: hotpink;
    color: white;
    text-align: center;
}

.homepageheader h1 {
    font-size: 36px;
    margin: 0;
}

.homepageheader p {
    font-size: 18px;
    margin: 10px 0 0;
}

.homepagemenu ul {
    list-style: none;/*Enleve les points du debut pour une liste */
    padding: 0;
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.homepagemenu ul li {
    margin: 0;
}

.homepagemenu ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s ease;/*transition pas tro rapide quand a hover*/
}


.homepagemenu ul li a:hover {
    color: deeppink;
}

/* Contenu principal */
.contenthomepage {
    display: flex; /* dispositionner les elements flex wrap=passer ligne suivante*/
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
}

.barregauche {
    flex: 1;
    max-width: 250px;
    padding: 10px;
    text-align: center;
    background-color: white;
    border-radius: 10px;
    
    margin: 20px;
}

.barregauche img {
    width: 100%;
    border-radius: 50%;/* Forme circulaire pour les images */
    margin-bottom: 15px;
}

.barregauche ul {
    list-style: none;
    padding: 0;
}

.barregauche ul li {
    margin-bottom: 10px;
    font-size: 14px;
}

.main-contenthomepage {
    flex: 3;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
   
}

.main-contenthomepage section {/*div avec class pour eviter que ca se melange avec le css des autres pages*/
    margin-bottom: 30px;
}

.main-contenthomepage h2 {
    font-size: 24px;
    color: hotpink;
    margin-bottom: 10px;
}

.main-contenthomepage h3 {
    font-size: 20px;
    color: hotpink;
    margin-bottom: 5px;
}

.main-contenthomepage h4 {
    font-size: 18px;
    margin-top: 10px;
    color: black;
}

.main-contenthomepage ul {
    list-style: none;
    padding: 0;
}

.main-contenthomepage ul.surligne li {
    background-color: deeppink;
    padding: 5px;
    margin-bottom: 5px;
    border-radius: 5px;
}

.main-contenthomepage ul li {
    margin-bottom: 10px;
}

.fatys h6 {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.emphasis {
    padding-left: 15px;
}

.emphasis li {
    list-style: square;
    color: hotpink;
    font-weight: bold;
    font-size: 18px;
}

/* Langues */
#languages ul {
    display: flex;
    gap: 15px;
}

#languages ul li {
    background-color: hotpink;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
}
















/*portfolio css general*/
/*CSS COMMUN A TOUTES LES PAGES DU PORTFOLIO */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px;
}

.leftdeco h1 {
    font-size: 48px;
    line-height: 38px;
    font-weight: bold;
    color: hotpink;
}

.rightdeco h2 {
    font-size: 32px;
    line-height: 20px;
    text-align: right;
    color: hotpink;
}

.rightdeco h2 a {
    text-decoration: none;
    color: hotpink;
}

.rightdeco h2 a:hover {
    color: deeppink;
}

.year {
    font-size: 25px;
    text-align: right;
    margin-top: 16px;
    color: hotpink;
}

.year a {
    text-decoration: none;
    color: hotpink;
}

.year a:hover {
    color: deeppink;
}


.gallery {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 32px;
    padding: 32px;
}


.picture {
    position: relative;
    overflow: hidden;
    width: 250px; /* Largeur fixe des images */
    height: 350px;
}

.image-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease, opacity 0.3s ease;/* Effets de zoom et de transparence */
}

.image-link:hover img {
    transform: scale(1.1);
    opacity: 0.8;
}

.hover-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: hotpink;
    color: white;
    text-align: center;
    padding: 8px;
    font-size: 16px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.image-link:hover .hover-text {
    transform: translateY(0);
}


.video {
    width: 300px;
    height: 360px;
   
    margin-bottom: 32px;
}

.video video {
    width: 100%;
    height: auto;
    border-radius: 10px;
}



/*carrer prospect css*/

.career-body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: black;
    background-color: whitesmoke;
}

.career-header {
    text-align: center;
    background-color: hotpink;
    color: white;
    padding: 20px 0;
}

.career-header h1 {
    margin: 0;
    font-size: 36px;
}

.career-nav ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.career-nav ul li {
    margin: 0;
}

.career-nav ul li a {
    text-decoration: none;
    font-weight: bold;
    color: white;
    transition: color 0.3s ease;
}

.career-nav ul li a:hover {
    color: deeppink;
}


.career-section {
    margin: 20px auto;
    padding: 20px;
    max-width: 800px;
    background-color: white;
    border-radius: 10px;
    
}

.career-section h2 {
    font-size: 28px;
    color: hotpink;
    margin-bottom: 10px;
}

.career-section p {
    font-size: 16px;
    margin-bottom: 10px;
    text-align: justify;
}

.career-section ul {
    margin-left: 20px;
    padding-left: 20px;
    list-style: disc;
}

.career-section ul li {
    margin-bottom: 5px;
}

.career-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 20px auto 0;
    border-radius: 10px;
   
}


.career-footer {
    text-align: center;
    padding: 15px;
    background-color: hotpink;
    color: white;
    margin-top: 20px;
}

.career-footer p {
    margin: 0;
    font-size: 14px;
}



/*CONTACT FORM CSS*/

.titlecontact {
    font-size: 30px;
    color: hotpink;
    text-align: center;
    margin: 20px ;
}
.contact-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    border-radius: 50px;
   
}

.contact-form label {
    font-size: 16px;
    color: hotpink;
    margin-bottom: 5px;
}

.contact-form .form-input,
.contact-form .form-textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid ;
    font-size: 16px;
}

.contact-form .form-textarea {
    resize: vertical;
}

.contact-form .form-button {
    padding: 10px 20px;
    background-color: hotpink;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.contact-form .form-button:hover {
    background-color: deeppink;
}

.contact-form .form-input:focus,
.contact-form .form-textarea:focus {
    outline: none;
    border-color: hotpink;
}
/*image cliquable css*/
.click img{
display: flex;
    flex-direction: column;
   border-radius: 50px; 
   padding: 20px;
   margin: 0 auto;
}
/*css pr la video integre avec youtube*/
.youtube {

 display: flex;
}