/* HEADER con immagine */
.event-header, .page-header {
    position: relative;
    background-image: url('/static/custom/files/buona.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: white;
}

/* Overlay scuro per migliorare leggibilità */
.event-header::before, .page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
}

/* Assicura che il contenuto stia sopra overlay */
.event-header *, .page-header * {
    position: relative;
    z-index: 1;
}

/* Titoli e testo in bianco */
.event-title,
.event-location,
.event-date,
.page-header h1,
.page-header h2 {
    color: white !important;
}

/* Breadcrumb e menu in bianco */
.event-header a,
.page-header a {
    color: white !important;
}

/* Altezza header (opzionale, regola qui) */
.event-header {
    min-height: 300px;
    display: flex;
    align-items: center;
}