/* Contenitore principale */
.home-banners-section {
    padding: 3rem 0;
}

/* Card del banner */
.banner-card {
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

/* Overlay scuro per leggibilità (sostituisce il gradiente inline) */
.banner-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.banner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.banner-full {
    height: 450px;
}

/* Titolo */
.banner-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    padding: 0 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .banner-card { height: 250px; }
    .banner-full { height: 300px; }
    .banner-title { font-size: 1.8rem; }
}
