/* Définition des variables de couleurs */
:root {
    --color-bg: #000000; /* Fond Noir */
    --color-primary: #FF69B4; /* Rose Vif (Hot Pink) */
    --color-text: #FFFFFF; /* Texte Blanc */
    --color-light-text: #AAAAAA; /* Texte Gris Clair pour le sous-titre */
}

/* Réinitialisation de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Mise en page de l'en-tête (Nom) */
.header {
    text-align: center;
    padding: 40px 20px 0;
}

/* --- LIGNES MODIFIÉES POUR LE STYLE SIGNATURE (ALLURA) --- */
.header h1 {
    font-family: 'Allura', cursive; /* Application de la police Allura */
    font-size: 3.8em; /* Augmentation de la taille pour un bel effet signature */
    font-weight: normal; /* Les polices signatures sont rarement en gras */
    color: var(--color-primary);
    text-transform: none; /* S'assure que la police conserve son style */
    letter-spacing: 2px; /* Ajout d'un léger espacement */
}
/* --------------------------------------------------- */


/* Contenu principal */
.main-content {
    flex-grow: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
    padding: 50px 0;
}

/* Section Héro (Titre et sous-titre) */
.hero {
    text-align: center;
    margin-bottom: 60px;
}

.title-principal {
    font-size: clamp(1.8em, 4vw, 3.5em); /* Taille adaptative */
    font-weight: 900;
    color: var(--color-text);
    margin-bottom: 20px;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.1em;
    color: var(--color-light-text);
    max-width: 700px;
    margin: 0 auto;
}

/* Section des Services (3 points clés) */
.services {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 60px;
    text-align: center;
}

.service-item {
    flex: 1 1 300px; /* Base de 300px, 3 colonnes sur grand écran */
    padding: 20px;
    border: 2px solid var(--color-primary);
    background-color: rgba(255, 105, 180, 0.05); /* Fond très légèrement rose */
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-item .number {
    font-size: 2em;
    font-weight: bold;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.service-item h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: var(--color-text);
    font-weight: 700;
}

.service-item p {
    font-size: 0.95em;
    color: var(--color-light-text);
}


/* --- Style pour l'appel à l'action du Livre --- */

.book-cta {
    text-align: center;
    margin-bottom: 50px; /* Espace entre le livre et le bouton de RDV */
    padding: 20px 0;
}

.book-pitch {
    font-size: 1.2em;
    color: var(--color-light-text);
    margin-bottom: 15px;
}

.book-button {
    display: inline-block;
    font-size: 1.4em; /* Texte plus grand pour le bouton du livre */
    font-weight: bold;
    color: var(--color-primary); /* Texte rose */
    text-decoration: none;
    border-bottom: 2px solid var(--color-primary); /* Soulignement rose */
    transition: color 0.3s, border-bottom 0.3s;
    line-height: 1.2;
}

.book-button:hover {
    color: var(--color-text); /* Devient blanc au survol */
    border-bottom: 2px solid var(--color-text); /* Soulignement devient blanc */
}


/* Section CTA (Bouton Rendez-vous) */
.cta {
    text-align: center;
    margin-bottom: 80px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    color: var(--color-text);
    background-color: transparent;
    border: 2px solid var(--color-primary);
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: var(--color-primary);
    color: var(--color-bg);
}

/* Footer (Pied de page) */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5% 40px;
    border-top: 1px solid rgba(255, 105, 180, 0.2);
}

.contact-item a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--color-primary);
}

.icon {
    color: var(--color-primary);
    margin-right: 8px;
    font-size: 1.2em;
}

/* Media Query pour les petits écrans (smartphones) */
@media (max-width: 768px) {
    /* Ajuster la taille de la signature sur mobile */
    .header h1 {
        font-size: 2.5em;
    }

    .title-principal {
        font-size: 2em;
    }

    .services {
        flex-direction: column;
        gap: 20px;
    }

    .service-item {
        min-height: auto;
    }

    .footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .contact-item {
        width: 100%;
        text-align: center;
    }
}
