/* ═══════════════════════════════════════════
   EVENTI PAGE — Immagina Restaurant
   ═══════════════════════════════════════════ */

/* ─── Header ─── */
.eventi-header {
  background: #0b3c13;
  padding: 56px 24px 48px;
  text-align: center;
}
.eventi-header-title {
  font-size: 52px;
  font-weight: 700;
  color: #D9BC8E;
  letter-spacing: -1px;
  line-height: 1;
}
.eventi-header-sub {
  margin-top: 10px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
}

/* ─── Container ─── */
.eventi-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 20px 64px;
}

/* ─── Sezione label (tipo "Prossimi eventi") ─── */
.eventi-section-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #0b3c13;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #D9BC8E;
}

/* ─── Card evento ─── */
.evento-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.10);
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: 380px 1fr;
}

/* ─── Foto ─── */
.evento-img-wrap {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}
.evento-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ─── Badge ─── */
.evento-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background: #D9BC8E;
  color: #1d0b00;
}
.evento-badge.passato {
  background: #d1d5db;
  color: #374151;
}

/* ─── Info ─── */
.evento-info {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.evento-nome {
  font-size: 30px;
  font-weight: 700;
  color: #1d0b00;
  line-height: 1.2;
}

/* ─── Meta (data, luogo) ─── */
.evento-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.evento-meta-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}
.evento-meta-row svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #0b3c13;
}

/* ─── Descrizione ─── */
.evento-desc {
  font-size: 15px;
  color: #333;
  line-height: 1.7;
  flex: 1;
}

/* ─── Placeholder (nessun evento) ─── */
.eventi-empty {
  text-align: center;
  padding: 48px 0;
  color: #9ca3af;
  font-size: 15px;
}

/* ─── Responsive ─── */
@media (max-width: 700px) {
  .eventi-header-title { font-size: 38px; }

  .evento-card {
    grid-template-columns: 1fr;
  }
  .evento-img-wrap {
    min-height: unset;
    max-height: unset;
  }
  .evento-img {
    height: auto;
    object-fit: unset;
  }
  .evento-info {
    padding: 24px 20px;
    gap: 14px;
  }
  .evento-nome { font-size: 24px; }
}

@media (max-width: 480px) {
  .eventi-header { padding: 40px 20px 36px; }
  .eventi-header-title { font-size: 32px; }
  .eventi-container { padding: 32px 16px 48px; }
}
