/* HERO */

.hero {
    position: relative;
    background: url("../imm/home/home_2.jpg") no-repeat center center/cover;
    height: 100vh;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.66);
    z-index: 0;
}

/* FOOTER */
footer {
    background: #4f200d;
    color: #fff2ab;
    padding: 30px 20px;
    text-align: center;
}

/* ANIMAZIONI */
.animato { opacity: 0; transition: all 1s ease; }
.animato.attivo { opacity: 1; transform: translate(0, 0); }
.from-left  { transform: translateX(-80px); }
.from-right { transform: translateX(80px); }
.from-top   { transform: translateY(-80px); }
.from-bottom{ transform: translateY(80px); }

/* ICONE SOCIAL */

/* EVENTI */

.Disponibilita_eventi {
    text-align: center;
    padding: 40px;
    margin: 80px auto 50px auto;
    width: min(60%, 92%);
    background-color: #f5f5f5;
    border-radius: 10px;
    font-size: 22px;
}

.eventi-social {
    text-align: center;
    margin: 10px auto 60px auto;
    width: 70%;
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
}

.eventi-social a {
    color: #9e6a00;
    text-decoration: none;
    font-weight: bold;
}

.eventi-social a:hover {
    text-decoration: underline;
}

/* =============================================
   RESPONSIVE – MOBILE & TABLET
   ============================================= */

@media (max-width: 768px) {

    .Disponibilita_eventi {
        width: 88%;
        padding: 24px 16px;
        font-size: 17px;
        margin: 50px auto 30px auto;
    }

    .eventi-social {
        width: 90%;
        font-size: 0.95rem;
    }

    
    
    
}
