/* ═══════════════════════════════════════════════════
   NewarkYogaMovement — Main Stylesheet
   Companion to index.html
═══════════════════════════════════════════════════ */

/* ─── CSS CUSTOM PROPERTIES ─────────────────────── */
:root {
  --blue:   #1F67B2;
  --yellow: #FFD440;
  --dark:   #0D1B2E;
  --light:  #F5F8FC;
  --text:   #1A1A2E;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, .fraunces { font-family: 'Fraunces', serif; }


/* ═══════════════════════════
   FADE UP KEYFRAMES
═══════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fu0 { opacity:0; animation: fadeUp .75s ease forwards 0s; }
.fu1 { opacity:0; animation: fadeUp .75s ease forwards .2s; }
.fu2 { opacity:0; animation: fadeUp .75s ease forwards .4s; }
.fu3 { opacity:0; animation: fadeUp .75s ease forwards .6s; }


/* ═══════════════════════════
   SCROLL REVEAL
═══════════════════════════ */
.reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; }

.d1 { transition-delay: .12s !important; }
.d2 { transition-delay: .24s !important; }
.d3 { transition-delay: .36s !important; }


/* ═══════════════════════════
   STICKY NAV
═══════════════════════════ */
#site-nav { transition: box-shadow .35s, background .35s; }
#nav-main .flex { min-height: 80px; }
.nav-scrolled {
  box-shadow: 0 4px 28px rgba(13,27,46,.10);
}

/* Top announcement bar */
#announce-bar {
  background: var(--dark);
  color: rgba(255,255,255,.85);
  font-size: .78rem;
  font-weight: 500;
  text-align: center;
  padding: 8px 16px;
  letter-spacing: .01em;
}
#announce-bar a { color: var(--yellow); text-decoration: none; font-weight: 700; }
#announce-bar a:hover { text-decoration: underline; }
#close-announce {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: rgba(255,255,255,.5);
  font-size: 1.1rem; cursor: pointer; line-height: 1; padding: 0;
}
#close-announce:hover { color: #fff; }

/* Nav main bar */
#nav-main {
  border-bottom: 1px solid rgba(13,27,46,.07);
  background: #fff;
}

/* Nav link base */
.nav-link {
  position: relative; display: inline-flex; align-items: center; gap: 4px;
  padding: 6px 10px; font-size: .82rem; font-weight: 600;
  color: #374151; text-decoration: none; cursor: pointer;
  background: none; border: none; font-family: 'Plus Jakarta Sans', sans-serif;
  transition: color .2s;
  white-space: nowrap;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--blue);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
  border-radius: 2px;
}
.nav-link:hover, .nav-link:focus { color: var(--blue); outline: none; }
.nav-link:hover::after { transform: scaleX(1); }


/* ═══════════════════════════
   DESKTOP DROPDOWN
═══════════════════════════ */
.nav-item { position: relative; }

