
:root {
    --nav: #110032;   
    --background-color: #FEFAF3; /* Couleur de fond de la page */
    --text-color: #343eac;       /* Couleur du texte principal */
    --light-text-color: #5A5A5A; /* Couleur des textes secondaires */
    --wave-color: #ddbfb4;
}

/* Importation de la police élégante */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--nav); 
    padding: 20px 50px;
    position: fixed;  /* Rend la navbar statique */
    top: 0;
    left: 0;
    width: 100%;  /* Prend toute la largeur */
    z-index: 1000;
}


/* LOGO */
.navbar .logo img {
    height: 40px; 
    width: auto;
}

/* MENU */
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li a {
    text-decoration: none;
    color: var(--background-color);
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Burger MENU */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger-menu div {
    width: 30px;
    height: 3px;
    background-color:var(--background-color);
    margin: 5px;
    transition: transform 0.3s ease-in-out;
}
.nav-links li a {
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease-in-out;
}

.nav-links li a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    background-color: var(--wave-color); 
    left: 50%;
    bottom: 0;
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}


.nav-links li a:hover {
    color: var(--wave-color); 
}

.nav-links li a:hover::after {
    width: 100%;
    left: 0;
}

.burger-menu div {
    transition: background-color 0.3s ease-in-out;
}

.burger-menu:hover div {
    background-color: var(--wave-color); 
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background-color: var(--nav);
        flex-direction: column;
        align-items: center;
        display: none;
        padding: 20px 0;
    }

    .nav-links.open {
        display: flex;
    }

    .burger-menu.open div:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .burger-menu.open div:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.open div:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* MOI */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;  
    padding: 50px 100px;
    gap: 50px;
    flex-wrap: wrap; 
    position: relative;
    margin-top: 90px;
}


.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://static.showit.co/2400/Accx5KQWNfHWVszuGEJ2aA/145669/pexels-heather-green-1125370-20010376.jpg'); 
    background-size: cover; 
    background-position: center; 
    background-attachment: fixed; 
    opacity: 0.1; 
    z-index: -1; 
}


/* IMAGE */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    padding-bottom: 5vh;  
}

.hero-image img {
    width: 40vw;  
    max-width: 500px; 
    height: auto; 
    object-fit: cover;}

/* .hero-image::after {
    content: "";
    position: absolute;
    top: -12%; 
    width: calc(93%); 
    height: calc(114%); 
    background-image: url('img/cadre.png'); 
    background-size: cover;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1;
} */

/* TEXTE */
.hero-text {
    flex: 1;
    max-width: 700px;
    text-align: left; 
}

.hero-text h1 {
    font-family: 'Prata', serif;
    font-size: 60px;
    font-weight: bold;
    color: var(--text-color);
    line-height: 1.2;
    margin-bottom: 20px;
}
/* IMAGE ÉTOILES */
.stars-image {
    position: absolute;
    top: -15px; 
    left: 85%; 
    width: 40px; 
    height: auto;
}

.stars-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 1024px) {
    .stars-image {
        display: none; 
    }
}

@media (max-width: 768px) {
    .stars-image {
        display: none; 
    }
}

@media (max-width: 480px) {
    .stars-image {
        display: none;
    }
}


.hero-text em {
    font-style: italic;
    font-weight: 400;
    font-size: 0.7em; 
    display: block; 
    margin-top: 20px; 
}

.hero-text p {
    font-size: 18px;
    margin: 20px auto;
    line-height: 1.8;
    color: var(--light-text-color);
}

/* BOUTON */
.button-container {
    display: flex;
    justify-content: center; 
    margin-top: 30px; 
    width: 100%; 
}

.cta-button {
    display: inline-block;
    padding: 14px 28px;
    text-decoration: none;
    color: var(--text-color);
    border-radius: 30px;
    border: 2px solid var(--text-color); 
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    transition: 0.3s ease-in-out;
    text-align: center; 
}

.cta-button:hover {
    background-color: var(--text-color);
    color: var(--background-color);
}

/* Mes compétences */
.competences-section {
    padding: 80px;
    background-color: var(--wave-color); 
    position: relative;
}

.competences-title {
    font-family: 'Prata', serif;
    font-size: 4rem; 
    font-weight: 800; 
    color: var(--text-color);
    margin: 0;
    position: absolute;
    padding-top: 20px;
    margin-bottom: 60px; 
    top: 0;
    left: 0;
    width: 100%;
    text-align: left;
    padding-left: 20px;
    line-height: 1.2; 
    font-optical-sizing: auto;
}

