/* =====================================================================
   DONATIONS PAGE — LOCAL STYLES
===================================================================== */

/* Page body offset for fixed nav */
.donations-page {
  padding-top: var(--nav-h);
  background: var(--off-white);
  min-height: 100vh;
}

/* ── HERO BAND ── */
.donate-hero {
  background: var(--blue);
  border-bottom: 4px solid var(--red);
  position: relative;
  overflow: hidden;
}

/* Subtle diagonal texture */
.donate-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255, 255, 255, 0.015) 40px,
    rgba(255, 255, 255, 0.015) 41px
  );
  pointer-events: none;
}

/* Large watermark text */
.donate-hero::after {
  content: "DONATE";
  position: absolute;
  top: 50%;
  right: -2%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(6rem, 16vw, 14rem);
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.donate-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.donate-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.05;
}

/* Text block */
.donate-hero-right {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  border-left: 3px solid var(--red);
  padding-left: 2.5rem;
}

.donate-hero-right p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.78);
}

.donate-hero-right p strong {
  color: var(--white);
  font-weight: 600;
}

.donate-disclaimer {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.7;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.donate-disclaimer-title {
  font-family: system-ui;
  font-size: 0.9rem;
  color: var(--red-light);
}

.donate-disclaimer-list {
  list-style-position: inside;
  margin-left: 1rem;
  font-family: system-ui;
  font-size: 0.7rem;
  color: var(--off-white);
}

/* ── DONATION CARDS SECTION ── */
.donate-methods {
  background: var(--off-white);
  padding: 2rem;
  position: relative;
}

.donate-methods-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.donate-methods-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.donate-methods-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  letter-spacing: 0.04em;
  color: var(--blue);
  margin-top: 0.6rem;
}

.donate-methods-header p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  font-style: italic;
}

/* Two-column card grid */
.donate-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.donate-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 2.2rem 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow var(--transition),
    transform var(--transition);
  position: relative;
  overflow: hidden;
}

.donate-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.donate-card--primary {
  border-top-color: var(--red);
}

/* Corner accent */
.donate-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    transparent 50%,
    rgba(0, 40, 104, 0.05) 50%
  );
}

.donate-card--primary::after {
  background: linear-gradient(
    135deg,
    transparent 50%,
    rgba(200, 16, 46, 0.06) 50%
  );
}

.dc-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.dc-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 40, 104, 0.2);
}

.donate-card--primary .dc-icon {
  background: var(--red);
  box-shadow: 0 2px 8px rgba(200, 16, 46, 0.25);
}

.dc-heading {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.dc-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.donate-card--primary .dc-tag {
  color: var(--red);
}

.dc-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--blue);
  line-height: 1;
}

.dc-info-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: var(--smoke);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
}

.dc-info-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.dc-info-value {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.03em;
  word-break: break-all;
}

.dc-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 13px 26px;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.18);
  align-self: center;
}

.donate-card--primary .dc-cta {
  background: var(--red);
  box-shadow: 3px 3px 0 rgba(200, 16, 46, 0.3);
}

.dc-cta:hover {
  background: var(--blue-mid);
  transform: translateY(-1px);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
}

.donate-card--primary .dc-cta:hover {
  background: var(--red-dark);
  box-shadow: 4px 4px 0 rgba(200, 16, 46, 0.35);
}

.dc-cta-arrow {
  font-size: 1rem;
  transition: transform var(--transition);
}

.dc-cta:hover .dc-cta-arrow {
  transform: translateX(3px);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .donate-hero-right {
    border-left: none;
    padding-left: 0;
    padding-top: 2rem;
  }

  .donate-hero::after {
    display: none;
  }
}

@media (max-width: 680px) {
  .donate-cards-grid {
    grid-template-columns: 1fr;
  }

  .donate-methods {
    padding: 3.5rem 1.2rem 4rem;
  }
}
