/* === HERO === */
.hero {
    position: relative;
    width: 100%;
    height: 600px;
    margin: 0;
    padding: 0;
    display: block;
}

.hero-text {
    font-family: 'Flatlion', cursive;
    color: #000;
    font-size: 3.8rem;

    padding: 10px 20px;
    margin-bottom: 30px;
    border-radius: 5px;
    text-align: center;
}

/* === Section confiance === */
.confiance {
    text-align: center;
    padding: 60px 0;
}

.confiance h2 {
    font-family: 'Antic Didone', serif;
    font-size: 1rem;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.confiance img {
    width: 100%;
    border-radius: 6px;
    transition: transform 0.3s;
}

.confiance img:hover {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .carousel-container {
        height: 320px;
    }

    .hero {
        position: relative;
        height: auto;
    }
}
