/* ============================================================
   Victory BM – Public CSS (redesign 2026)
   Bootstrap 5.3 + Playfair Display + Inter + AOS
   ============================================================ */

/* === CSS VARIABLES === */
:root {
  --bg:          hsl(222, 47%, 6%);
  --bg2:         hsl(222, 45%, 8%);
  --bg3:         hsl(222, 40%, 10%);
  --fg:          hsl(210, 40%, 92%);
  --muted:       hsl(215, 20%, 55%);
  --primary:     hsl(38, 65%, 48%);
  --primary-hi:  hsl(38, 50%, 62%);
  --primary-lo:  hsl(38, 75%, 35%);
  --gold:        hsl(38, 65%, 48%);
  --gold-hi:     hsl(38, 50%, 62%);
  --gold-lo:     hsl(38, 75%, 35%);
  --border:      hsla(222, 25%, 16%, 1);
  --border-sub:  rgba(255,255,255,.07);
  --glass-bg:    hsla(222, 40%, 10%, 0.60);
  --glass-bd:    hsla(222, 25%, 22%, 0.60);
  --shadow:      0 20px 50px rgba(0,0,0,.50);
  --shadow2:     0 10px 34px rgba(0,0,0,.30);
  --radius:      0.75rem;
  --radius-lg:   1rem;
  --radius-xl:   1.35rem;
  --max:         1200px;
  --font:        'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-serif:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-display:'Space Grotesk', 'Inter', system-ui, -apple-system, sans-serif;
  --text:        hsl(210, 40%, 92%);

  /* Bootstrap overrides */
  --bs-primary:           hsl(38, 65%, 48%);
  --bs-primary-rgb:       183, 129, 57;
  --bs-link-color:        hsl(38, 65%, 48%);
  --bs-link-color-rgb:    183, 129, 57;
  --bs-link-hover-color:  hsl(38, 50%, 62%);
  --bs-border-color:      hsla(222, 25%, 16%, 1);
  --bs-body-bg:           hsl(222, 47%, 6%);
  --bs-body-color:        hsl(210, 40%, 92%);
  --bs-body-font-family:  var(--font);
}

/* === BASE RESET === */
*, *::before, *::after { box-sizing: border-box; }
html { min-height: 100%; overflow-x: hidden; background: var(--bg); }
body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font);
  color: var(--fg);
  line-height: 1.6;
  background: transparent;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--fg);
}
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-hi); }
img { max-width: 100%; height: auto; }

/* min-width fixes */
.admin-shell, .admin-main, .admin-content,
.form-grid, .hero, .split, .grid-3, .grid-4, .video-shell { min-width: 0; }
.form-grid > *, .hero > *, .split > *,
.grid-3 > *, .grid-4 > * { min-width: 0; }

/* === BOOTSTRAP OVERRIDES === */
.btn-primary {
  --bs-btn-color: hsl(222,47%,6%);
  --bs-btn-bg: hsl(38,65%,48%);
  --bs-btn-border-color: hsl(38,65%,48%);
  --bs-btn-hover-color: hsl(222,47%,6%);
  --bs-btn-hover-bg: hsl(38,70%,42%);
  --bs-btn-hover-border-color: hsl(38,70%,42%);
  --bs-btn-active-color: hsl(222,47%,6%);
  --bs-btn-active-bg: hsl(38,70%,42%);
  --bs-btn-active-border-color: hsl(38,70%,42%);
  --bs-btn-focus-shadow-rgb: 183,129,57;
  --bs-btn-disabled-color: hsl(222,47%,6%);
  --bs-btn-disabled-bg: hsl(38,65%,48%);
  --bs-btn-disabled-border-color: hsl(38,65%,48%);
  font-weight: 600;
}
.btn-outline-primary {
  --bs-btn-color: hsl(38,65%,48%);
  --bs-btn-border-color: hsl(38,65%,48%);
  --bs-btn-hover-color: hsl(222,47%,6%);
  --bs-btn-hover-bg: hsl(38,65%,48%);
  --bs-btn-hover-border-color: hsl(38,65%,48%);
  --bs-btn-focus-shadow-rgb: 183,129,57;
  --bs-btn-active-color: hsl(222,47%,6%);
  --bs-btn-active-bg: hsl(38,65%,48%);
  --bs-btn-active-border-color: hsl(38,65%,48%);
  font-weight: 600;
}
.btn-outline-light {
  --bs-btn-color: rgba(255,255,255,.88);
  --bs-btn-border-color: rgba(255,255,255,.22);
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: rgba(255,255,255,.92);
  --bs-btn-hover-border-color: rgba(255,255,255,.92);
}

