/*
 Theme Name:   Hello Biz Child
 Description:  Thème enfant pour Hello Biz
 Author:       Toi
 Template:     hello-biz
 Version:      1.0.0
*/

/* Cache le titre et le slogan du header */


/* 2. TYPOGRAPHIE SPÉCIALE SENIOR (Lisibilité max) */
body {
    font-size: 18px; /* Plus grand que la moyenne */
    line-height: 1.6;
    color: #2B2D42; /* Gris-noir profond, pas de gris clair */
    background-color: #FFFFFF;
}

h1, h2, h3 {
    color: #1B4965; /* Ton bleu marine sérieux */
    font-weight: 700;
    line-height: 1.3;
}

/* 3. LE BOUTON D'ACTION "ORANGE ÉCLATANT" */
/* Cible les boutons Elementor pour qu'ils sautent aux yeux */
.elementor-button {
    background-color: #FB8500 !important; /* Orange vif */
    color: #FFFFFF !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px !important;
    box-shadow: 0px 4px 15px rgba(251, 133, 0, 0.4); /* Effet de relief */
    transition: transform 0.2s ease;
}

.elementor-button:hover {
    background-color: #FF9F1C !important; /* Orange un peu plus clair au survol */
    transform: scale(1.05); /* Effet d'agrandissement léger */
}

/* 4. SECTIONS DE RÉASSURANCE (Turquoise) */
.highlight-clean {
    color: #62B6CB; /* Ton turquoise propreté */
    font-weight: bold;
}

/* 5. MISE EN AVANT DES AVIS CLIENTS */
.testimonial-box {
    background: #F8F9FA;
    border-left: 5px solid #62B6CB;
    padding: 20px;
    font-style: italic;
}

/* 6. RESPONSIVE : Mobile pour seniors (gros boutons) */
@media (max-width: 768px) {
    body { font-size: 17px; }
    .elementor-button {
        width: 100% !important; /* Bouton pleine largeur sur mobile */
        padding: 20px !important;
        font-size: 20px !important;
    }
}