/* RESET DE BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* ======================== HEADER ======================== */

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #f8f3e8; /* Fond clair */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Ombre légère */
    top: 0;
    z-index: 1000;
}

.logo-navbar {
    height: 60px;
    max-height: 100%;
    display: block;
}

.navbar-left .navbar-brand {
    font-size: 2rem;
    font-weight: 700;
    color: #0a0a23; /* Couleur foncée pour le texte */
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.navbar-left .navbar-brand:hover {
    color: #d86f82; /* Changement de couleur au survol */
}

.navbar-right ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.navbar-right li {
    margin: 0;
}

.navbar-right a {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0a0a23; /* Couleur par défaut */
    text-decoration: none;
    transition: color 0.3s ease;
}

.navbar-right a:hover {
    color: #d86f82; /* Changement de couleur au survol */
}

/* Styles pour les liens */
.navbar-right a.active {
    color: #6c86d7; /* Couleur spécifique pour l'élément actif */
}

/* Mise en place d'une bordure en bas de la barre de navigation */
.navbar-right a:hover, .navbar-left .navbar-brand:hover {
    border-bottom: 2px solid #d86f82; /* Sous-lignage au survol */
}

/* Responsivité */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        text-align: center;
        padding: 0.5rem 1rem;
        position: static !important; /* Ne reste plus fixée */
        top: auto;
        }
    }

    .navbar-left .navbar-brand {
        margin-bottom: 0.5rem;
        font-size: 1.2rem; /* Taille du logo réduite */
    }

    .navbar-right ul {
        flex-direction: column;
        gap: 0.75rem;
    }

    .navbar-right ul li a {
        font-size: 0.95rem; /* Taille des liens réduite */
        padding: 0.3rem 0.5rem; /* Moins d’espace autour du texte */
    }


body {
    font-family: 'Poppins', sans-serif;
    background-color: #fdf9db;
    color: #0a0a23;
    overflow-x: hidden;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    min-height: 100vh;
    justify-content: space-between;
    position: relative;
}

/* Effets de flou doux en arrière-plan */
.hero::before,
.hero::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
}
.hero::before {
    background: radial-gradient(circle, #d86f82, transparent);
    top: 5%;
    left: 10%;
}
.hero::after {
    background: radial-gradient(circle, #6c86d7, transparent);
    bottom: 5%;
    right: 10%;
}

.intro {
    text-align: center;
    z-index: 1;
}
.intro h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 0.2rem;
    color: #0a0a23;
}
.intro .email {
    margin-top: 1rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    color: #0a0a23;
}

.skills {
    margin: 3rem 0;
    z-index: 1;
}
.skill-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}
.skill-list img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
    transition: transform 0.3s;
}
.skill-list img:hover {
    transform: scale(1.1);
}

.signature {
    text-align: center;
    z-index: 1;
}
.signature h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #0a0a23;
}
.signature p {
    font-weight: 600;
    letter-spacing: 0.3rem;
    color: #0a0a23;
    text-transform: uppercase;
}
.container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    z-index: 1;
    max-width: 1200px;
    margin: 2rem auto;
}

.left img.profile-image {
    width: 300px;
    max-width: 90vw;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0,0,0,0.1);
}

.right {
    max-width: 600px;
    text-align: left;
}

.quote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #0a0a23;
    margin-bottom: 2rem;
}

