/* --- CONFIGURATION GÉNÉRALE --- */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f0f7ff; /* Fond bleu ciel très léger */
    color: #2c3e50;
    text-align: center;
}

/* --- NAVIGATION (Même style que Home mais en BLEU) --- */
header {
 background: rgba(255, 255, 255, 0.95); /* Blanc légèrement transparent */
    backdrop-filter: blur(10px); /* Effet flou derrière le menu */
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 5%;
    box-shadow: 0 2px 20px rgba(255, 0, 127, 0.1);
    border-bottom: 2px solid #8ecae6; /* Bordure Bleu Clair */
}


nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: bold;
    color:#4a3b33 ;
}

.logo span {
    color: #3498db; /* Couleur Rose Gold */
    text-transform: uppercase;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    transition: 0.3s;
}

/* Animation de la ligne sous les liens (Rose Gold) */
nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #3498db;
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a:hover, .active {
    color: #3498db !important;
}

.pagecv {
    display: flex;
    max-width: 1000px;
    margin: 50px auto;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 15px;
    overflow: hidden;
}

/* La colonne de gauche (Bleue) */
.myprofile {
    flex: 1;
    background-color: #2c3e50; /* Ton gris-bleu pro */
    color: white;
    padding: 40px 30px;
    text-align: center;
}

.photo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid rgba(255,255,255,0.2);
    object-fit: cover;
    margin-bottom: 20px;
}

/* La colonne de droite (Contenu) */
.content {
    flex: 2;
    padding: 50px;
    text-align: left;
}

.section {
    margin-bottom: 40px;
}

.section h2 {
    font-family: 'Verdana', sans-serif;
    color: #2c3e50;
    border-bottom: 2px solid #3498db; /* Ta touche de bleu */
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 1.2rem;
}
.item p {
    line-height: 1.2;    /* Réduit l'espace entre les lignes (1.2 est très serré) */
    margin-top: 2px;     /* Presque plus d'espace au-dessus du paragraphe */
    margin-bottom: 2px;  /* Presque plus d'espace en dessous */
    color: #555;
    font-size: 0.95rem;
}

.item {
    margin-bottom: 20px;
}

.item h4 {
    margin: 0;
    color: #333;
}

.item span {
    font-size: 0.9rem;
    color: #3498db;
    font-weight: bold;
}
