/* --- STILI CALENDARIO EVENTI (Tua versione aggiornata) --- */

.event-container {
    max-width: 900px;
    margin: 40px auto;
    background: var(--white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    text-align: left; /* Forza l'allineamento a sinistra per i testi interni */
}

.event-header {
    background: linear-gradient(135deg, var(--red) 0%, #A62822 100%);
    color: white;
    padding: 40px;
    position: relative;
}

.event-label {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: 0.9;
}

.event-title {
    font-family: 'Oswald', sans-serif; /* Usiamo Oswald per coerenza o Bebas Neue se lo carichi */
    font-size: clamp(48px, 8vw, 84px);
    line-height: 0.95;
    margin-bottom: 20px;
}

.event-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    opacity: 0.95;
}

.event-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.event-image {
    background: var(--dark);
    min-height: 400px;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 0.6s ease;
}

.event-container:hover .event-image img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.event-details {
    background: var(--beige);
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.detail-row { margin-bottom: 30px; }

.detail-label {
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 5px;
    font-weight: bold;
}

.detail-value {
    font-size: 18px;
    color: var(--dark);
    line-height: 1.4;
}

.detail-value.large {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 600;
}

.event-footer {
    background: var(--dark);
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.reservation-notice {
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero { 
    height: 100vh; 
    /* Carica l'immagine home-sfondo.jpg dalla cartella images */
    background: url('../images/home-sfondo.jpg') center/cover no-repeat; 
    position: relative; 
    background-size: cover;      /* L'immagine copre tutta l'area */
    background-position: center;  /* L'immagine è centrata */
    background-repeat: no-repeat; /* Non ripete l'immagine */
    background-attachment: fixed; /* Effetto "parallax": lo sfondo resta fermo mentre scorri */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay { height: 100%; width: 100%; display: flex; align-items: center; justify-content: center; }

.reservation-notice::before {
    content: '⚠';
    color: var(--red);
    font-size: 20px;
}

.event-website {
    color: var(--beige);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .event-body { grid-template-columns: 1fr; }
    .event-image { min-height: 300px; }
    .event-footer { flex-direction: column; gap: 15px; }
}