.menu {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.menu a {
    font-weight: 600;
    color: #0a0a23;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1.1rem;
}
.menu a span {
    margin-left: 0.5rem;
    transition: margin-left 0.3s;
}
.menu a:hover {
    color: #d86f82;
}
.menu a:hover span {
    margin-left: 1rem;
}

.socials {
    display: flex;
    gap: 1.5rem;
    font-size: 1.5rem;
}
.socials a {
    color: #0a0a23;
    transition: color 0.3s;
}
.socials a:hover {
    color: #6c86d7;
}
/* RESET DE BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', sans-serif;
    background-color: #fdf9db;
    color: #0a0a23;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Bannière d'intro */
.banniere {
    padding: 5rem 2rem 3rem;
    text-align: center;
    position: relative;
    background: #fff8e1;
    z-index: 1;
}
.banniere::before,
.banniere::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
}
.banniere::before {
    background: radial-gradient(circle, #d86f82, transparent);
    top: 10%;
    left: 5%;
}
.banniere::after {
    background: radial-gradient(circle, #6c86d7, transparent);
    bottom: 10%;
    right: 5%;
}
.banniere-texte {
    position: relative;
    z-index: 2;
}
.banniere h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #0a0a23;
}
.banniere h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-top: 0.5rem;
    color: #0a0a23;
}
.sous-titre {
    font-size: 1.2rem;
    margin-top: 1rem;
    font-weight: 500;
    color: #b2352e;
}
.intro-paragraphe {
    margin-top: 2rem;
}
.intro-paragraphe p {
    margin-bottom: 1rem;
}
.intro-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 900px;
    margin: 3rem auto 5rem;
    padding: 0 1rem;
}

.intro-photo {
    flex: 0 0 280px;
    max-width: 280px;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(46, 75, 117, 0.15);
    transition: transform 0.3s ease;
    cursor: default;
}

.intro-photo img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 1.5rem;
}

.intro-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 14px 40px rgba(46, 75, 117, 0.3);
}

.intro-paragraphe {
    flex: 1;
    font-size: 1.15rem;
    color: #334d6e;
    line-height: 1.7;
    font-weight: 500;
    text-align: justify;
}

.intro-paragraphe p + p {
    margin-top: 1.1em;
}

/* Responsive - sur petits écrans on empile photo et texte */
@media (max-width: 768px) {
    .intro-container {
        flex-direction: column;
        gap: 2rem;
        margin: 2rem auto 4rem;
    }

    .intro-photo {
        max-width: 100%;
        width: 280px;
    }

    .intro-paragraphe {
        text-align: center;
        font-size: 1.05rem;
    }
}


/* Section À propos */
.a-propos {
    padding: 5rem 2rem 3rem;
    position: relative;
    background: #fdf9db;
    overflow: hidden;
    z-index: 1;
}

.a-propos-background::before,
.a-propos-background::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
}
.a-propos-background::before {
    background: radial-gradient(circle, #eab94d, transparent);
    top: 10%;
    left: 10%;
}
.a-propos-background::after {
    background: radial-gradient(circle, #6c86d7, transparent);
    bottom: 10%;
    right: 5%;
}

.a-propos-contenu {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 2;
}

.a-propos-texte {
    flex: 2;
    font-size: 1.15rem;
    color: #334d6e;
    line-height: 1.7;
    font-weight: 500;
    text-align: justify;
}

.a-propos-texte h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0a0a23;
    margin-bottom: 1rem;
}

.a-propos-visuel.citation {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 8px 25px rgba(46, 75, 117, 0.1);
    text-align: center;
    font-style: italic;
    font-weight: 600;
    color: #b2352e;
    max-width: 300px;
}



/* Compétences principales */
/* Conteneur général */
#competences {
                           background: #fff8e1;
                           padding: 4rem 2rem;
                       }

#competences h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2e4b75;
    font-weight: 700;
}

.competences-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.competence {
    background-color: white;
    border-radius: 2rem;
    padding: 2rem;
    width: 200px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.competence:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.competence img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    filter: hue-rotate(10deg);
}

.competence p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2e4b75;
}