.competences {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px;
    padding-top: 50px;
}

.competence {
    margin-top: 20px;
    background-color: var(--background-color);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.competence-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 0 auto 20px;
}
.competence-title h3 {
    font-family: 'Prata', serif;
    font-size: 18px;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 20px;
}

.competence-description {
    font-size: 14px;
    color: var(--light-text-color);
    list-style-type: disc; 
    padding-left: 20px; 
    margin-top: 20px;
}

.competence-description li {
    margin-bottom: 8px;  
}
@media (max-width: 1024px) {
    .competences-section {
        padding: 60px; /* Réduction du padding */
    }

    .competences-title {
        text-align: center;
        display: flex;
        justify-content: center;
        width: 100%;
        padding-left: 0;
        position: relative;
        font-size: 4.5rem; /* Augmentation de la taille du titre */
        margin-bottom: 40px; /* Réduction de la marge */
         
        
    }
   
    
}

@media (max-width: 768px) {
    .competences-section {
        padding: 50px; /* Réduction du padding */
    }

    .competences-title {
        text-align: center;
        display: flex;
        justify-content: center;
        width: 100%;
        padding-left: 0;
        position: relative;
        font-size: 2.5rem;
        margin-bottom: 30px; /* Réduction de la marge */
        
    }

}


@media (max-width: 480px) {
    .competences-section {
        padding: 40px; /* Réduction du padding */
    }

    .competences-title {
        text-align: center;
        display: flex;
        justify-content: center;
        width: 100%;
        padding-left: 0;
        position: relative;
        font-size: 2rem;
        margin-bottom: 20px; /* Réduction de la marge */
    }
}



/*PROJETS*/
.projets {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    background-color: var(--background-color); 
    padding: 40px;
}

.titre-gauche {
    width: 30%;
    position: sticky;
    top: 80px;
    z-index: 10;
    transition: transform 0.3s ease, top 0.3s ease;
}

.titre-gauche.scrolling-down {
    transform: translateY(50px);
}

.titre-gauche.scrolling-up {
    transform: translateY(-50px);
}

.titre-gauche h1 {
    color: var(--text-color); 
    font-size: 4rem;
    line-height: 1.2;
    margin: 0;
    transition: all 0.3s ease;
    font-family: 'Prata', serif;
    font-optical-sizing: auto;
    font-weight: 800;
}

.projets-droite {
    width: 65%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: stretch;
}

.projet {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
    position: relative;
}

.projet.offset {
    margin-top: 40px;
}

.projet img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.projets a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.projets a:hover {
    opacity: 0.8;
}

.description {
    text-align: left;
    margin-top: 20px;
    width: 100%;
    color: var(--wave-color); 
}

.description h2 {
    font-size: 1.5rem;
    margin: 0 0 10px;
    color: var(--text-color); 
    font-family: 'Prata', serif;
    font-optical-sizing: auto;
    font-weight: 600;
}

.description p {
    font-size: 1rem;
    color: var(--light-text-color); 
    margin: 0;

}

hr {
    border: none;
    height: 2px;
    background-color: var(--wave-color); 
    margin: 10px 0;
}

.projets-droite::after {
    content: '';
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
}

