/* ==========================================================================
   STYLE GÉNÉRAL DU CV (Bicolore type Canva)
   ========================================================================== */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f7f6;
}

/* Conteneur principal */
.cv-container {
    max-width: 1000px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: #ffffff;
    position: relative;
}

/* ==========================================================================
   COLONNE DE GAUCHE : SIDEBAR (Bleu Foncé)
   ========================================================================== */
.sidebar {
    background-color: #0e385d;
    color: #ffffff;
    padding: 50px 30px;
    height: 100%;       /* Remplit l'espace */
    min-height: 100%;   /* Sécurité pour les navigateurs */
}

/* Conteneur de la Photo de profil ronde */
.profile-img-container {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 30px auto;
    border: 4px solid #ffffff;
}

.profile-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Titres de rubriques de la Sidebar */
.sidebar h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    padding-bottom: 8px;
    margin-top: 10px;
    margin-bottom: 20px;
    font-weight: bold;
    padding-left:3px;
}

/* Éléments de contact (Téléphone, Mail, Ville) */
.contact-item {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.contact-item i {
    margin-right: 12px;
    font-size: 1.1rem;
    color: #a5c5e2; /* Bleu ciel doux pour les icônes */
}


/* ==========================================================================
   COLONNE DE DROITE : CONTENU PRINCIPAL (Blanc)
   ========================================================================== */
.main-content {
    padding: 50px 40px 50px 80px !important;
    color: #333333;
}

/* Identité (En-tête) */
.header-title h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #0e385d;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.header-title .subtitle {
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #5c768d;
    font-weight: 600;
    margin-bottom: 40px;
}

/* Titres de sections (Formation / Expérience) */
.section-title {
    font-size: 1.3rem;
    color: #0e385d;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 20px;
    margin-bottom: 25px;
    border-bottom: 2px solid #0e385d;
    padding-bottom: 5px;
    display:block;
    width:100%;
}


/* ==========================================================================
   FRISE CHRONOLOGIQUE (Timeline pour Formations & Expériences)
   ========================================================================== */
.timeline-item {
    position: relative;
    padding-left: 25px;
    border-left: 2px solid #0e385d;
    margin-bottom: 30px;
}

/* Petit rond sur la ligne verticale de la frise */
.timeline-item::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 5px;
    width: 12px;
    height: 12px;
    background-color: #0e385d;
    border-radius: 50%;
}

/* Intitulé du Poste / Diplôme */
.job-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0e385d;
}

/* Nom de la Société / École */
.company-name {
    font-size: 1.05rem;
    font-style: italic;
    color: #555555;
}

/* Bloc d'affichage des dates */
.date-badge {
    font-size: 0.9rem;
    color: #5c768d;
    font-weight: 600;
}

/* Liste des missions sous une expérience */
.missions-list {
    padding-left: 20px;
    margin-top: 10px;
    font-size: 0.95rem;
    color: #444444;
}

.missions-list li {
    margin-bottom: 5px;
}

.cv-container .row.g-0 {
    display: flex;
    align-items: stretch; /* Force la colonne gauche et droite à faire la même hauteur */
}

.skill-bar {
    height: 6px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    margin-bottom: 15px;
    overflow: hidden;
}
.skill-progress {
    height: 100%;
    background-color: #a5c5e2; /* Bleu clair Canva */
    border-radius: 3px;
}

.header-title, .section-title, .timeline-item {
    width: 100%;
}
.white, a.white{
	color:white;
}