/* Section "Ce que je peux apporter" */
.what-i-bring {
    padding: 5rem 2rem;
    background: #fff8e1;
}
.what-i-bring .title {
    text-align: center;
    margin-bottom: 3rem;
}
.what-i-bring h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0a0a23;
    margin-bottom: 1rem;
}
.what-i-bring p {
    font-size: 1.1rem;
    max-width: 750px;
    margin: 0 auto;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.card {
    background-color: #fff;
    border-radius: 2rem;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    text-decoration: none;
    color: #0a0a23;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.card .number {
    font-size: 2rem;
    font-weight: 800;
    color: #6c86d7;
    position: absolute;
    top: 1.5rem;
    right: 2rem;
}
.card h3 {
    margin-top: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
}
.card p {
    margin-top: 1rem;
    font-size: 1rem;
}

/* Responsive ajustements */
@media (max-width: 768px) {
    .banniere h1 {
        font-size: 2.2rem;
    }
    .banniere h2 {
        font-size: 1.5rem;
    }
    .competences-container {
        flex-direction: column;
        align-items: center;
    }
}



/*page réalisation*/
/* --- Général --- */
.page-realisations {
    position: relative;
    overflow: hidden;
    background-color: #fdf9f1;
    padding: 4rem 2rem;
    font-family: 'Poppins', sans-serif;
    color: #2e4b75;
    z-index: 0;
}

.page-realisations::before,
.page-realisations::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    pointer-events: none;
}

