/* ============================================================
   Benjamin Runga Foundation — Support Page Styles (support.css)
   ============================================================ */

/* INTRO BAND */
.intro-band { background: var(--off-white); padding: 3.5rem 2rem; text-align: center; }
.intro-band p { font-size: 1.05rem; color: #444; max-width: 680px; margin: 0 auto; }

/* SUPPORT OPTIONS */
.support-section { padding: 3rem 2rem; background: var(--off-white); }
.support-inner {
  max-width: 1100px; margin: 0 auto;
  background: var(--white); border-radius: 14px; padding: 3.5rem;
  box-shadow: 0 4px 40px rgba(27,52,92,0.09), 0 1px 4px rgba(27,52,92,0.04);
  border: 1px solid rgba(27,52,92,0.07);
}
.support-header { text-align: center; margin-bottom: 4rem; }

.support-option {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 2.5rem; align-items: center;
  padding: 1.5rem 0; border-bottom: 1px solid rgba(27,52,92,0.10);
}
.support-option:last-child { border-bottom: none; }

.support-icon {
  width: 108px; height: 108px; border-radius: 50%;
  background: var(--off-white); border: 3px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--accent);
  flex-shrink: 0;
}
.support-text h2 {
  font-family: var(--serif); font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700; color: var(--navy); margin-bottom: 0.75rem;
}
.support-text p { font-size: 0.98rem; color: #444; margin-bottom: 1rem; }
.support-text .tax-note {
  font-size: 0.8rem; color: var(--green); font-weight: 600;
  display: flex; align-items: center; gap: 0.3rem;
}
.support-cta { display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-start; }

@media (max-width: 860px) {
  .support-option { grid-template-columns: 1fr; text-align: center; }
  .support-icon { width: 90px; height: 90px; font-size: 1.5rem; justify-self: center; }
  .support-cta { align-items: center; }
}

/* DONATION IMPACT LADDER */
.impact-ladder { margin: 1.5rem 0 1.25rem; }
.impact-ladder-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--navy); margin-bottom: 0.75rem; display: block;
}
.ladder-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 0.5rem; }
.ladder-card { background: var(--navy); border-radius: 6px; padding: 0.9rem 0.75rem; text-align: center; }
.ladder-card .l-amount {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 700;
  color: var(--accent); line-height: 1; display: block; margin-bottom: 0.35rem;
}
.ladder-card .l-desc { font-size: 0.72rem; color: rgba(255,255,255,0.8); line-height: 1.4; }
@media (max-width: 680px) { .ladder-grid { grid-template-columns: 1fr; } }

/* VOLUNTEER ROLES LIST */
.volunteer-roles {
  list-style: none; margin: 0.5rem 0 1rem;
  display: flex; flex-direction: column; gap: 0.3rem;
}
.volunteer-roles li {
  font-size: 0.92rem; color: #444;
  display: flex; align-items: baseline; gap: 0.5rem;
}
.volunteer-roles li::before { content: '—'; color: var(--accent); font-weight: 700; flex-shrink: 0; }
@media (max-width: 860px) { .volunteer-roles { align-items: center; } }

/* SOCIAL MEDIA BLOCK */
.social-section {
  padding: 5rem 2rem; background: var(--navy); text-align: center;
}
.social-section h2 {
  font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700; color: var(--white); margin-bottom: 0.75rem;
}
.social-section p { color: rgba(255,255,255,0.7); margin-bottom: 2.5rem; }
.social-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.social-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.5rem; border-radius: 4px; font-weight: 700;
  font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; transition: all 0.25s; min-height: 44px;
  background: rgba(255,255,255,0.1); color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}
.social-btn:hover { background: rgba(255,255,255,0.2); border-color: var(--green); color: var(--green); }