/* Dark forms */
.form-control, .form-select {
  background-color: hsl(222, 32%, 19%);
  color: var(--fg);
  border-color: hsla(222, 25%, 35%, 1);
}
.form-control:focus, .form-select:focus {
  background-color: hsl(222, 32%, 22%);
  color: var(--fg);
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem hsla(38,65%,48%,.18);
}
.form-control::placeholder { color: var(--muted); }
.form-check-input { background-color: hsl(222,32%,19%); border-color: hsla(222,25%,40%,1); }
.form-check-input:checked { background-color: var(--primary); border-color: var(--primary); }
.form-label { color: rgba(255,255,255,.82); font-weight: 500; margin-bottom: .4rem; }
select.form-select option { background: hsl(222,47%,8%); color: var(--fg); }
.invalid-feedback { color: #f87171; }
.alert-success { --bs-alert-color: #d1fae5; --bs-alert-bg: rgba(6,95,70,.35); --bs-alert-border-color: rgba(52,211,153,.22); }
.alert-danger  { --bs-alert-color: #fecaca; --bs-alert-bg: rgba(127,29,29,.35); --bs-alert-border-color: rgba(248,113,113,.22); }

/* Bootstrap accordion dark */
.accordion-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd) !important;
  border-radius: var(--radius) !important;
  margin-bottom: .5rem;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.accordion-button {
  background: transparent;
  color: var(--fg);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
}
.accordion-button:not(.collapsed) {
  background: hsla(38,65%,48%,.08);
  color: var(--primary-hi);
  box-shadow: none;
}
.accordion-button::after { filter: brightness(0) invert(1) opacity(.5); }
.accordion-button:not(.collapsed)::after { filter: brightness(0) saturate(100%) invert(72%) sepia(47%) saturate(400%) hue-rotate(5deg) brightness(95%) contrast(90%); }
.accordion-body { color: var(--muted); background: transparent; }

/* === UTILITY CLASSES === */
.text-gradient-gold {
  background: linear-gradient(135deg, hsl(38,65%,48%), hsl(38,50%,62%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gold {
  background: linear-gradient(135deg, hsl(38,65%,48%), hsl(38,50%,62%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .85rem;
  font-family: var(--font);
}
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-bd);
  border-radius: var(--radius-lg);
  transition: transform .3s ease, box-shadow .3s ease;
}
.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -15px hsla(38,65%,48%,.15);
}
.glow-gold { box-shadow: 0 0 24px -6px hsla(38,65%,48%,.42); }
.glow-gold:hover { box-shadow: 0 0 34px -4px hsla(38,65%,48%,.58); }

/* === NAVBAR (SITE HEADER) === */
.wrap {
  min-width: 0;
  position: relative;
}
body:not(.admin) .wrap { padding-top: 70px; }

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px max(1.5rem, calc((100% - var(--max)) / 2 + 1.5rem));
  transition: padding .3s, background .3s, box-shadow .3s, border-color .3s;
  border-bottom: 1px solid transparent;
  background: hsla(222, 47%, 6%, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.site-header--scrolled {
  background: hsl(222, 47%, 6%);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: rgba(255,255,255,.07);
  padding-top: 10px;
  padding-bottom: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,.45);
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.brand:hover { opacity: .9; }
.brand-logo { height: 42px; width: auto; display: block; }
.brand-mark {
  width: 44px; height: 44px;
  border-radius: 14px;
  background: linear-gradient(145deg, hsla(38,65%,48%,.22), rgba(255,255,255,.06));
  border: 1px solid hsla(38,65%,48%,.28);
  display: grid; place-items: center;
}
.brand-mark span { font-weight: 700; letter-spacing: .08em; color: var(--gold); font-size: 14px; }
.brand-title { display: flex; flex-direction: column; gap: 2px; line-height: 1.1; }
.brand-title strong { letter-spacing: .18em; text-transform: uppercase; font-size: 14px; color: var(--fg); }
.brand-title small { color: var(--muted); font-size: 12px; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.site-nav-link {
  display: inline-flex; align-items: center;
  padding: 8px 12px;
  font-size: .875rem; font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  border-radius: 8px; border: none;
  transition: color .2s, background .2s;
  font-family: var(--font);
  white-space: nowrap;
  background: transparent;
}
.site-nav-link:hover { color: var(--fg); background: rgba(255,255,255,.05); }
.site-nav-link.is-active { color: var(--primary); }

.nav-actions { display: flex; align-items: center; gap: 4px; margin-left: 6px; }
.nav-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  color: var(--muted); border: 1px solid transparent;
  text-decoration: none;
  transition: color .2s, background .2s, border-color .2s;
  cursor: pointer; background: transparent;
}
.nav-icon:hover { color: var(--fg); background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.08); }
.nav-icon svg { width: 20px; height: 20px; display: block; }

.nav-burger { position: relative; display: none; }
.nav-burger summary { list-style: none; }
.nav-burger summary::-webkit-details-marker { display: none; }

.nav-user { position: relative; }
.nav-user summary { list-style: none; }
.nav-user summary::-webkit-details-marker { display: none; }
.nav-user-avatar {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--primary); color: #fff;
  font-size: .72rem; font-weight: 800; letter-spacing: .02em;
  cursor: pointer; border: 2px solid transparent;
  transition: border-color .2s, box-shadow .2s;
  user-select: none;
  box-shadow: 0 0 0 0 hsla(38,65%,48%,0);
}
.nav-user-avatar:hover,
.nav-user[open] .nav-user-avatar {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsla(38,65%,48%,.22);
}

.nav-menu {
  position: absolute; right: 0; top: calc(100% + 10px);
  min-width: 220px; padding: 6px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: hsl(222,38%,16%);
  box-shadow: 0 20px 56px rgba(0,0,0,.75), 0 0 0 1px rgba(255,255,255,.04);
  z-index: 1000;
}
.nav-menu-head {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 10px 10px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 4px;
}
.nav-menu-head-avatar {
  flex-shrink: 0;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 800;
}
.nav-menu-head-info { flex: 1; overflow: hidden; min-width: 0; }
.nav-menu-head-name {
  font-weight: 700; font-size: .85rem;
  color: rgba(255,255,255,.95);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.nav-menu-head-email {
  font-size: .73rem; color: rgba(255,255,255,.45);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-top: 1px;
}
.nav-menu-item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; border-radius: 8px;
  color: rgba(255,255,255,.78); font-weight: 500; font-size: .875rem;
  text-decoration: none; transition: background .15s, color .15s;
}
.nav-menu-item:hover { background: rgba(255,255,255,.07); color: #fff; }
.nav-menu-item--danger { color: rgba(255,100,100,.80); }
.nav-menu-item--danger:hover { background: rgba(255,60,60,.10); color: #ff8080; }
.nav-menu-sep { height: 1px; background: rgba(255,255,255,.07); margin: 4px 6px; }

.nav-drawer-head {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 16px 14px 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
}
.nav-drawer-close {
  width: 34px; height: 34px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05); color: rgba(255,255,255,.90);
  font-size: 22px; line-height: 1; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; padding: 0;
}
.nav-drawer-close:hover { background: rgba(255,255,255,.10); }

/* === SITE FOOTER === */
.site-footer {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 3.5rem 0 2rem;
  margin-top: 4rem;
  background: hsl(222,47%,4%);
}
.site-footer__grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2.5rem;
  max-width: var(--max); margin: 0 auto; padding: 0 1.5rem;
}
.site-footer__brand-name {
  font-family: var(--font-serif); font-size: 1.05rem; font-weight: 700;
  color: var(--fg); letter-spacing: .04em; display: block; margin-bottom: 4px;
}
.site-footer__brand-sub { font-size: .8rem; color: var(--muted); }
.site-footer__col-title {
  font-size: .72rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .1em; color: rgba(255,255,255,.5); margin-bottom: .75rem;
}
.site-footer__links { display: flex; flex-direction: column; gap: .45rem; }
.site-footer__links a { font-size: .875rem; color: var(--muted); text-decoration: none; transition: color .2s; }
.site-footer__links a:hover { color: var(--primary); }
.site-footer__bottom {
  max-width: var(--max); margin: 2rem auto 0;
  padding: 1.5rem 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,.04);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: .82rem; text-align: center;
}
/* Legacy footer compat */
.site-footer__copy { color: var(--muted); font-size: .82rem; }
.site-footer a { color: var(--muted); text-decoration: none; }
.site-footer a:hover { color: var(--primary); }

/* === PAGE HERO (inner pages) === */
.page-hero {
  padding: 5rem 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, hsl(222,40%,10%), transparent);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero__label {
  display: inline-block; font-size: .75rem; font-weight: 600;
  letter-spacing: .25em; text-transform: uppercase; color: var(--primary);
  margin-bottom: 1rem; font-family: var(--font);
}
.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700; line-height: 1.15;
  margin: 0 0 1.25rem; color: var(--fg);
}
.page-hero__lead {
  font-size: 1.05rem; color: var(--muted);
  max-width: 580px; margin: 0 auto; line-height: 1.65;
}

/* === HOMEPAGE HERO === */
.hero-section {
  min-height: 80vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; text-align: center;
}
.hero-section__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 600px at 50% -5%, hsla(38,65%,48%,.07), transparent 65%),
    linear-gradient(to bottom, var(--bg2) 0%, var(--bg) 60%, hsl(222,47%,4%) 100%);
  pointer-events: none;
}
.hero-section__line {
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, hsla(38,65%,48%,.28), transparent);
}
.hero-section .container { position: relative; z-index: 1; max-width: 860px; padding-top: 2rem; padding-bottom: 4rem; }
.hero-section__badge {
  display: inline-block; font-size: .72rem; font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 1.5rem;
}
.hero-section__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 7.5vw, 5rem);
  font-weight: 700; line-height: 1.1; margin: 0 0 1.5rem; color: var(--fg);
}
.hero-section__lead {
  font-size: 1.1rem; color: var(--muted);
  max-width: 580px; margin: 0 auto 2.5rem; line-height: 1.7;
}
.hero-section__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-section__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  color: var(--muted); animation: bounceY .9s ease-in-out infinite alternate;
  cursor: pointer; background: none; border: none; padding: 0;
}
.hero-section__scroll svg { width: 28px; height: 28px; display: block; }
@keyframes bounceY {
  from { transform: translateX(-50%) translateY(0); }
  to   { transform: translateX(-50%) translateY(10px); }
}

