/* Style pour la section de nettoyage de vitres */
.hero-section {
    padding: 60px 20px;
    text-align: center;
    width: 80%;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.hero-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.hero-image {
    flex: 1;
    min-width: 300px;
}

.hero-title {
    color: #004ee3;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    color: #555;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-subtitle strong {
    color: #004ee3;
}

.btn-custom {
    background-color: #004ee3;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    margin: 10px 10px 10px 0;
    display: inline-block;
    border: 2px solid #004ee3;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: white;
    color: #004ee3;
    border: 2px solid #004ee3;
}

.btn-outline-custom {
    background-color: transparent;
    color: #004ee3;
    padding: 10px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    margin: 10px;
    display: inline-block;
    border: 2px solid #004ee3;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background-color: #004ee3;
    color: white;
    border: 2px solid #004ee3;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

.star-icon {
    color: #004ee3;
    font-size: 1.5rem;
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 768px) {
    .hero-section {
        width: 95%;
        padding: 40px 15px;
    }

    .hero-content {
        flex-direction: column;
        /* image et texte empilés */
        text-align: center;
        gap: 20px;
    }

    .hero-text {
        text-align: center;
        /* texte centré sur mobile */
    }

    .hero-title {
        font-size: 1.8rem;
        /* taille réduite */
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn-custom,
    .btn-outline-custom {
        width: 100%;
        /* boutons prennent toute la largeur */
        max-width: 280px;
        margin: 10px auto;
    }
}