/* =========================================
   1. LAYOUT DE LA SECTION CV
   ========================================= */
   .cv-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center; 
    padding-top: 150px;
    padding-bottom: 100px;
    background-color: #ffffff;
    padding-left: 20px;
    padding-right: 20px;
}

/* On force chaque bloc à centrer son contenu */
.cv-content-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* =========================================
   2. STYLE DU SWITCHER
   ========================================= */
.cv-switcher {
    position: relative;
    display: inline-flex;
    background: #f0f0f0;
    padding: 4px;
    border-radius: 40px;
    margin-bottom: 50px;
    z-index: 10;
}

.switch-btn {
    position: relative;
    padding: 10px 25px;
    border: none;
    background: none;
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    z-index: 2;
    color: #555;
    transition: color 0.3s;
}

.switch-btn.active {
    color: #fff;
}

.switch-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    height: calc(100% - 8px);
    background: #000;
    border-radius: 40px;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================
   3. CONTENEUR DU CV ET IMAGE
   ========================================= */
.cv-container {
    width: 100%;
    max-width: 800px; 
    margin-bottom: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
}

.cv-img {
    width: 100%;
    height: auto;
    display: block;
}

/* =========================================
   4. BOUTON DE TÉLÉCHARGEMENT
   ========================================= */
.btn-download {
    padding: 15px 40px;
    border: 1.5px solid #000;
    border-radius: 30px;
    text-transform: uppercase;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: bold;
    transition: 0.3s;
    text-decoration: none;
    color: #000;
}

.btn-download:hover {
    background: #000;
    color: #fff;
}

/* Gestion de l'affichage */
.hidden { 
    display: none !important; 
}

/* =========================================
   5. RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
    .cv-section { padding-top: 100px; }
    .btn-download { width: 100%; text-align: center; }
}