/* Définition des variables de couleur pour la cohérence */
:root {
    --primary-blue: #0A66C2; /* Bleu LinkedIn */
    --secondary-white: #FFFFFF;
    --text-color: #333333;
    --light-gray: #f4f4f4;
    --fun-accent: #21a1f0; /* Un bleu légèrement plus dynamique pour le "fun" */
}

/* Style de base et utilisation de la police Montserrat */
body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    margin: 0;
    padding: 0;
    background-color: var(--secondary-white);
    line-height: 1.6;
}

h1, h2, h3 {
    color: var(--primary-blue);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: var(--primary-blue);
}

/* Sections générales */
section {
    padding: 60px 5%;
    max-width: 1100px;
    margin: 0 auto;
}

/* En-tête / Bannière (Hero Section) */
.hero-section {
    background-color: var(--light-gray);
    text-align: center;
    padding: 80px 5%;
    border-bottom: 5px solid var(--primary-blue);
}

/* Style pour la photo de profil (NOUVEAU) */
.profile-photo {
    width: 150px; /* Taille du cercle */
    height: 150px;
    border-radius: 50%; /* Donne une forme ronde */
    object-fit: cover; /* Recadre l'image sans la déformer */
    margin-bottom: 20px;
    border: 4px solid var(--primary-blue); /* Bordure bleue LinkedIn */
}

.hero-section h1 {
    font-size: 3em;
    margin-bottom: 5px;
}

.hero-section .subtitle {
    font-size: 1.2em;
    font-weight: 400;
    margin-top: 0;
    color: #555;
}

/* Liens d'appel à l'action (CTA) */
.cta-links {
    margin-top: 30px;
    opacity: 1 !important; /* CORRECTION BUG D'AFFICHAGE */
    z-index: 100;
    position: relative;
}

.linkedin-btn {
    display: inline-block;
    background-color: var(--primary-blue);
    color: var(--secondary-white);
    padding: 10px 20px;
    border-radius: 5px;
    margin: 5px 10px;
    transition: background-color 0.3s;
    opacity: 1 !important; /* CORRECTION BUG D'AFFICHAGE */
}

.linkedin-btn:hover {
    background-color: #004d99;
}

.linkedin-btn i {
    margin-right: 8px;
}

/* Style pour le lien de secours LinkedIn (anti-bloqueur) */
.linkedin-fallback-link {
    margin-top: 15px;
    font-size: 0.9em;
    color: #666; /* Gris subtil */
}

.linkedin-fallback-link a {
    text-decoration: underline;
}

/* Section À Propos */
.about-section {
    text-align: center;
}

.about-section h2 {
    margin-bottom: 20px;
}

.concept-note {
    font-style: italic;
    color: #888;
    margin-top: 30px;
}

/* Section Boîte à Outils (Fun & Plus-Value) */
.tools-section {
    background-color: var(--light-gray);
    text-align: center;
}

.tools-section .description {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1em;
}

.tool-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tool-card {
    background-color: var(--secondary-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: transform 0.3s;
}

.tool-card:hover {
    transform: translateY(-5px);
}

.tool-card h3 {
    font-size: 1.4em;
    margin-top: 0;
    color: var(--fun-accent); /* Utilisation