/* Corps de page */
.bodyc {
    background-image: url("leica3-2.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

/* Navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 0.5rem 0; /* correction de la virgule */
}

.navv {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 4rem;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 3px;
    padding: 2rem 0;
    color: black;
}

.navv a {
    text-decoration: none;
    color: inherit;
}

.navv li {
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.navv li:hover {
    background-color: darkred;
    color: white;
    filter: blur(5px);
}

/* Conteneur principal du CV */
.containercv {
    display: flex;
    flex-direction: row;
    color: black;
    background-color: darkred;
    padding: 17px;
    margin: 20px 100px 100px 100px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
}

/* Image dans le CV */
.containercv img {
    width: 400px;
    height: auto; 
    object-fit: contain;
    padding: 60px 20px;
    margin-top: 10px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid black;
    border-radius: 8px;
}

/* Titres H4 et H5 */
h4, h5 {
    padding: 10px;
    font-size: 20px;
    text-align: center;
    border-bottom: 3px solid darkred;
    letter-spacing: 2px;
}

/* Bloc email et contact */
.numemail {
    display: flex;
    flex-direction: column;
    font-size: 20px;
    background-color: black;
    color: white;
}

.numemailtwo {
    font-size: 23px;
    text-align: center;
    background-color: darkred;
    margin-top: 20px;
    border: 3px solid black;
    border-radius: 8px;
}

/* Texte superposé */
.textcv {
    position: absolute;
    display: flex;
    margin: 10px;
    padding: 10px;
    font-size: 20px;
    color: white;
    z-index: 1;
}

/* Section Education & Experience */
.education {
    max-width: 700px;
    flex: 1;
    font-size: 20px;
    color: white;
    letter-spacing: 2px;
    margin: 15px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid black;
    border-radius: 8px;
}

/* Bloc vidéo */
.video {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 1);
}

video {
    border-radius: 10px;
    padding: 30px;
    margin: 10px;
}

/* Lien vers la vidéo */
.linkpitch {
    display: flex;
    flex-direction: column;
    background-color: darkred;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: bold;
    margin-bottom: 20px;
}

.linkpitch a {
    text-decoration: none;
    color: white;
    font-size: 20px;
}


