body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background-color: #d3d3d3; /* Gris moyen plus sombre */
    color: #333;
    line-height: 1.6;
}

/* Header */
header {
    background-color: #333;
    color: #fff;
    padding: 2rem 1rem;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid #b49c73; /* Accent doré */
}

.menu-centre ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 0;
    margin-top: 1rem;
}

.menu-centre a {
    text-decoration: none;
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
}

.menu-centre a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #b49c73; /* Accent doré */
    transition: width 0.3s ease, left 0.3s ease;
}

.menu-centre a:hover {
    color: #fff;
}

.menu-centre a:hover::after {
    width: 100%;
    left: 0;
}




/* Section dédiée au téléchargement du CV */
.cv-download-section {
    background-color: #333; /* Fond sombre */
    color: #f5f5f5;          /* Texte clair */
    padding: 80px 20px;
    text-align: center;
}

/* Titres de la section */
.cv-download-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #b49c73; /* Accent doré */
    margin-bottom: 20px;
}

/* Slogans / phrases d'accroche */
.cv-download-section .phrase-passion,
.cv-download-section .phrase-creativite {
    font-family: 'The Seasons', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: #ddd;
    margin-bottom: 15px;
}

/* Bouton de téléchargement */
.cv-download-section .btn-principal {
    display: inline-block;
    background-color: #b49c73;
    color: #fff;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cv-download-section .btn-principal:hover {
    background-color: #a08864;
    transform: scale(1.05);
}

.cv-invitation {
    text-align: center;
    margin: 4rem auto;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.85); /* Même style clair/flouté */
    border-radius: 1rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    backdrop-filter: blur(10px);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.cv-invitation:hover {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.cv-invitation h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
}

.cv-invitation p {
    margin: 1rem 0;
    font-size: 1.1rem;
    color: #555;
    font-style: italic;
}

/* Bouton CV avec vos couleurs */
.cv-btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: #b49c73; /* Doré élégant */
    color: white;
    text-decoration: none;
    border-radius: 2rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cv-btn:hover {
    background-color: #a08864;
    transform: translateY(-2px);
}

.cv-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 300%;
    height: 300%;
    background-color: #fff;
    transition: all 0.5s ease;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
    border-radius: 50%;
    opacity: 0.05;
}

.cv-btn:hover:before {
    width: 0;
    height: 0;
}






/* Footer */
footer {
    background-color: #333;
    color: #f0f0f0;
    padding: 30px 20px;
    text-align: center;
    font-size: 0.9rem;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.social-links {
    margin-top: 15px;
}

.social-links a {
    color: #b49c73; /* Accent doré */
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #fff;
}

