/* ============================================================
   RSVP page — styles (layered on top of styles.css)
   ============================================================ */

.rsvp-main {
  align-items: flex-start;
  padding-top: 108px;
  padding-bottom: 64px;
}

/* ── RSVP form card ── */
.rsvp-form-card {
  margin-top: 0;
  border-top: none;
  box-shadow:
    0 12px 64px rgba(0, 0, 0, 0.24),
    0 2px 12px rgba(0, 0, 0, 0.10);
}

/* ── Event block within the form ── */
.rsvp-event-block {
  margin: 20px 0 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(160, 120, 80, 0.18);
}

.rsvp-event-block:last-of-type {
  border-bottom: none;
}

.rsvp-event-name {
  font-family: 'Didot', 'Palatino Linotype', 'Palatino', 'Book Antiqua', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 400;
  font-style: italic;
  color: #3a2e1f;
  margin: 0 0 4px;
  letter-spacing: 0.03em;
}

.rsvp-event-meta {
  font-family: 'Garamond', 'EB Garamond', Georgia, serif;
  font-size: 0.88rem;
  color: #8b6f47;
  letter-spacing: 0.06em;
  margin: 0 0 12px;
}

/* ── Attending / Not Attending radio buttons ── */
.rsvp-choices {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.rsvp-choice {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 12px;
  border: 1.5px solid rgba(160, 120, 80, 0.35);
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Garamond', 'EB Garamond', Georgia, serif;
  font-size: 0.9rem;
  letter-spacing: 0.07em;
  color: #5a4a35;
  background: rgba(252, 246, 234, 0.6);
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  user-select: none;
}

.rsvp-choice input[type=radio] {
  display: none;
}

.rsvp-choice:hover {
  border-color: #8b6f47;
  background: rgba(139, 111, 71, 0.08);
}

.rsvp-choice.selected {
  border-color: #8b6f47;
  background: rgba(139, 111, 71, 0.14);
  color: #3a2e1f;
  font-weight: 600;
}

/* ── Dietary field ── */
.rsvp-field {
  margin: 20px 0 24px;
}

.rsvp-label {
  display: block;
  font-family: 'Garamond', 'EB Garamond', Georgia, serif;
  font-size: 0.88rem;
  letter-spacing: 0.07em;
  color: #8b6f47;
  margin-bottom: 8px;
}

/* ── Saved confirmation ── */
.rsvp-saved-note {
  font-family: 'Garamond', 'EB Garamond', Georgia, serif;
  font-size: 0.88rem;
  font-style: italic;
  color: #6a8a5a;
  letter-spacing: 0.04em;
  margin: 0 0 16px;
  text-align: center;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .rsvp-main {
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .rsvp-choices {
    flex-direction: column;
  }
}