.dropdown {
  display: none;
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(13,27,46,.16), 0 0 0 1px rgba(13,27,46,.06);
  min-width: 230px; z-index: 999;
  padding: 18px 0 12px;
  animation: dropIn .18s ease;
}
/* Wide dropdown for About */
.dropdown-wide {
  min-width: 480px;
  display: none;
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(13,27,46,.16), 0 0 0 1px rgba(13,27,46,.06);
  z-index: 999;
  padding: 18px 0 12px;
  animation: dropIn .18s ease;
}
@keyframes dropIn {
  from { opacity: 0; transform: translateX(-50%) translateY(4px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
/* Invisible bridge: fills gap between nav link bottom and dropdown top so hover never breaks */
.nav-item::after {
  content: ''; position: absolute; bottom: -10px; left: 0; right: 0; height: 10px;
  display: none;
}
.nav-item:hover::after { display: block; }

/* Arrow tip */
.dropdown::before, .dropdown-wide::before {
  content: ''; position: absolute; top: 8px; left: 50%;
  width: 12px; height: 12px; background: #fff;
  border-left: 1px solid rgba(13,27,46,.06); border-top: 1px solid rgba(13,27,46,.06);
  transform: translateX(-50%) rotate(45deg);
  border-radius: 2px;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown,
.nav-item:hover .dropdown-wide,
.nav-item:focus-within .dropdown-wide { display: block; }

.dropdown a, .dropdown-wide a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 20px; font-size: .875rem; font-weight: 500;
  color: #374151; text-decoration: none; white-space: nowrap;
  transition: background .15s, color .15s;
}
.dropdown a:hover, .dropdown-wide a:hover {
  background: var(--light); color: var(--blue);
}
.dropdown a .d-icon, .dropdown-wide a .d-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--light); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; font-size: .8rem;
  color: var(--blue); transition: background .15s, color .15s;
}
.dropdown a:hover .d-icon i, .dropdown-wide a:hover .d-icon i { color: var(--blue); }
.dropdown a:hover .d-icon, .dropdown-wide a:hover .d-icon { background: rgba(31,103,178,.12); }
.dropdown a .d-text, .dropdown-wide a .d-text { display: flex; flex-direction: column; }
.dropdown a .d-label, .dropdown-wide a .d-label { font-weight: 600; font-size: .875rem; line-height: 1.3; }
.dropdown a .d-desc, .dropdown-wide a .d-desc {
  font-size: .74rem; color: #9ba8bb; font-weight: 400; margin-top: 1px;
}
.dropdown .sub-lbl, .dropdown-wide .sub-lbl {
  font-size: .68rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .1em; color: #bac2ce;
  padding: 12px 20px 4px; margin-top: 4px;
  border-top: 1px solid #f0f4fa;
}
.dropdown .sub-lbl:first-child, .dropdown-wide .sub-lbl:first-child {
  border-top: none; margin-top: 0; padding-top: 6px;
}
/* Two-column layout for wide dropdown */
.dropdown-wide .dd-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.dropdown-wide .dd-col { padding: 4px 0; }
.dropdown-wide .dd-col + .dd-col { border-left: 1px solid #f0f4fa; }

/* Dropdown footer strip */
.dropdown-footer {
  margin-top: 8px; padding: 12px 20px 2px;
  border-top: 1px solid #f0f4fa;
  display: flex; align-items: center; gap: 8px;
}
.dropdown-footer a {
  font-size: .78rem !important; color: var(--blue) !important;
  font-weight: 700 !important; padding: 0 !important;
  background: none !important;
}
.dropdown-footer a:hover { text-decoration: underline !important; }


/* ═══════════════════════════
   MOBILE DRAWER
═══════════════════════════ */
#mobile-menu {
  display: none; position: fixed;
  top: 0; right: 0; bottom: 0; width: min(360px, 100vw);
  background: #fff; z-index: 1100;
  box-shadow: -8px 0 40px rgba(13,27,46,.18);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .3s ease;
}
#mobile-menu.open {
  display: block;
  transform: translateX(0);
}
#mob-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(13,27,46,.45); z-index: 1099;
  backdrop-filter: blur(3px);
}
#mob-overlay.open { display: block; }

