.home-banners {
    margin: 40px 0;
}

.banner-item {
    display: block;
    height: 100%;
    overflow: hidden;
    
    /* Ombre moderne */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

}

.banner-img {
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.4s ease;
}

.banner-item:hover .banner-img {
    transform: scale(1.07);
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    text-align: center;
    padding: 20px;
}

.banner-item:hover .banner-overlay {
    opacity: 1;
}

.banner-overlay h3 {
    font-size: 1.4rem;
    margin-bottom: .5rem;
}
