/* ═══════════════════════════════════════════════════════
   Al Assiel – Veranstaltungsseite
   ═══════════════════════════════════════════════════════ */

.evt-section-title {
  font-family: var(--ff-head);
  font-size: clamp(1.8rem,4vw,2.8rem);
  font-weight: 300; color: var(--cream);
  text-align: center; margin-bottom: 3rem;
}

/* ── Räume ─────────────────────────────────────────────── */
.evt-rooms { padding: 5rem 0 3rem; }

.evt-rooms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.evt-room-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  transition: border-color .3s, transform .3s;
}
.evt-room-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.evt-room-header {
  display: flex; align-items: center; gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.evt-room-icon { font-size: 2.8rem; flex-shrink: 0; }
.evt-room-header h3 {
  font-family: var(--ff-head);
  font-size: 1.6rem; font-weight: 400; color: var(--cream);
  margin-bottom: .2rem;
}
.evt-room-ar {
  font-family: 'Amiri', serif;
  font-size: 1rem; color: var(--gold-dim);
}
.evt-room-meta {
  display: flex; gap: 1.5rem;
  margin-bottom: 1.25rem; padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
  font-size: .82rem; color: var(--cream-dk);
}
.evt-room-features {
  list-style: none;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: .45rem;
}
.evt-room-features li {
  font-size: .83rem; color: var(--cream-dk);
  padding-left: 1.2rem; position: relative;
}
.evt-room-features li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--gold); font-size: .8rem;
}

/* ── Beide-Banner ──────────────────────────────────────── */
.evt-both-banner {
  background: linear-gradient(135deg, rgba(200,134,10,.08) 0%, rgba(200,134,10,.03) 100%);
  border: 1px solid rgba(200,134,10,.35);
  padding: 1.75rem 2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.evt-both-content { display: flex; align-items: center; gap: 1.25rem; }
.evt-both-icon { font-size: 2rem; flex-shrink: 0; }
.evt-both-content h3 {
  font-family: var(--ff-head);
  font-size: 1.3rem; font-weight: 400; color: var(--cream);
  margin-bottom: .25rem;
}
.evt-both-content p { font-size: .85rem; color: var(--cream-dk); }

/* ── Prozess ───────────────────────────────────────────── */
.evt-process {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 50%, var(--bg) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.evt-steps {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; flex-wrap: wrap;
}
.evt-step {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.75rem 1.5rem;
  text-align: center;
  flex: 1; min-width: 180px; max-width: 220px;
}
.evt-step-num {
  font-family: var(--ff-head);
  font-size: 2.5rem; font-weight: 300; color: var(--gold);
  line-height: 1; margin-bottom: .75rem;
}
.evt-step h4 {
  font-size: .9rem; color: var(--cream);
  margin-bottom: .5rem; font-weight: 500;
}
.evt-step p { font-size: .8rem; color: var(--muted); line-height: 1.5; }
.evt-step-arrow {
  color: var(--gold-dim); font-size: 1.5rem; flex-shrink: 0;
}

/* ── Raumauswahl im Formular ───────────────────────────── */
.evt-room-select {
  display: grid; grid-template-columns: repeat(3,1fr); gap: .75rem;
}
.evt-room-option {
  display: flex; flex-direction: column; align-items: center;
  gap: .3rem; padding: 1rem .75rem;
  background: var(--surface); border: 1px solid var(--border);
  cursor: pointer; transition: border-color .2s, background .2s;
  text-align: center;
}
.evt-room-option input { display: none; }
.evt-room-option:hover { border-color: var(--gold-dim); }
.evt-room-option.selected {
  border-color: var(--gold);
  background: rgba(200,134,10,.06);
}
.room-opt-icon { font-size: 1.5rem; }
.room-opt-name { font-size: .82rem; color: var(--cream); font-weight: 400; }
.room-opt-cap  { font-size: .72rem; color: var(--muted); }

/* ── Catering Toggle ───────────────────────────────────── */
.evt-catering-toggle { margin: .25rem 0; }
.cat-incl-badge {
  margin-left: .5rem;
  padding: .1rem .5rem;
  background: rgba(200,134,10,.15);
  border: 1px solid rgba(200,134,10,.3);
  color: var(--gold); font-size: .68rem;
  letter-spacing: .1em; text-transform: uppercase;
}

/* ── Preisliste ────────────────────────────────────────── */
.evt-price-list { display: flex; flex-direction: column; gap: .5rem; margin-top: .5rem; }
.evt-price-row {
  display: flex; justify-content: space-between;
  font-size: .85rem; padding-bottom: .5rem;
  border-bottom: 1px solid rgba(200,134,10,.08);
}
.evt-price-row span:first-child { color: var(--muted); }
.evt-price-row span:last-child  { color: var(--cream); font-weight: 400; }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 900px) {
  .evt-rooms-grid    { grid-template-columns: 1fr; }
  .evt-both-banner   { flex-direction: column; text-align: center; }
  .evt-steps         { flex-direction: column; align-items: stretch; }
  .evt-step          { max-width: 100%; }
  .evt-step-arrow    { transform: rotate(90deg); text-align: center; }
  .evt-room-select   { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .evt-room-features { grid-template-columns: 1fr; }
}
