/* ============================================================
   MIGHTY SHINE — Fundraising Page Styles
   Supplements css/style.css
   ============================================================ */


/* ============================================================
   FUNDRAISE HERO
   ============================================================ */
.fundraise-hero {
  min-height: 75vh;
  padding-top: 120px;
  padding-bottom: 72px;
}

.fundraise-hero .hero__content {
  padding-left: 4%;
}

.fundraise-hero .hero__headline {
  margin-top: 2rem;
}

.fundraise-hero .hero__subhead {
  max-width: 600px;
}


/* ============================================================
   WHY FUNDRAISE
   ============================================================ */
.fundraise-why {
  padding: var(--section-pad);
  background: var(--cream);
}

.fundraise-why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.fundraise-why__text .section-title {
  margin-bottom: 1.5rem;
}

.fundraise-why__text p {
  font-size: 1rem;
  color: #444;
  line-height: 1.75;
  margin-bottom: 1.1rem;
}

/* Benefit list */
.fundraise-why__benefits {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 8px;
}

.fundraise-why__benefit {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.fundraise-why__check {
  color: var(--gold);
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.fundraise-why__benefit strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.fundraise-why__benefit p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.65;
}


/* ============================================================
   HOW IT WORKS — STEPS
   ============================================================ */
.fundraise-steps {
  padding: var(--section-pad);
  background: var(--white);
}

.fundraise-steps .section-title {
  margin-bottom: 3rem;
}

.fundraise-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fundraise-step {
  border: 4px solid transparent;
  padding: 40px 28px 36px;
  position: relative;
  transition: transform 0.15s, box-shadow 0.15s;
}

.fundraise-step--navy {
  background: var(--navy);
  border-color: var(--navy);
}
.fundraise-step--navy:hover {
  transform: translateY(-4px);
  box-shadow: 8px 8px 0 rgba(27,20,100,0.25);
}

.fundraise-step--purple {
  background: #2D1B69;
  border-color: #8B5CF6;
}
.fundraise-step--purple:hover {
  transform: translateY(-4px);
  box-shadow: 8px 8px 0 rgba(139,92,246,0.35);
}

.fundraise-step--sky {
  background: #0C4A6E;
  border-color: var(--sky-blue);
}
.fundraise-step--sky:hover {
  transform: translateY(-4px);
  box-shadow: 8px 8px 0 rgba(41,171,226,0.35);
}

.fundraise-step__number {
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 20px;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.4);
}

.fundraise-step__title {
  font-size: 0.55rem;
  color: var(--white);
  line-height: 1.8;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.fundraise-step__desc {
  font-size: 0.95rem;
  color: rgba(255, 248, 231, 0.82);
  line-height: 1.7;
}


/* ============================================================
   REQUEST FORM SECTION
   ============================================================ */
.fundraise-form-section {
  padding: var(--section-pad);
  background: var(--white);
}

.fundraise-form-section .section-title { margin-bottom: 1rem; }
.fundraise-form-section .section-subhead { margin-bottom: 2.5rem; }

.fundraise-form__embed {
  max-width: 720px;
  margin: 0 auto;
  border: 4px solid var(--navy);
  box-shadow: 8px 8px 0 var(--navy);
  padding: 48px 40px;
  background: var(--cream);
}

.fundraise-form__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 32px;
  border: 3px dashed rgba(27,20,100,0.2);
}

.fundraise-form__placeholder-label {
  font-size: 0.52rem;
  color: var(--navy);
  letter-spacing: 0.1em;
}

.fundraise-form__placeholder-note {
  font-size: 0.95rem;
  color: #aaa;
}


/* ============================================================
   RESPONSIVE — 900px
   ============================================================ */
@media (max-width: 900px) {
  .fundraise-why__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .fundraise-steps__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .fundraise-form__embed {
    padding: 32px 24px;
  }
}


/* ============================================================
   RESPONSIVE — 600px
   ============================================================ */
@media (max-width: 600px) {
  .fundraise-hero {
    min-height: 60vh;
  }

  .fundraise-hero .hero__content {
    padding-left: 0;
  }

  .fundraise-form__embed {
    padding: 24px 16px;
    box-shadow: 4px 4px 0 var(--navy);
  }
}