@media (max-width: 768px) {
    .projets {
        flex-direction: column;
        padding: 30px;
    }

    .titre-gauche {
        position: relative;
        top: 0;
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .titre-gauche h1 {
        font-size: 2.5rem;
        line-height: 1.3;
    }

    .projets-droite {
        width: 100%;
    }

    .projet {
        flex: 1 1 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .projet:nth-child(even) img {
        margin-top: 20px;
    }

    .description h2 {
        font-size: 1.25rem;
    }

    .description p {
        font-size: 0.95rem;
    }

    hr {
        margin: 8px 0;
    }
}

@media (max-width: 480px) {
    .projets {
        padding: 20px;
    }

    .titre-gauche {
        font-size: 2rem;
        padding: 10px;
    }

    .titre-gauche h1 {
        font-size: 2rem;
    }

    .projets-droite {
        width: 100%;
    }

    .projet {
        flex: 1 1 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .projet:nth-child(even) img {
        margin-top: 20px;
    }

    .description h2 {
        font-size: 1.1rem;
    }

    .description p {
        font-size: 0.9rem;
    }

    hr {
        margin: 8px 0;
    }
}


.collaboration-section {
    position: relative;
    /* background: url('https://static.showit.co/1600/_XIqCr63T6-GMZCmBioexQ/145669/paper1-black.jpg') center/cover no-repeat; */
    background-color: var(--text-color);
    color: var(--background-color);
    text-align: center;
    padding: 80px 20px; 
    min-height: 70vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Prata', serif;
}

/* .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:  rgba(52, 62, 172, 0.4); 
    z-index: 1;
} */

.content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: auto;
}

.collaboration-subtext {
    font-size: 1.2rem;
    font-style: italic;
    opacity: 0.8;
    margin-bottom: 20px;
}

.collaboration-title {
    font-size: 3rem;
    font-family: 'Prata', serif;
    font-weight: bold;
    margin-bottom: 20px;
}
.highlight {
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 3px;
    background: var(--wave-color);
}

.collaboration-text {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.cta-button-colab {
    display: inline-block;
    color: var(--wave-color);
    border-radius: 30px;
    border: 2px solid var(--wave-color); 
    padding: 15px 30px;
    margin-top: 20px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 25px;
    transition: 0.3s ease-in-out;
    font-family: inter;
}

.cta-button-colab:hover {
    background-color: var(--wave-color) ;
    color: var(--text-color);
}

/* Responsive */
@media (max-width: 768px) {
    .collaboration-title {
        font-size: 2.5rem;
    }
    
    .collaboration-text {
        font-size: 1.2rem;
    }
    
    .cta-button-colab{
        font-size: 1rem;
        padding: 12px 25px;
    }
}

@media (max-width: 480px) {
    .collaboration-title {
        font-size: 2rem;
    }
    
    .collaboration-text {
        font-size: 1rem;
    }
    
    .cta-button-colab {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}
/* footer */
.footer {
   
    color: var(--text-color);
    padding: 10px 20px; 
    display: flex;
    justify-content: center; 
    align-items: center;
    font-size: 14px; 
    position: relative; /* Permet de mieux gérer son positionnement */
    width: 100%;
    margin-top: auto; /* Pousse le footer vers le bas */
}

.footer-content p {
    margin: 0;
    text-align: center;
}

.footer p a {
    color: var(--bg-color);
    text-decoration: none; 
    margin: 0 8px; }

.footer p a:hover {
    text-decoration: underline; 
}


/* RESPONSIVE*/
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        height: auto;
        padding: 50px 20px;
    }

    .hero-image img {
        width: 90%; 
        height: auto;
        max-width: 600px; 
    }

    .hero-text {
        max-width: 90%;
    }

    .hero-text h1 {
        font-size: 48px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .cta-button {
        font-size: 14px;
        padding: 12px 24px;
    }
    .competences {
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 30px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 14px;
    }

    .cta-button {
        font-size: 14px;
        padding: 10px 20px;
    }
    .competences {
        grid-template-columns: 1fr; /* 1 colonne sur les écrans de moins de 768px */
    }
    
    .competences-title {
        font-size: 28px;
        padding-left: 10px;
    }
}

/* Section Alternance */
.content-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Alignement en haut */
    width: 100%;
    margin-top: 50px;
}

.project-content p {
    font-size: 1.1rem;
    margin-top: 10px;
    color: var(--light-text-color); 
    font-weight: 400;
    font-style: normal;
}
/* Section Alternance */
.project-content {
    width: 48%;
}

.alternance-title h1 {
    font-size: 3rem;
    margin: 0;
    font-weight: bold;
    color: var(--text-color);
    font-family: 'Prata', serif;
}

/* Section Soft Skills */
.soft-skills {
    width: 48%;
    text-align: center;
    color: var(--text-color);
}
.soft-skills .alternance-title h1 {
    font-size: 3rem;
    margin: 0;
    font-weight: bold;
    color: var(--text-color);
    font-family: 'Prata', serif;
    text-align: left;
}

/* Conteneur des compétences */
#skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px; 
    padding: 20px 10px;
    margin-top: 20px;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.skill-item {
    font-family: 'Prata', serif;
    font-size: 1.3rem;
    position: relative;
    display: inline-block;
    padding: 12px 25px;
    color: var(--light-text-color); 
    text-align: center;
    white-space: nowrap;
}

.skill-item::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 120%;
    height: 120%;
    border: 1.5px solid var(--wave-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    padding: 10px;
    pointer-events: none;
    opacity: 0.8;
}

.skill-item:nth-child(1) { transform: translateX(-50px) translateY(0); }
.skill-item:nth-child(2) { transform: translateX(60px) translateY(20px); }
.skill-item:nth-child(3) { transform: translateX(-40px) translateY(40px); }
.skill-item:nth-child(4) { transform: translateX(50px) translateY(30px); }
.skill-item:nth-child(5) { transform: translateX(-30px) translateY(50px); }
.skill-item:nth-child(6) { transform: translateX(40px) translateY(60px); }

/* Media Queries */
@media (max-width: 1024px) {
    .project-header {
        flex-direction: column;
        gap: 20px;
    }

    .project-image {
        width: 100%;
        max-width: 400px;
    }

    .project-info h1 {
        font-size: 2.5rem;
    }

    .project-info p {
        font-size: 1.2rem;
    }

    .project-info .sub-title {
        font-size: 1.4rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 12px 30px;
    }

    .content-container {
        flex-direction: column; /* Les sections passent en colonne */
        gap: 40px;
    }
    .alternance-title h1 {
        margin-bottom: 25px;
        font-size: 2.5rem; /* Ajuster l'espacement pour les tablettes */
    }

    #section2 p {
        margin-bottom: 25px; 
        font-size: 1.2rem;
    }

    .project-content, .soft-skills {
        width: 80%; /* Les sections prennent plus de largeur */
    }

    #skills {
        flex-wrap: wrap;
        justify-content: space-around;
    }

    iframe {
        height: 60vh;
    }
}

