.top-row {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    max-height: 100px;
    position: fixed; 
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.banner_home {
    width: 100%;
    max-width: 400px;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 10px;
}

.date-container {
    justify-content: center;
    width: 80%;
    max-width: 400px;
    margin: 10 auto;
    padding: 10px; /* Riduci il padding per ridurre lo spazio */
    border: 0 solid rgb(255, 255, 255);
    color: rgb(255, 255, 255);
    background-color: rgb(121, 123, 200);
    font-size: 16px;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    text-transform: uppercase;
 
}


.row {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    font-size: 16px;
}

.col {
    display: flex;
    justify-content: center;
    width: 80%;
    padding: auto;
    margin: 5px;
    text-align: center; /* Centra il contenuto */
    gap: 20px; 
}

.submit {
    position: relative;
    display: block;
    width: 100%;
    height: 250px;        /* desktop */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 5px 8px 15px rgba(49, 35, 132, 0.6);
}

.submit img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.submit:hover img {
    filter: blur(0.8px) brightness(0.8);  /* sfocatura + opacizzazione */
}

.submit span {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 22px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
    transition: 0.4s ease;
}

.submit:hover span {
    color: #ffffff;
    text-shadow: 0px 0px 10px rgba(255,255,255,0.8);
}

/* Smartphone / tablet */
@media (max-width: 768px) {
    .submit {
        height: 150px;   /* 75% di 250px */
    }
    .submit span {
    bottom: 30%;
}
}