.page-realisations::before {
    background: radial-gradient(circle, #d86f82, transparent 70%);
    top: 5%;
    left: 10%;
}

.page-realisations::after {
    background: radial-gradient(circle, #6c86d7, transparent 70%);
    bottom: 5%;
    right: 10%;
}

.page-realisations {
    background-color: #fdf9f1;
    padding: 4rem 2rem;
    font-family: 'Poppins', sans-serif;
    color: #2e4b75;
}

.page-realisations h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #b2352e;
    text-align: center;
}

.page-realisations .intro {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    text-align: center;
    color: #333;
}

/* --- Filtres --- */
.filter-dropdown {
    text-align: center;
    margin-bottom: 2rem;
}

.filter-select {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
    background-color: #fff;
    color: #2e4b75;
    transition: border-color 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: #7a4988;
}

/* --- Grille des cartes --- */
.realisations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* --- Carte --- */
.realisation-card {
    display: flex;
    background-color: #fff;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: inherit;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.realisation-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.realisation-card img {
    width: 260px;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

/* --- Contenu --- */
.realisation-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.realisation-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #2e4b75;
}

.realisation-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

/* --- Badge --- */
.realisation-badge {
    background-color: #eab94d;
    color: #2e4b75;
    font-weight: bold;
    padding: 0.4em 0.8em;
    font-size: 0.8rem;
    border-radius: 12px;
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* --- Masquer avec filtre --- */
.realisation-card.hidden {
    display: none;
}

/* --- Responsive --- */
@media (max-width: 700px) {
    .realisations-grid {
        grid-template-columns: 1fr;
    }

    .realisation-card {
        flex-direction: column;
    }

    .realisation-card img {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }

    .realisation-content {
        padding: 1rem;
    }
}


/* Masquage pour filtre */
.realisation-card.hidden {
    display: none;
}

/* Responsive : en colonne sur petit écran */
@media (max-width: 900px) {
    .realisations-grid {
        grid-template-columns: 1fr;
    }

    .card-inner {
        flex-direction: column;
    }

    .img-container {
        max-width: 100%;
    }

    .img-container img {
        aspect-ratio: 16/9;
    }

    .text-container {
        padding: 1rem;
    }
}

/* Section titre */

.project-hero {
    text-align: center;
    margin: 0 auto 2.5rem auto;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    max-width: 960px;
}

.project-hero h2 {
    font-size: 2.5rem;
    color: #2e4b75;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.project-hero h3 {
    font-size: 1.3rem;
    color: #7e5bef;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.3px;
}

/* Bloc contenant visuel + texte */
.project-visual-text {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1rem 3rem;
}

/* Colonne gauche : image/vidéo */
.visual-container {
    flex: 1 1 48%;
    max-width: 48%;
}

.visual-container iframe,
.visual-container video {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Colonne droite : contenu texte */
.project-content {
    flex: 1 1 48%;
    max-width: 48%;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    background-color: #fdfdfd;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.project-content p {
    margin-bottom: 1.2rem;
}

.project-details {
    color: #555;
    font-style: italic;
}

/* Lien projet */
.project-link {
    display: inline-block;
    margin-top: 1rem;
    color: #2e4b75;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.project-link:hover {
    text-decoration: underline;
    color: #b2352e;
}

/* Carousel */
.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.carousel img {
    width: 100%;
    height: auto;
    display: none;
    border-radius: 12px;
}

.carousel img.active {
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffffdd;
    border: 2px solid #d86f82;    cursor: pointer;
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    z-index: 1;
    border-radius: 50px;
    transition: background 0.3s ease;
}

.carousel-btn:hover {
    background:  none;;
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}
.carousel img {
    display: none;
    width: 100%;
}

.carousel img.active {
    display: block;
}
.lightbox {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.95);
    overflow-y: auto; /* scroll vertical si besoin */
    display: flex;
    justify-content: center;
    align-items: flex-start; /* pour pouvoir scroller */
    padding: 20px;
    z-index: 1000;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-main-image-container {
    width: 100%;
    max-height: 70vh;
    overflow: hidden;
    margin-bottom: 15px;
    border-radius: 8px;
}

.lightbox-main-image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.lightbox-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
    width: 100%;
}

.lightbox-thumbnails img {
    width: 100px;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 4px;
    opacity: 0.6;
    transition: opacity 0.3s, transform 0.3s;
    border: 2px solid transparent;
}

.lightbox-thumbnails img.active-thumb {
    opacity: 1;
    transform: scale(1.05);
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #fff;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    line-height: 0;
    z-index: 1010;
}
.project-navigation {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.btn-nav {
    background-color: #2e4b75;
    color: #fdf9db;
    border: none;
    padding: 8px 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-nav:hover {
    background-color: #5a95ec;
    color: #2e4b75;
}



/* Responsive mobile */
@media screen and (max-width: 768px) {
    .project-visual-text {
        flex-direction: column;
        padding: 1rem;
    }

    .visual-container,
    .project-content {
        max-width: 100%;
        flex: 1 1 100%;
    }

    .project-content {
        margin-top: 2rem;
    }
}


/* Section Contact */
#contact {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
}
#contact::before,
#contact::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
}

#contact::before {
    background: radial-gradient(circle, #d86f82, transparent);
    top: 5%;
    left: 10%;
}

#contact::after {
    background: radial-gradient(circle, #6c86d7, transparent);
    bottom: 5%;
    right: 10%;
}
/* Conteneur de texte à gauche */
.contact-left {
    flex: 1;
    text-align: left;
    max-width: 500px;
}

.contact-left h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0a0a23;
    margin-bottom: 1rem;
}

.contact-left p {
    font-size: 1.1rem;
    color: #0a0a23;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-left .btn-cv {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #d86f82;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.contact-left .btn-cv:hover {
    background-color: #b2596a;
}

/* Conteneur du formulaire à droite */
.contact-right {
    flex: 1;
    background-color: #f8f3e8;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 600px;
}

.form-contact .form-group {
    margin-bottom: 1.5rem;
}

.form-contact label {
    font-weight: 600;
    color: #0a0a23;
    display: block;
    margin-bottom: 0.5rem;
}

.form-contact input,
.form-contact textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    font-size: 1rem;
    color: #0a0a23;
}

.form-contact textarea {
    resize: vertical;
}

.form-contact button {
    width: 100%;
    padding: 1rem;
    background-color: #6c86d7;
    color: #fff;
    border: none;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-contact button:hover {
    background-color: #4e67b3;
}

/* Responsivité */
@media (max-width: 768px) {
    #contact {
        flex-direction: column;
        align-items: center;
    }

    .contact-left, .contact-right {
        max-width: 100%;
        text-align: center;
    }

    .contact-left .btn-cv {
        margin-top: 1rem;
    }
}

/* ======================== FOOTER ======================== */
/* Footer */
footer {
    background-color: #fdf9db; /* Fond clair */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 10); /* Ombre légère */
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

footer p {
    font-size: 1rem;
    margin: 0.5rem 0;
    line-height: 1.5;
}

/* Lien Mentions légales */
footer a {
    color:  #d86f82;; /* Couleur dorée pour le lien */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #b2352e; /* Changement de couleur au survol */
}

/* Responsivité */
@media (max-width: 768px) {
    footer {
        padding: 1.5rem;
    }

    footer p {
        font-size: 0.9rem;
    }
}