/* === CONTENT SECTIONS === */
.vbm-section { padding: 5rem 0; position: relative; }
@media (min-width: 768px) { .vbm-section { padding: 7rem 0; } }

.section-head-block { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.section-head-block__label {
  display: inline-block; font-size: .72rem; font-weight: 600;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--primary); margin-bottom: .85rem;
}
.section-head-block__title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 700; line-height: 1.15; margin: 0 0 1rem; color: var(--fg);
}
.section-head-block__lead { color: var(--muted); font-size: 1.05rem; line-height: 1.65; margin: 0; }

/* Icon badge */
.icon-badge {
  width: 48px; height: 48px; border-radius: 10px;
  background: hsla(38,65%,48%,.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--primary);
}
.icon-badge i { font-size: 1.2rem; }

/* Gold bar accent */
.gold-bar { width: 40px; height: 3px; background: var(--primary); border-radius: 2px; margin-bottom: 1.25rem; }

/* Step number (Journey) */
.step-number {
  font-family: var(--font-serif); font-size: 3.5rem; font-weight: 700;
  color: hsla(38,65%,48%,.15); line-height: 1; margin-bottom: .5rem;
  transition: color .3s;
}
.glass-card:hover .step-number { color: hsla(38,65%,48%,.3); }

/* Blockquote */
.vbm-quote { text-align: center; max-width: 600px; margin: 0 auto; }
.vbm-quote blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  font-style: italic; color: rgba(255,255,255,.82);
  margin: 0 0 .75rem; line-height: 1.55;
}
.vbm-quote cite { font-size: .875rem; font-weight: 600; color: var(--primary); font-style: normal; }

