:root {
  --brand: #8e44ad;
  --brand-dark: #6c3483;
}
body {
  font-family: 'Poppins', Arial, sans-serif;
  background: #f7f5fb;
}
.app-navbar {
  background: linear-gradient(90deg, var(--brand), #3498db);
}
.btn-primary, .btn-brand {
  background: var(--brand);
  border-color: var(--brand);
}
.btn-primary:hover, .btn-brand:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
}
.card {
  border: none;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0,0,0,.06);
}
.hero {
  background: linear-gradient(135deg, var(--brand), #3498db);
  color: #fff;
  border-radius: 20px;
  padding: 60px 30px;
}
.event-card .cover {
  height: 160px;
  object-fit: cover;
  border-radius: 14px 14px 0 0;
  width: 100%;
}
.badge-status-published { background: #27ae60; }
.badge-status-draft { background: #95a5a6; }

/* ---- Invitation templates ---- */
.invite-wrap {
  max-width: 720px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,.15);
  background: #fff;
}
.invite-cover {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.invite-body { padding: 40px 30px; }
.invite-title-wedding {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  text-align: center;
}
.invite-title-birthday {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.3rem;
  text-align: center;
}
.invite-title-corporate {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 2rem;
}
.invite-title-simple {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
}
.invite-divider {
  width: 60px;
  height: 3px;
  margin: 18px auto;
  border-radius: 3px;
}
.rsvp-box {
  background: #f9f7fc;
  border-radius: 14px;
  padding: 24px;
  margin-top: 30px;
}