@media (max-width: 768px) {
    .container1 {
        padding: 40px;
    }

    .project-header {
        flex-direction: column;
        gap: 15px;
    }

    .project-image {
        width: 100%;
        max-width: 350px;
    }

    .project-info h1 {
        font-size: 2rem;
    }

    .project-info p {
        font-size: 1rem;
    }

    .project-info .sub-title {
        font-size: 1.2rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 10px 25px;
    }

    .acquis {
        font-size: 1.2rem;
    }

    .image-gallery img {
        width: 100%;
    }

    iframe {
        height: 50vh;
    }

    .content-container {
        flex-direction: column; 
    }
    .alternance-title h1 {
        margin-bottom: 20px; 
        font-size: 2rem;
    }

    #section2 p {
        margin-bottom: 20px; /* Ajuster l'espacement entre les paragraphes */
        font-size: 1rem;
    }

    .project-content, .soft-skills {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container1 {
        padding: 20px;
    }

    .project-header {
        flex-direction: column;
        gap: 10px;
    }

    .project-image {
        width: 100%;
        max-width: 300px;
    }

    .project-info h1 {
        font-size: 1.6rem;
    }

    .project-info p {
        font-size: 0.9rem;
    }

    .project-info .sub-title {
        font-size: 1rem;
    }

    .cta-button {
        font-size: 0.9rem;
        padding: 8px 20px;
    }

    .acquis {
        font-size: 1rem;
    }

    .image-gallery img {
        width: 100%;
        margin-bottom: 10px;
    }

    iframe {
        height: 40vh;
    }
    .alternance-title h1 {
        margin-bottom: 15px; /* Ajuster l'espacement pour les très petits écrans */
        font-size: 1.6rem;
    
    }

    #section2 p {
        margin-bottom: 15px; /* Ajuster l'espacement entre les paragraphes */
        font-size: 0.9rem;
    }

   
    .content-container {
        padding: 10px 15px;
    }
}



/* PAGES PROJET */
.project-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 100px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    min-height: 100vh;  
    box-sizing: border-box; 
    margin-top: 80px
}


.project-intro {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    width: 100%;
    justify-content: space-between;
    gap: 40px;
}

.project-logo {
    border-radius: 20px;
    width: 500px;
    height: auto;
    object-fit: cover;
}

.project-details {
    max-width: 800px;
}

.project-details h1 {
    font-size: 3rem;
    margin: 0;
    font-weight: bold;
    color: var(--accent-color);
    font-family: "Prata", serif;
}

.project-subtitle {
    font-size: 1.6rem;
    font-style: italic;
    margin-top: 10px;
    color: var(--wave-color);
    font-family: "Prata", serif;
}

.project-description {
    font-size: 1.3rem;
    margin-top: 10px;
    color: var(--light-text-color);
    font-family: 'Inter', sans-serif;
}

/* Liste des points du projet */
.project-highlights {
    margin-top: 40px;
    font-size: 1.3rem;
    color: var(--text-color);
    font-family: "Prata", serif;
}

.project-highlights ul {
    list-style-type: disc;
    margin-top: 10px;
    padding-left: 20px;
    color: var(--light-text-color);
    font-family: 'Inter', sans-serif;
}

/* Galerie d'images */
.project-gallery {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    width: 100%;
}