/* Event detail */
.event-detail-item { display: flex; align-items: flex-start; gap: 1rem; }
.event-detail-item__label { font-size: .78rem; color: var(--muted); margin-bottom: 2px; }
.event-detail-item__value { font-size: 1.05rem; font-weight: 600; color: var(--fg); }
.event-detail-item__sub { font-size: .875rem; color: var(--muted); margin-top: 2px; }

/* Contact card */
.contact-card { display: flex; align-items: center; gap: 1rem; text-decoration: none; color: inherit; transition: transform .3s, box-shadow .3s; }
.contact-card:hover { color: inherit; }
.contact-card .icon-badge { transition: background .3s; }
.contact-card:hover .icon-badge { background: hsla(38,65%,48%,.22); }
.contact-card__label { font-size: .78rem; color: var(--muted); margin-bottom: 2px; }
.contact-card__value { font-size: .95rem; font-weight: 600; color: var(--fg); transition: color .2s; }
.contact-card:hover .contact-card__value { color: var(--primary); }

/* Bank account */
.bank-card__currency { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--primary); }
.bank-card__iban { font-family: 'Courier New', monospace; font-size: .88rem; font-weight: 600; color: var(--fg); word-break: break-all; margin: .5rem 0 .25rem; }
.bank-card__bank { font-size: .8rem; color: var(--muted); }
.bank-card__copy {
  background: transparent; border: none; color: var(--muted); cursor: pointer;
  padding: 4px 6px; border-radius: 6px;
  display: inline-flex; align-items: center; gap: 4px; font-size: .78rem;
  transition: color .2s, background .2s;
}
.bank-card__copy:hover { color: var(--primary); background: hsla(38,65%,48%,.08); }
.bank-card__copy svg { width: 14px; height: 14px; }

/* Donation option card */
.donation-option-card { display: flex; flex-direction: column; height: 100%; }
.donation-option-card__title { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 700; margin-bottom: .5rem; color: var(--fg); }
.donation-option-card__desc { font-size: .88rem; color: var(--muted); line-height: 1.6; flex: 1; margin-bottom: 1.5rem; }

/* Blog */
.blog-card { transition: transform .3s, box-shadow .3s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -15px hsla(38,65%,48%,.14); }
.blog-card__date { font-size: .78rem; color: var(--muted); margin-bottom: .65rem; }
.blog-card__title { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700; color: var(--fg); margin-bottom: .65rem; line-height: 1.35; }
.blog-card__excerpt { font-size: .88rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.25rem; }
.blog-post-content { font-size: 1.05rem; line-height: 1.85; color: rgba(255,255,255,.85); }
.blog-post-content h2, .blog-post-content h3 { margin-top: 1.75rem; color: var(--fg); }
/* Legal / prose content */
.legal-content { color: var(--fg); }
.legal-content h1 { font-family: var(--font-serif); font-size: clamp(1.4rem,4vw,2rem); font-weight: 700; margin-bottom: 1rem; color: var(--fg); }
.legal-content h2 { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 600; margin-top: 2rem; margin-bottom: .5rem; color: var(--primary); }
.legal-content h3 { font-size: 1rem; font-weight: 600; margin-top: 1.5rem; margin-bottom: .4rem; color: var(--fg); }
.legal-content p, .legal-content li { font-size: .95rem; line-height: 1.8; color: rgba(255,255,255,.8); }
.legal-content ul, .legal-content ol { padding-left: 1.4rem; margin-bottom: 1rem; }
.legal-content a { color: var(--primary); text-decoration: underline; }
.legal-content a:hover { color: var(--primary-hi); }

/* Map iframe */
.map-iframe-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--glass-bd); }
.map-iframe-wrap iframe { display: block; width: 100%; }

/* Content card (profile, generic pages) */
.content-card {
  background: var(--glass-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-bd); border-radius: var(--radius-xl); padding: 2rem;
}

/* Auth pages */
.auth-login, .auth-simple {
  min-height: calc(100vh - 70px);
  display: flex; align-items: center; justify-content: center; padding: 2rem 1rem;
}
.auth-login-card, .auth-simple-card {
  width: 100%; max-width: 480px;
  background: var(--glass-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-bd); border-radius: var(--radius-xl); padding: 2.5rem 2rem;
}
.auth-login-title, .auth-simple-title { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 700; margin: 0 0 .5rem; color: var(--fg); }
.auth-login-lead, .auth-simple-lead { color: var(--muted); margin-bottom: 1.5rem; font-size: .95rem; }
.auth-login-secondary { margin-top: .75rem; font-size: .875rem; }
.auth-login .form, .auth-simple .form { gap: 10px; display: grid; }

