/* ============================================================
   COMPONENTS.CSS — Reusable UI pieces
   Font: Outfit (imported via style.css / header.css)
   ============================================================ */

/* ---- Typography utilities ---- */
.kicker {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}
.lead {
  font-family: 'Inter', 'Outfit', sans-serif;
  font-size: 18px;
  line-height: 1.70;
  color: rgba(15, 26, 46, 0.80);
}
.small { font-size: 13px; }
.link  { color: var(--orange); font-weight: 700; }
.link:hover { text-decoration: underline; }

/* ---- Alerts ---- */
.alert {
  padding: 13px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  margin: 12px 0;
  font-family: 'Outfit', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
}
.alert-error   { background: rgba(232, 76, 30, 0.08);  border-color: rgba(232, 76, 30, 0.25); color: #b83010; }
.alert-success { background: rgba(22, 163, 74, 0.08);  border-color: rgba(22, 163, 74, 0.25); color: #15803d; }

/* ---- Placeholder / empty state ---- */
.placeholder {
  height: 160px;
  border-radius: 16px;
  border: 1.5px dashed rgba(15, 26, 46, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(15, 26, 46, 0.45);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
}

/* ---- Grid util ---- */
.grid-2 { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 20px; }
@media (max-width: 980px) { .grid-2 { grid-template-columns: 1fr; } }

/* ---- Status pills (admin/registration) ---- */
.pill {
  display: inline-block;
  padding: 4px 11px;
  border-radius: 999px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid var(--border);
}
.pill-paid      { background: rgba(22, 163, 74, 0.12);  color: #15803d;  border-color: rgba(22,163,74,0.25); }
.pill-initiated { background: rgba(240, 180, 41, 0.14); color: #92680a;  border-color: rgba(240,180,41,0.30); }
.pill-pending   { background: rgba(90, 107, 133, 0.10); color: #5a6b85;  border-color: rgba(90,107,133,0.20); }
.pill-failed    { background: rgba(232, 76, 30, 0.10);  color: #b83010;  border-color: rgba(232,76,30,0.25); }