.project-gallery img {
    border-radius: 20px;
    width: 48%;
    height: auto;
    object-fit: cover;
}

.full-width-image {
    margin-top: 60px;
    width: 100%;
    height: auto;
    border-radius: 20px;
}
@media (max-width: 1024px) {
    .project-logo {
        display: block;
        margin: 0 auto; /* Centre l'image */
    }
    .project-container {
        padding: 40px;
    }

    .project-intro {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 30px;
    }

    .project-logo {
        width: 40%;
        display: block;
        margin: 0 auto; /* Centre l'image */
    }

    .project-details {
        max-width: 700px;
        text-align: left;
    }
}
@media (max-width: 768px) {
    .project-logo {
        display: block;
        margin: 0 auto; /* Centre l'image */
    }
    .project-container {
        padding: 30px;
    }

    .project-intro {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .project-logo {
        width: 60%;
        display: block;
        margin: 0 auto; /* Centre l'image */
    }

    .project-details {
        max-width: 100%;
        text-align: left;
    }
}
@media (max-width: 480px) {
    .project-logo {
        display: block;
        margin: 0 auto; /* Centre l'image */
    }
    .project-container {
        padding: 20px;
    }

    .project-intro {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .project-logo {
        width: 100%;
        display: block;
        margin: 0 auto; 
    }

    .project-details {
        max-width: 100%;
        text-align: left;
    }
}
/* PAGES A PROPOS */
.container1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 40px 40px; 
    max-width: 1400px;
    margin-top: 90px;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--background-color);
  }

.project-header {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    width: 100%;
    justify-content: space-between;
    gap: 40px;
}

.project-image {
    border-radius: 20px;
    width: 500px;
    height: auto;
    object-fit: cover;
}

.project-info {
    max-width: 800px;
}

.project-info h1 {
    font-size: 3rem;
    margin: 0;
    font-weight: bold;
    color: var(--text-color);
    font-family: 'Prata', serif;
    font-optical-sizing: auto;
    font-weight: 800;
}

.project-info p {
    font-size: 1.1rem;
    margin-top: 10px;
    color: var(--light-text-color); 
    font-style: normal;
}

.project-info .sub-title {
    font-family: 'Prata', serif;
    font-size: 1.6rem;
    font-style: italic;
    margin-top: 10px;
    color: var(--wave-color); 
}
.content-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; 
    width: 100%;
}

/* experiences */
.container2 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 20px 60px; /* Réduction du haut, padding bas conservé */
    margin-top: -20px; /* Réduction de l'écart entre les deux sections */
  }

.box {
    background-color: var(--bg-color);
    padding: 48px 32px;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
    max-width: 1000px;
    width: 100%;
    text-align: center;
}

.box h1 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--accent-color);
    font-family: "Bodoni Moda", serif;
    font-weight: 800;
}

.steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.step {
    flex: 1 1 30%;
    min-width: 250px;
    background-color: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.step h2 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--accent-color);
    position: relative;
    padding-bottom: 10px;
    font-family: "Bodoni Moda", serif;
    font-weight: 600;
}

.step h2::after {
    content: '';
    display: block;
    width: 40%;
    height: 2px;
    background-color: var(--primary-color);
    margin: 8px auto 0;
    border-radius: 2px;
}

.step p {
    font-size: 0.95rem;
    color: var(--light-text-color);
    margin-top: 8px;
}

.info {
    font-size: 0.9rem;
    font-weight: 600;
    color: #777;
    margin-bottom: 8px;
}

.date {
    color: var(--primary-color);
}

.place {
    color: var(--wave-color);
    font-style: italic;
}

.additional-title {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin: 48px 0 24px;
    font-weight: 700;
}

.extra-boxes {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.extra-box {
    flex: 1 1 45%;
    background-color: #ffffff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.extra-box h2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--accent-color);
    position: relative;
    padding-bottom: 8px;
    font-family: "Bodoni Moda", serif;
    font-weight: 600;
}

.extra-box h2::after {
    content: '';
    display: block;
    width: 40%;
    height: 2px;
    background-color: var(--primary-color);
    margin: 8px auto 0;
    border-radius: 2px;
}

.extra-box p {
    font-size: 0.95rem;
    color: var(--light-text-color);
    font-family:'Inter', sans-serif;
}
.cta-button {
    display: inline-block; 
    color: var(--text-color);
    border-radius: 30px;
    border: 2px solid var(--text-color); 
    padding: 15px 35px;
    margin-top: 25px;
    text-align: center;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: var(--text-color);
    color: var(--background-color);
}