/* Legacy old card style (fallback for unredesigned pages) */
body:not(.admin) .card:not(.glass-card):not(.accordion-item):not(.btn):not(.nav-menu) {
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-bd);
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  color: var(--fg);
}
body:not(.admin) .card .card-body { padding: 1.5rem; }

/* Signup card */
.signup-card {
  background: var(--glass-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-bd); border-radius: var(--radius-xl); padding: 2rem;
}
.signup-card h1, .signup-card h2, .signup-card h3 { color: var(--fg); }
.signup-card .lead { color: var(--muted); }
.signup-card a { color: rgba(255,255,255,.82); }
.signup-card a:hover { color: var(--primary); }

/* Lead text */
.lead { color: var(--muted); font-size: 1rem; line-height: 1.65; }
.text-muted { color: var(--muted) !important; }

/* Info rows (legacy compat) */
.info { position: relative; z-index: 1; }
.info h2 { margin: 0 0 10px; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.info .info-row { display: flex; justify-content: space-between; gap: 14px; padding: 10px 0; border-top: 1px solid rgba(255,255,255,.07); }
.info .info-row:first-of-type { border-top: none; padding-top: 0; }
.info .label { color: var(--muted); font-size: .8rem; }
.info .value { color: var(--fg); font-weight: 600; text-align: right; font-size: .875rem; }

/* Section utility */
.section { margin-top: 18px; }
.admin-pill { display: inline-flex; align-items: center; padding: 3px 9px; border-radius: 999px; border: 1px solid rgba(255,255,255,.10); background: rgba(255,255,255,.04); font-size: .75rem; color: var(--muted); }
.top-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.form230-note { font-size: .8rem; color: var(--muted); }
.home-map-btn:hover, .home-map-btn:focus { border-color: rgba(255,255,255,.50); color: #fff; background: rgba(255,255,255,.08); }
.kicker { background: rgba(255,255,255,.06); color: rgba(255,255,255,.80); padding: 3px 10px; border-radius: 6px; font-size: .78rem; display: inline-block; }

/* === RESPONSIVE === */
@media (min-width: 921px) {
  .nav-burger { display: none !important; }
  .nav-links { display: flex !important; }
}
@media (max-width: 920px) {
  .nav-links { display: none !important; }
  .nav-burger { display: inline-flex !important; position: relative; }
  .nav-burger .nav-icon { width: 44px; height: 44px; border-radius: 12px; }
  .nav-burger .nav-icon svg { width: 22px; height: 22px; }
  .nav-burger .nav-menu {
    position: fixed;
    left: 0; top: 0; right: auto;
    width: min(82vw, 300px); height: 100dvh;
    border-radius: 0 16px 16px 0;
    border: 1px solid rgba(255,255,255,.10); border-left: 0;
    background: hsl(222,47%,5%);
    padding: 0; box-shadow: 0 24px 70px rgba(0,0,0,.55);
    overflow-y: auto;
    transform: translateX(-105%); transition: transform .22s ease;
    z-index: 1100;
  }
  .nav-burger[open] .nav-menu { transform: translateX(0); }
  .nav-burger[open]::before {
    content: "";
    position: fixed; inset: 0;
    background: rgba(0,0,0,.52); backdrop-filter: blur(2px); z-index: 1090;
  }
  .nav-burger .nav-menu .nav-menu-item { font-size: .95rem; padding: 12px 14px; border-radius: 10px; margin: 2px 8px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .site-header { padding-left: 20px; padding-right: 20px; }
  .hero-section__title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .page-hero__title { font-size: clamp(1.8rem, 8vw, 3rem); }
}
@media (max-width: 560px) {
  .site-header { padding-left: 16px; padding-right: 16px; }
  .hero-section__actions { flex-direction: column; align-items: center; }
  .hero-section__actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .auth-login-card, .auth-simple-card { padding: 1.5rem 1.25rem; }
}

/* === IMAGE ZOOM MODAL === */
body.vbm-modal-open{ overflow: hidden; }

.vbm-zoom-thumb{ display:block; cursor: zoom-in; }
.vbm-zoom-thumb__img{
  width:100%;
  height:auto;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.10);
  display:block;
}

.vbm-modal{
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.vbm-modal[hidden]{ display:none; }

.vbm-modal__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.66);
  backdrop-filter: blur(6px);
}

.vbm-modal__dialog{
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: calc(100vh - 36px);
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(7,10,18,.92);
  box-shadow: var(--shadow);
}

.vbm-modal__header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.vbm-modal__title{ font-weight: 700; font-family: var(--font-display); }

.vbm-modal__close{
  appearance: none;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--text);
  border-radius: 12px;
  width: 38px;
  height: 38px;
  line-height: 36px;
  text-align:center;
  font-size: 22px;
  cursor: pointer;
}
.vbm-modal__close:hover{ background: rgba(255,255,255,.06); border-color: rgba(216,185,107,.28); }

.vbm-modal__body{
  padding: 12px;
  overflow: auto;
  max-height: calc(100vh - 120px);
}
.vbm-modal__img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.10);
}


/* ============================================================
   ADMIN CSS — scoped to body.admin
   ============================================================ */
