/* Variables de couleurs */
:root {
    --primary-color: #2c3e50; /* Bleu nuit */
    --accent-color: #ecf0f1;  /* Gris très clair */
    --text-main: #333;
    --text-light: #ffffff;
    --sidebar-width: 300px;
}

/* Reset de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f4f4f4;
    color: var(--text-main);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

/* Conteneur principal */
.cv-container {
    width: 100%;
    max-width: 900px;
    background: white;
    display: flex;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    min-height: 1100px; /* Format proche de A4 */
}

/* Sidebar (Colonne Gauche) */
.sidebar {
    width: var(--sidebar-width);
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 40px 30px;
}

.sidebar h3{
    color: var(--text-light);
}

.photo-container {
    text-align: center;
    margin-bottom: 30px;
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid var(--accent-color);
    object-fit: cover;
}

.sidebar h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 5px;
    letter-spacing: 1px;
}

.sidebar section {
    margin-bottom: 35px;
}

.sidebar p, .sidebar li {
    font-size: 0.9rem;
    margin-bottom: 8px;
    list-style: none;
}

/* Contenu Principal (Colonne Droite) */
.main-content {
    flex: 1;
    padding: 50px 40px;
}

header {
    margin-bottom: 40px;
}

h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    letter-spacing: -1px;
    margin-bottom: 5px;
}

.job-title {
    font-size: 1.3rem;
    color: #7f8c8d;
    font-weight: 300;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.summary {
    font-style: italic;
    color: #555;
}

h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-color);
    padding-left: 15px;
}

.experience, .education, .interests {
    margin-bottom: 40px;
}

.exp-item, .edu-item {
    margin-bottom: 20px;
}

 li{
    text-align: justify;
}


.exp-header {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
}

.company, .degree {
    color: var(--primary-color);
}

.date {
    color: #95a5a6;
    font-size: 0.9rem;
}

.role, .school {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.main-content ul {
    margin-left: 20px;
    font-size: 0.9rem;
}

/* Adaptabilité Mobile */
@media (max-width: 768px) {
    .cv-container {
        flex-direction: column;
    }
    .sidebar {
        width: 100%;
    }
}
