/* styles.css */

/* Utilisation de la police Poppins */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1e90ff, #00ced1); /* Fond bleu dégradé attrayant */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

/* La carte principale qui contient tout */
.profile-card {
    background-color: white;
    width: 100%;
    max-width: 450px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 30px;
}

/* Section de l'en-tête (Nom et Photo) */
.header h1 {
    color: #333;
    margin-bottom: 5px;
}

.header .title {
    color: #1e90ff; /* Bleu */
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 20px;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    
    /* ✨ AJOUTEZ/MODIFIEZ CETTE LIGNE ✨ */
    object-position: center top; /* Déplace le "point de focus" vers le haut de l'image */
    /* OU essayez: object-position: center 20%; si vous voulez affiner */
    
    border: 4px solid #f0f0f0;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
    margin-bottom: 25px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}



/* Style des sections générales */
.section {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    text-align: left;
}

.section h2 {
    text-align: center;
    color: #333;
    margin-top: 0;
    margin-bottom: 15px;
}

/* Style des diplômes */
.diploma-list {
    list-style: none;
    padding: 0;
}
.diploma-list li {
    margin-bottom: 10px;
}
.diploma-list .year {
    color: #666;
    font-style: italic;
}
.diploma-list .school {
    margin-top: 2px;
    font-size: 0.9em;
    color: #1e90ff;
}

/* Style des boutons de lien (Réseaux sociaux) */
.links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-btn {
    text-decoration: none;
    padding: 12px 20px;
    background-color: #f0f0f0; /* Gris clair */
    color: #3b3a3a;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, transform 0.1s;
}

.link-btn:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.link-btn i {
    margin-right: 10px;
    font-size: 1.2em;
}

/* Bouton principal (facebook) */
.primary-btn {
    background-color: #1e90ff;
    color: white;
}
.primary-btn:hover {
    background-color: #1c7ed6;
}
.bio-text {
    text-align: center; 
    line-height: 1.8; /* Rend le texte centré plus lisible */
}


