/* Styles spécifiques à la page d'accueil */

.hero-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    gap: 32px;
}

.hero-section > .left {
    width: 30%;
    text-align: center;
}

.hero-section > .right {
    width: 70%;
}

.hero-section .right p.subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.img-accueil {
    max-width: 300px; /* Taille contrôlée */
    height: auto;
    border-radius: 50%; /* Image en cercle, plus moderne */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 5px solid var(--light-color);
}

.services-overview {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.services-overview .card {
    flex: 1; /* Les deux cartes prennent la même taille */
    min-width: 300px;
    margin: 0; /* Réinitialiser la marge de .card */
}

.services-list {
    padding-left: 0;
}

.services-list .service-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.services-list .service-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.services-list .service-item strong {
    color: var(--dark-color);
}

.cta-links {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}


/* Media queries pour l'accueil */
@media (max-width: 1000px) {
    .hero-section {
        flex-direction: column;
        padding: 20px;
    }

    .hero-section > .left,
    .hero-section > .right {
        width: 100%;
        text-align: center;
    }

    .services-overview {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .services-overview .card {
        width: 100%;
        max-width: 500px;
    }
}