/* Admin layout – ConnectHub-style: dark sidebar + light gray content */
body.admin{
  background: #f1f5f9;
  color: #1e293b;
  --bs-body-color: #1e293b;
}
body.admin .form-control,
body.admin .form-select,
body.admin input[type="text"],
body.admin input[type="email"],
body.admin input[type="password"],
body.admin input[type="number"],
body.admin input[type="date"],
body.admin input[type="tel"],
body.admin input[type="url"],
body.admin input[type="search"],
body.admin textarea,
body.admin select {
  background-color: #ffffff;
  color: #0f172a;
  border-color: #cbd5e1;
}
body.admin .form-control:focus,
body.admin .form-select:focus,
body.admin textarea:focus,
body.admin select:focus {
  background-color: #ffffff;
  color: #0f172a;
  border-color: #3b82f6;
  box-shadow: 0 0 0 0.2rem rgba(59,130,246,.2);
}
body.admin .form-control::placeholder,
body.admin textarea::placeholder { color: #94a3b8; }
body.admin .form-label { color: #334155; }
body.admin .form-check-input {
  background-color: #ffffff;
  border-color: #cbd5e1;
}
body.admin .form-check-input:checked {
  background-color: #3b82f6;
  border-color: #3b82f6;
}
body.admin select option { background: #ffffff; color: #0f172a; }
body.admin h1,
body.admin h2,
body.admin h3,
body.admin h4,
body.admin h5,
body.admin h6 { color: #0f172a; font-family: inherit; }
body.admin p,
body.admin .lead,
body.admin .form-text,
body.admin small { color: #475569; }
body.admin section.p-1 {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(15,23,42,.06);
  margin-bottom: 16px;
  padding: 20px 24px !important;
}
.admin-shell{ min-height:100vh; display:flex; }
.admin-sidenav{
  width: 256px;
  min-width: 256px;
  display: flex;
  flex-direction: column;
  padding: 0;
  background: #0f172a;
  border-right: 1px solid #1e293b;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  overflow-y: hidden;
  z-index: 100;
}
.admin-sidenav-inner{
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 12px 16px;
  height: 100%;
  overflow: hidden;
}
.admin-brand{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 4px 8px 16px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 8px;
}
.admin-brand-logo{ height: 36px; width:auto; display:block; }
.admin-brand-text{ display:flex; flex-direction:column; gap:2px; }
.admin-brand-text strong{ letter-spacing:.10em; text-transform:uppercase; font-size: 14px; color: #fff; font-family: var(--font-display); }
.admin-brand-text small{ color: rgba(255,255,255,.45); font-size: 11px; letter-spacing:.04em; text-transform:uppercase; }

.admin-menu{ display:flex; flex-direction:column; gap:2px; flex:1; overflow-y:auto; min-height:0; }
.admin-menu-link{
  display: flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 8px;
  color: rgba(255,255,255,.62);
  border: none;
  background: transparent;
  font-weight: 500;
  font-size: 14px;
  transition: background .15s, color .15s;
}
.admin-menu-link:hover{ background: rgba(255,255,255,.07); color: rgba(255,255,255,.92); }
.admin-menu-link.is-active{ background: rgba(255,255,255,.10); color: #fff; font-weight: 600; }

.admin-menu-group{ border-radius: 8px; }
.admin-menu-group summary{ list-style: none; }
.admin-menu-group summary::-webkit-details-marker{ display:none; }
.admin-menu-group-toggle{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  border-radius: 8px;
  color: rgba(255,255,255,.62);
  border: none;
  background: transparent;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: background .15s, color .15s;
  width: 100%;
}
.admin-menu-group-toggle::after{
  content: '▾';
  font-size: 11px;
  opacity: .7;
  transition: transform .18s;
}
.admin-menu-group[open] .admin-menu-group-toggle::after{ transform: rotate(180deg); }
.admin-menu-group:hover .admin-menu-group-toggle{ background: rgba(255,255,255,.07); color: rgba(255,255,255,.92); }
.admin-menu-group.is-active .admin-menu-group-toggle{ background: rgba(255,255,255,.10); color: #fff; font-weight: 600; }

.admin-submenu{
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-top: 2px;
  padding-left: 12px;
}
.admin-submenu-link{
  display: flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 7px;
  color: rgba(255,255,255,.52);
  border: none;
  font-weight: 500;
  font-size: 13px;
  transition: background .15s, color .15s;
}
.admin-submenu-link:hover{ background: rgba(255,255,255,.06); color: rgba(255,255,255,.88); }
.admin-submenu-link.is-active{ background: rgba(255,255,255,.10); color: #fff; }

/* Bottom user section */
.admin-sidenav-footer{
  margin-top: auto;
  padding: 8px 0 0;
  border-top: 1px solid rgba(255,255,255,.07);
}
.admin-sidenav-user-details{ position: relative; }
.admin-sidenav-user-details summary{ list-style: none; }
.admin-sidenav-user-details summary::-webkit-details-marker{ display: none; }
.admin-sidenav-user-summary{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background .14s;
}
.admin-sidenav-user-summary:hover{ background: rgba(255,255,255,.07); }
.admin-sidenav-avatar{
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: #3b82f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  flex-shrink: 0;
}
.admin-sidenav-user-info{ flex: 1; overflow: hidden; min-width: 0; }
.admin-sidenav-user-name{
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.90);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.admin-sidenav-user-email{
  font-size: 11px;
  color: rgba(255,255,255,.42);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.admin-sidenav-user-chevron{
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: rgba(255,255,255,.35);
  transition: transform .18s;
}
.admin-sidenav-user-details[open] .admin-sidenav-user-chevron{ transform: rotate(180deg); }
.admin-sidenav-user-panel{
  position: absolute;
  bottom: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #1e293b;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,.40);
  z-index: 200;
}
.admin-sidenav-user-item{
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border-radius: 7px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 500;
  transition: background .13s, color .13s;
}
.admin-sidenav-user-item svg{ width: 15px; height: 15px; flex-shrink: 0; }
.admin-sidenav-user-item:hover{ background: rgba(255,255,255,.08); color: #fff; }
.admin-sidenav-user-item--danger{ color: rgba(239,68,68,.80); }
.admin-sidenav-user-item--danger:hover{ background: rgba(239,68,68,.12); color: #f87171; }
.admin-sidenav-user-sep{ height: 1px; background: rgba(255,255,255,.07); margin: 4px 4px; }

.admin-main{
  flex: 1;
  background: #f1f5f9;
  color: #0f172a;
  min-width: 0;
  margin-left: 256px;
}
.admin-topbar{
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
  height: 56px;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.admin-topbar-left{
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: #0f172a;
  letter-spacing: .01em;
}
.admin-topbar-right{ display:flex; align-items:center; gap:10px; }
.admin-user{ color: rgba(0,0,0,.62); font-weight: 600; font-size: 13px; }
.admin-content{ padding: 24px 24px 48px; }

/* Donation confirmation document styles */
.dc-doc{
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 40px 48px;
  max-width: 720px;
  font-family: 'Times New Roman', Times, serif;
  font-size: 14px;
  line-height: 1.6;
  color: #111;
}
.dc-doc-bilingual .dc-section-ro{ border-bottom: 1px solid #d1d5db; padding-bottom: 28px; margin-bottom: 28px; }
.dc-title{
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 24px;
}
.dc-subtitle{
  text-align: center;
  font-size: 13px;
  margin: -18px 0 24px;
  color: #555;
  font-style: italic;
}
.dc-intro{ margin: 0 0 16px; }
.dc-group{ margin: 0 0 16px; }
.dc-group-label{
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin: 0 0 6px;
  color: #333;
}
.dc-row{ margin: 0 0 3px; }
.dc-row-label{ font-weight: 700; }
.dc-note{ font-style: italic; margin: 16px 0; }
.dc-sig-block{
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 36px;
}
@media print {
  .dc-doc{ border: none; padding: 0; box-shadow: none; }
  body.admin .admin-sidenav,
  body.admin .admin-topbar,
  .no-print { display: none !important; }
  body.admin .admin-main{ padding: 0; margin-left: 0; }
  body.admin .admin-content{ padding: 0; }
}

.admin-mobile-nav{ display:none; }
.admin-mobile-toggle{ list-style:none; }
.admin-mobile-toggle::-webkit-details-marker{ display:none; }
.admin-mobile-toggle svg{ width: 16px; height: 16px; display:block; }

@media (max-width: 980px){
  .admin-shell{ display:block; }
  .admin-sidenav{ display:none; position:static; height:auto; }
  .admin-main{ min-height: 100dvh; margin-left: 0; }
  .admin-topbar-left{ display:flex; align-items:center; gap:10px; }
  .admin-mobile-nav{ display:inline-flex; position: relative; }
  .admin-mobile-toggle{ display:inline-flex; align-items:center; justify-content:center; }
  .admin-user-menu-toggle{ max-width: 44vw; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

  .admin-mobile-drawer{
    position: fixed;
    left: 0;
    top: 0;
    width: min(82vw, 300px);
    height: 100dvh;
    padding: 0;
    background: #0f172a;
    border-right: 1px solid #1e293b;
    box-shadow: 0 24px 70px rgba(0,0,0,.40);
    overflow-y: auto;
    z-index: 1100;
    transform: translateX(-105%);
    transition: transform .22s ease;
    display: flex;
    flex-direction: column;
  }
  .admin-mobile-nav[open] .admin-mobile-drawer{ transform: translateX(0); }
  .admin-mobile-nav[open]::before{
    content:"";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 1090;
  }
  .admin-mobile-drawer .admin-menu-link{ color: rgba(255,255,255,.62); }
  .admin-mobile-drawer .admin-menu-link:hover{ background: rgba(255,255,255,.07); color: rgba(255,255,255,.92); }
  .admin-mobile-drawer .admin-menu-link.is-active{ background: rgba(255,255,255,.10); color: #fff; }
  .admin-mobile-drawer .admin-menu-group-toggle{ color: rgba(255,255,255,.62); }
  .admin-mobile-drawer .admin-submenu-link{ color: rgba(255,255,255,.52); }
  .admin-mobile-drawer .admin-menu{ padding: 8px 12px 16px; flex:1; }

  .admin-drawer-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 10px;
    padding: 16px 16px 12px;
    border-bottom: 1px solid rgba(255,255,255,.07);
    color: rgba(255,255,255,.92);
  }

  .admin-drawer-close{
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.05);
    color: rgba(255,255,255,.86);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding: 0;
  }
  .admin-drawer-close:hover{ background: rgba(255,255,255,.10); }
}

/* Make existing components readable in admin */
body.admin .kicker{ background: #f1f5f9; color: #475569; }
body.admin .lead{ color: #64748b; }
body.admin .card{
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(15,23,42,.06);
}
body.admin .card + .card{ margin-top: 14px; }
body.admin .card .card-header{
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  font-weight: 600;
  color: #0f172a;
}
body.admin .card .table{
  --bs-table-bg: transparent;
  --bs-table-striped-bg: rgba(0,0,0,.018);
}
body.admin .card .table > :not(caption) > * > *{
  border-bottom-color: rgba(0,0,0,.08);
}
body.admin .admin-table-card{
  overflow: hidden;
}
body.admin .admin-table-card .card-header{
  padding: 12px 14px;
}
body.admin .admin-table-card .table-responsive{
  padding: 0 16px 10px;
}
body.admin .admin-data-table thead th{
  background: rgba(15,23,42,.035);
  color: rgba(15,23,42,.74);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 11px;
  font-weight: 700;
  border-bottom-width: 1px;
  white-space: nowrap;
}
body.admin .admin-data-table tbody td{
  padding-top: 10px;
  padding-bottom: 10px;
  vertical-align: middle;
}
body.admin .admin-data-table.table-striped > tbody > tr:nth-of-type(odd) > *{
  --bs-table-accent-bg: rgba(15,23,42,.018);
}
body.admin .admin-data-table tbody tr:hover > *{
  background: rgba(59,130,246,.04);
}
body.admin .worship-songs-table th:last-child,
body.admin .worship-songs-table td:last-child{
  width: 120px;
  min-width: 120px;
  white-space: nowrap;
}
body.admin .worship-songs-actions{
  flex-wrap: nowrap !important;
  white-space: nowrap;
}
body.admin .worship-songs-actions form{ margin: 0; }
body.admin .worship-songs-actions .btn,
body.admin .worship-songs-actions form .btn{
  width: 30px;
  height: 30px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px){
  body.admin .worship-songs-table thead th:nth-child(2){ width: 86px; }
  body.admin .worship-songs-table tbody td{ padding-top: 8px; padding-bottom: 8px; }
  body.admin .worship-songs-table tbody td[data-label="Titlu"] .fw-semibold{
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
body.admin .form-control-song-lyrics{
  font-family: "Montserrat", var(--font);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.45;
  white-space: pre;
  tab-size: 4;
}
body.admin .song-lyrics-pre{
  font-family: "Montserrat", var(--font);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.35;
  white-space: pre;
  tab-size: 4;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 12px;
  background: #fff;
  overflow: auto;
}
body.admin .song-lyrics-rich{
  font-family: "Montserrat", var(--font);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.28;
  white-space: pre-wrap;
  tab-size: 4;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 12px;
  background: #fff;
  overflow: auto;
}
body.admin .song-lyrics-rich .ws-line{ min-height: 1.28em; }
body.admin .song-lyrics-rich .ws-chord-seg{
  position: relative;
  display: inline-block;
  padding-top: .88em;
}
body.admin .song-lyrics-rich .ws-chord{
  position: absolute;
  left: 0;
  top: 0;
  font-size: .76em;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
  color: rgba(0,0,0,.76);
}
body.admin .song-lyrics-rich .ws-lyric{ display: inline; }
body.admin .song-lyrics-rich .ws-inline-chord{
  display: inline-block;
  margin-right: .72em;
  font-family: inherit;
  font-size: 1em;
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
  white-space: nowrap;
}

/* Admin dashboard stat cards */
.admin-stat-card{
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px 20px 18px;
  box-shadow: 0 1px 4px rgba(15,23,42,.06);
}
.admin-stat-card-header{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 10px;
}
.admin-stat-card-title{
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.admin-stat-card-icon{
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  flex-shrink: 0;
}
.admin-stat-card-icon svg{ width: 16px; height: 16px; display:block; }
.admin-stat-card-divider{
  height: 3px;
  background: #0f172a;
  border-radius: 2px;
  width: 28px;
  margin: 0 0 12px;
}
.admin-stat-card-value{
  font-size: 26px;
  font-weight: 700;
  color: #0f172a;
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 4px;
}
.admin-stat-card-desc{
  font-size: 12px;
  color: #94a3b8;
}
.admin-page-header{ margin-bottom: 24px; }
.admin-page-header h1{
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  font-family: var(--font-display);
  margin: 0 0 4px;
}
.admin-page-header .admin-page-subtitle{
  font-size: 14px;
  color: #3b82f6;
  font-weight: 500;
  margin: 0;
}
.admin-wide-card{
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px 20px 18px;
  box-shadow: 0 1px 4px rgba(15,23,42,.06);
  height: 100%;
}
.admin-wide-card-title{
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  font-family: var(--font-display);
  margin: 0 0 4px;
}
.admin-wide-card-subtitle{
  font-size: 13px;
  color: #3b82f6;
  font-weight: 500;
  margin: 0 0 14px;
}
.admin-wide-card-divider{
  height: 2px;
  background: #0f172a;
  border-radius: 2px;
  width: 28px;
  margin: 0 0 14px;
}
.admin-wide-card-body{
  font-size: 13px;
  color: #94a3b8;
}
.admin-wide-card-body a{ color: #3b82f6; }
.admin-wide-card-body a:hover{ color: #2563eb; }
.admin-quick-links{ display:flex; flex-direction:column; gap:6px; }
.admin-quick-link{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 9px 12px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  font-size: 13px;
  font-weight: 500;
  color: #334155;
  transition: background .14s, border-color .14s, color .14s;
}
.admin-quick-link:hover{
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1d4ed8;
}
a{ color:inherit; text-decoration:none; }