.mob-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid #f0f4fa;
}
.mob-close {
  width: 36px; height: 36px; border-radius: 8px; border: none;
  background: var(--light); display: flex; align-items: center;
  justify-content: center; cursor: pointer; font-size: 1.2rem; color: #374151;
}
.mob-close:hover { background: #e2e8f0; }

.mob-content { display: none; background: #f8fafd; }
.mob-content.open { display: block; }
.mob-content a {
  display: flex; align-items: center; gap-8px;
  padding: 11px 28px; font-size: .88rem; font-weight: 500;
  color: #374151; text-decoration: none;
  border-bottom: 1px solid #edf2f7;
  transition: color .15s, background .15s;
}
.mob-content a:hover { color: var(--blue); background: #eef4fb; }
.mob-trigger {
  width: 100%; text-align: left; padding: 15px 20px;
  font-weight: 700; font-size: .9rem; display: flex;
  justify-content: space-between; align-items: center;
  color: var(--dark); background: none; border: none;
  border-bottom: 1px solid #f0f4fa; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: color .15s, background .15s;
}
.mob-trigger:hover { background: var(--light); color: var(--blue); }
.mob-trigger.open { color: var(--blue); background: #eef4fb; }
.mob-icon {
  width: 26px; height: 26px; border-radius: 6px; background: var(--light);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; font-weight: 700; flex-shrink: 0;
  transition: background .15s, transform .25s;
}
.mob-trigger.open .mob-icon { background: rgba(31,103,178,.12); transform: rotate(45deg); }

.mob-link-icon {
  width: 16px; text-align: center;
  color: var(--blue); margin-right: 10px; font-size: .8rem; flex-shrink: 0;
}


/* ═══════════════════════════
   HERO SLIDER
═══════════════════════════ */
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1s ease;
  background-size: cover; background-position: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right,
    rgba(13,27,46,.78) 0%,
    rgba(13,27,46,.45) 55%,
    rgba(13,27,46,.18) 100%);
}
.hero-content { position: relative; z-index: 2; }

/* Progress bar */
.slide-progress {
  height: 3px; background: rgba(255,255,255,.2);
  position: relative; overflow: hidden; border-radius: 2px; flex: 1;
}
.slide-progress-inner {
  position: absolute; left: 0; top: 0; height: 100%;
  background: var(--yellow); width: 0%;
  transition: width linear;
}


/* ═══════════════════════════
   SERVE CARDS
═══════════════════════════ */
.serve-card {
  position: relative; overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.serve-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.serve-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(13,27,46,.13);
}
.serve-card:hover::after { transform: scaleX(1); }

.serve-icon-wrap {
  width: 60px; height: 60px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 1.35rem;
  transition: transform .3s ease;
}
.serve-card:hover .serve-icon-wrap { transform: scale(1.1) rotate(-4deg); }

.serve-number {
  position: absolute; top: 20px; right: 20px;
  font-family: 'Fraunces', serif; font-size: 4rem; font-weight: 900;
  line-height: 1; color: rgba(13,27,46,.04); pointer-events: none;
  user-select: none;
}


/* ═══════════════════════════
   OFFSET IMAGE FRAME
═══════════════════════════ */
.img-frame { position: relative; display: inline-block; }
.img-frame::after {
  content: ''; position: absolute;
  top: 14px; left: 14px; width: 100%; height: 100%;
  background: var(--yellow); z-index: 0; border-radius: 6px;
}
.img-frame img { position: relative; z-index: 1; display: block; border-radius: 6px; }


/* ═══════════════════════════
   PROGRAM CARDS
═══════════════════════════ */
.program-card {
  border-top: 3px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, border-top-color .25s ease;
}
.program-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 48px rgba(13,27,46,.14);
  border-top-color: var(--yellow);
}
.program-card img { transition: transform .5s ease; }
.program-card:hover img { transform: scale(1.04); }


/* ═══════════════════════════
   EVENT CARDS
═══════════════════════════ */
.ev-card {
  background: #fff; border-radius: 16px;
  display: flex; overflow: hidden;
  box-shadow: 0 4px 20px rgba(13,27,46,.10);
  transition: transform .25s ease, box-shadow .25s ease;
}
.ev-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(13,27,46,.16);
}
.ev-card-img { width: 160px; flex-shrink: 0; object-fit: cover; display: block; }
.ev-card-body { padding: 20px 22px; display: flex; flex-direction: column; justify-content: center; }
.ev-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 8px; }
.ev-meta span { display: inline-flex; align-items: center; gap: 5px; font-size: .78rem; font-weight: 600; color: #6b7280; }
.ev-meta i { color: var(--blue); font-size: .72rem; }
.ev-card-title { font-family: 'Fraunces', serif; font-weight: 800; font-size: 1.2rem; color: var(--dark); margin-bottom: 5px; line-height: 1.25; }
.ev-card-sub { font-size: .83rem; color: #6b7280; font-weight: 500; }

/* Dot indicators */
.ev-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.4); border: none; cursor: pointer; padding: 0; transition: background .2s, transform .2s; }
.ev-dot.active { background: #fff; transform: scale(1.3); }

/* Event slide transitions */
#ev-slides { position: relative; min-height: 290px; }
.ev-slide {
  display: flex; flex-direction: column; gap: 20px;
  opacity: 1; transition: opacity .42s ease, transform .42s ease;
  transform: translateX(0);
}
.ev-slide.ev-hidden {
  display: flex; flex-direction: column; gap: 20px;
  opacity: 0; pointer-events: none;
  position: absolute; top: 0; left: 0; right: 0;
}

/* Right panel dot-pattern */
.ev-right-panel {
  background-color: var(--yellow);
  background-image: radial-gradient(circle, rgba(13,27,46,.08) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
}


/* ═══════════════════════════
   TESTIMONIAL SECTION
═══════════════════════════ */
.t-card-light {
  flex-shrink: 0; width: 340px;
  background: #fff;
  border: 1.5px solid #e9eef6;
  border-radius: 20px; padding: 28px 24px;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  cursor: default;
  box-shadow: 0 2px 12px rgba(13,27,46,.06);
}
.t-card-light:hover {
  transform: translateY(-6px);
  border-color: var(--blue);
  box-shadow: 0 12px 32px rgba(31,103,178,.12);
}
.t-card-light.featured-light {
  border-color: var(--blue);
  box-shadow: 0 8px 28px rgba(31,103,178,.14);
}

.t-avatar-placeholder {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; color: var(--dark);
  flex-shrink: 0;
}

/* Track scroll */
.t-track-wrap { overflow: hidden; position: relative; }
.t-track {
  display: flex; gap: 20px; padding: 12px 4px 20px;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
}

/* Nav arrows — light theme */
.t-arrow-light {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid #d1dae8;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .2s; color: var(--dark); font-size: 1rem;
  box-shadow: 0 2px 8px rgba(13,27,46,.07);
}
.t-arrow-light:hover { background: var(--blue); border-color: var(--blue); color: #fff; box-shadow: 0 4px 14px rgba(31,103,178,.3); }

.t-dot-light {
  width: 8px; height: 8px; border-radius: 50%;
  background: #d1dae8; border: none; padding: 0; cursor: pointer;
  transition: background .2s, width .25s;
}
.t-dot-light.active { background: var(--blue); width: 24px; border-radius: 4px; }


/* ═══════════════════════════
   MARQUEE
═══════════════════════════ */
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-track { display: flex; width: max-content; animation: marquee 24s linear infinite; }
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }


/* ═══════════════════════════
   DOT GRID
═══════════════════════════ */
.dot-grid {
  background-color: var(--light);
  background-image: radial-gradient(circle, rgba(31,103,178,.12) 1px, transparent 1px);
  background-size: 22px 22px;
}


/* ═══════════════════════════
   STAT DIVIDERS
═══════════════════════════ */
.stat-div { border-left: 1px solid rgba(255,255,255,.15); }


/* ═══════════════════════════
   BUTTONS
═══════════════════════════ */
.btn-white {
  background: #fff; color: var(--blue);
  font-weight: 700; padding: 14px 30px; border-radius: 7px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem;
  text-decoration: none; display: inline-block; border: 2px solid #fff;
  transition: background .2s, color .2s;
}
.btn-white:hover { background: var(--blue); color: #fff; }

.btn-yellow {
  background: var(--yellow); color: var(--dark);
  font-weight: 700; padding: 14px 30px; border-radius: 7px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem;
  text-decoration: none; display: inline-block; border: 2px solid var(--yellow);
  transition: background .2s, border-color .2s;
}
.btn-yellow:hover { background: #e8bd1a; border-color: #e8bd1a; }

.btn-blue {
  background: var(--blue); color: #fff;
  font-weight: 700; padding: 14px 30px; border-radius: 7px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem;
  text-decoration: none; display: inline-block;
  transition: opacity .2s, transform .2s;
}
.btn-blue:hover { opacity: .9; transform: translateY(-2px); }

.btn-outline-blue {
  background: transparent; color: var(--blue);
  font-weight: 700; padding: 12px 28px; border-radius: 7px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: .95rem;
  text-decoration: none; display: inline-block; border: 2px solid var(--blue);
  transition: background .2s, color .2s;
}
.btn-outline-blue:hover { background: var(--blue); color: #fff; }


/* ═══════════════════════════
   INSTAGRAM FEED
═══════════════════════════ */
.ig-tile {
  position: relative; display: block; overflow: hidden;
  aspect-ratio: 1 / 1; background: #e5e7eb;
}
.ig-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
  display: block;
}
.ig-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,rgba(240,148,51,.75),rgba(220,39,67,.75),rgba(188,24,136,.75));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.6rem;
  opacity: 0; transition: opacity .3s ease;
}
.ig-tile:hover img { transform: scale(1.08); }
.ig-tile:hover .ig-overlay { opacity: 1; }


/* ═══════════════════════════
   FOOTER
═══════════════════════════ */
.footer-link {
  color: rgba(255,255,255,.8); text-decoration: none;
  font-size: .83rem; transition: color .18s, padding-left .18s;
  display: inline-block;
}
.footer-link:hover { color: var(--yellow); padding-left: 4px; }


/* ═══════════════════════════
   PILL TAGS
═══════════════════════════ */
.tag {
  display: inline-block; font-size: .75rem; font-weight: 600;
  padding: 4px 10px; border-radius: 99px;
  background: var(--light); color: var(--blue);
}

/* Image overflow clip */
.img-clip { overflow: hidden; }


/* ═══════════════════════════
   SEARCH OVERLAY
═══════════════════════════ */
#search-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(13,27,46,.65); backdrop-filter: blur(6px);
  align-items: flex-start; justify-content: center;
  padding-top: 10vh;
}
#search-overlay.open { display: flex; }

#search-box {
  background: #fff; border-radius: 18px;
  box-shadow: 0 32px 80px rgba(13,27,46,.28);
  width: min(680px, 92vw);
  animation: searchIn .2s ease;
  overflow: hidden;
}
@keyframes searchIn {
  from { opacity:0; transform: translateY(-16px) scale(.97); }
  to   { opacity:1; transform: translateY(0) scale(1); }
}

