/* Shared modern NGO styles for: What We Do, Our Mission, Become a Volunteer */

:root{
  --ngo-orange:#f39c12;
  --ngo-ink:#0f0f0f;
  --ngo-muted:#5b5b5b;
  --ngo-bg:#ffffff;
  --ngo-soft:#fbf7f1;
  --ngo-soft2:#fef3e0;
  --ngo-border:rgba(15,15,15,0.10);
}

.page-wrap{
  background:var(--ngo-bg);
}

.charity-hero{
  background: linear-gradient(180deg, rgba(15,61,46,0.75) 0%, rgba(15,61,46,0.92) 100%), url("Kirsten4.jpg");
  background-size:cover;
  background-position:center;
  min-height: 340px;
  display:flex;
  align-items:center;
}

.charity-hero .container{
  padding: 56px 20px;
}

.charity-hero .kicker{
  color: var(--ngo-orange);
  letter-spacing: 2px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 14px;
}

.charity-hero h1{
  color:#fff;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  margin: 0 0 16px;
  font-weight: 900;
}

.charity-hero p{
  color: rgba(255,255,255,0.92);
  font-size: 18px;
  line-height: 1.8;
  max-width: 780px;
}

.section-soft{
  background: var(--ngo-soft);
}

.section-pad{
  padding: 64px 20px;
}

.section-title{
  text-align:center;
  margin-bottom: 28px;
}

.section-title h2{
  font-size: 34px;
  margin-bottom: 10px;
}

.section-title p{
  color: var(--ngo-muted);
  line-height: 1.8;
  max-width: 820px;
  margin: 0 auto;
}

.cards-3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card{
  background:#fff;
  border: 1px solid var(--ngo-border);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.04);
}

.card h3{
  margin: 10px 0 8px;
  font-size: 18px;
}

.card p{
  color: var(--ngo-muted);
  line-height: 1.8;
}

.card .icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(243,156,18,0.12);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  color: var(--ngo-ink);
}

.actions-row{
  display:flex;
  justify-content:center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.ngo-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 22px;
  border-radius: 12px;
  background: #000;
  color:#fff;
  text-decoration:none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 800;
  border: 1px solid rgba(0,0,0,0.12);
  transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.ngo-btn:hover{
  background: var(--ngo-orange);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(243,156,18,0.25);
}

.steps{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.step{
  background: #fff;
  border: 1px solid var(--ngo-border);
  border-radius: 18px;
  padding: 22px;
}

.step .num{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(243,156,18,0.16);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  margin-bottom: 10px;
}

.step h3{
  margin: 0 0 8px;
}

.step p{
  margin: 0;
  color: var(--ngo-muted);
  line-height: 1.8;
}

@media (max-width: 900px){
  .cards-3{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .charity-hero p{ font-size: 16px; }
  .section-title h2{ font-size: 28px; }
}

