/*-----*/
/* v.1 */
/*-----*/

/* Stili per la pagina Indice della sezione Verbo */

.hero-section-verbo {
    position: relative;
    padding: 6rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40vh; /* Altezza ridotta */
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.hero-section-verbo::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(30, 40, 51, 0.6); /* Overlay scuro per leggibilità */
}

.hero-section-verbo .container {
    position: relative;
    z-index: 2;
}

.hero-section-verbo h1 {
    font-size: 5.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

/* Stile per le card delle azioni */
.action-card {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: .75rem;
    box-shadow: 0 5px 15px rgba(0,0,0,.05);
    text-align: center;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
    text-decoration: none;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 1.5rem;
}
.action-card:hover { 
    transform: translateY(-7px); 
    box-shadow: 0 12px 25px rgba(0,0,0,.1);
    color: #1A759F;
}
.action-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #A084CA; /* Viola ripreso dalla palette */
}
.action-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}