#search-form {
  display: flex; align-items: center;
  padding: 0 20px; border-bottom: 1px solid #f0f4fa;
}
#search-form i { font-size: 1.1rem; color: var(--blue); flex-shrink: 0; margin-right: 14px; }
#search-input {
  flex: 1; border: none; outline: none; padding: 20px 0;
  font-size: 1.1rem; font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--dark); background: transparent;
}
#search-input::placeholder { color: #b0bac8; }
#search-close {
  width: 34px; height: 34px; border-radius: 8px; border: none;
  background: var(--light); cursor: pointer; font-size: .9rem;
  color: #6b7280; flex-shrink: 0; display: flex;
  align-items: center; justify-content: center; transition: background .15s;
}
#search-close:hover { background: #e2e8f0; color: var(--dark); }

#search-suggestions { padding: 14px 20px 20px; }
.search-hint-label {
  font-size: .7rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .1em; color: #b0bac8; margin-bottom: 10px; display: block;
}
.search-quick-links { display: flex; flex-wrap: wrap; gap: 8px; }
.search-quick-links a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 99px;
  background: var(--light); color: var(--blue);
  font-size: .82rem; font-weight: 600; text-decoration: none;
  border: 1px solid #dde6f4; transition: background .15s, border-color .15s;
}
.search-quick-links a:hover { background: #dce9f8; border-color: var(--blue); }
.search-quick-links a i { font-size: .75rem; }


/* ═══════════════════════════
   DONATE SECTION
═══════════════════════════ */
.amt-pill {
  padding: 12px 6px; border-radius: 12px; font-weight: 700; font-size: .9rem;
  border: 2px solid #e5e7eb; background: #f9fafb; color: #374151;
  cursor: pointer; transition: all .18s ease; text-align: center;
}
.amt-pill:hover { border-color: var(--blue); color: var(--blue); background: rgba(31,103,178,.05); }
.amt-pill.selected { background: var(--blue); border-color: var(--blue); color: #fff; box-shadow: 0 4px 14px rgba(31,103,178,.3); }

.freq-pill {
  padding: 9px 12px; border-radius: 9px; font-size: .82rem; font-weight: 700;
  border: none; background: transparent; color: #6b7280; cursor: pointer; transition: all .18s;
}
.freq-pill.active { background: #fff; color: var(--dark); box-shadow: 0 2px 8px rgba(0,0,0,.1); }

.donate-main-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 16px; border-radius: 14px;
  background: linear-gradient(135deg, var(--blue) 0%, #1557a0 100%);
  color: #fff; font-weight: 800; font-size: 1rem; text-decoration: none;
  box-shadow: 0 6px 24px rgba(31,103,178,.4);
  transition: transform .2s, box-shadow .2s;
}
.donate-main-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(31,103,178,.5); }
.donate-main-btn:active { transform: scale(.98); }

.pay-method-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 10px; border-radius: 12px;
  border: 1.5px solid #e5e7eb; background: #f9fafb;
  font-size: .82rem; font-weight: 700; color: #374151; text-decoration: none;
  transition: all .18s;
}
.pay-method-btn:hover { border-color: var(--blue); background: rgba(31,103,178,.04); color: var(--blue); }

.donate-btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: .875rem;
  padding: 11px 22px; border-radius: 99px;
  background: var(--yellow); color: var(--dark);
  text-decoration: none; border: none; cursor: pointer;
  box-shadow: 0 4px 14px rgba(255,212,64,.45);
  transition: transform .2s ease, box-shadow .2s ease;
  letter-spacing: .01em;
  white-space: nowrap;
}
.donate-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.25) 0%, transparent 60%);
  pointer-events: none;
}
.donate-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 24px rgba(255,212,64,.55);
}
.donate-btn:active { transform: scale(.97); }
.donate-btn .btn-heart {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(13,27,46,.12); flex-shrink: 0;
  font-size: .7rem;
}
