/* =========================
   HERO (BG IMAGE + CENTER TEXT)
   ========================= */

.hero.hero--bg {
  width: 100vw;
  margin-left: calc(50% - 50vw);

  min-height: 100vh;
  position: relative;

  display: grid;
  place-items: center;

  padding: 170px 20px 90px;
  overflow: hidden;

  background-image: url("../assets/noor.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* overlay for readability */
.hero.hero--bg .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.42) 55%,
    rgba(0, 0, 0, 0.58) 100%
  );
  z-index: 1;
}

/* hero content above overlay */
.hero.hero--bg .hero-inner {
  width: min(760px, 92%);
  text-align: center;
  position: relative;
  z-index: 2;
  transform: translateY(-12px);
}

.hero.hero--bg .hero-kicker {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 0.2px;
}

.hero.hero--bg .hero-title {
  font-size: clamp(40px, 5.5vw, 74px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: #ffffff;
  text-shadow: 0 14px 35px rgba(0, 0, 0, 0.35);
}

.hero-italic {
  font-family: "Lora", serif;
  font-style: italic;
  color: var(--green);
}

.hero.hero--bg .hero-subtitle {
  max-width: 58ch;
  margin: 0 auto 26px auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.6;
  text-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

/* actions */
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 12px 18px;
  border-radius: 999px;

  font-weight: 700;
  font-size: 14px;
  text-decoration: none;

  transition:
    transform 0.15s ease,
    background 0.15s ease,
    opacity 0.15s ease;
}

.hero-btn:active {
  transform: scale(0.98);
}

.hero-btn--green {
  background: var(--green);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(34, 197, 94, 0.22);
}

.hero-btn--green:hover {
  background: var(--green2);
}

.hero-btn--ghost {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero-arrow {
  font-size: 16px;
  line-height: 1;
}

/* mobile hero */
@media (max-width: 900px) {
  .hero.hero--bg {
    padding: 120px 16px 70px;
  }

  .hero.hero--bg .hero-inner {
    transform: translateY(-6px);
  }

  .hero.hero--bg .hero-title {
    font-size: clamp(34px, 9vw, 54px);
    line-height: 1.02;
  }

  .hero.hero--bg .hero-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

/* =========================
   SECTIONS
   ========================= */

.section {
  padding: 30px 0;
}

.section-divider {
  width: 100vw;
  margin-left: calc(50% - 50vw);

  /* remove default spacing */
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;

  /* optional: keep it clean */
  overflow: hidden;
}

.section-divider__img {
  width: 100%;
  height: 500px; /* change this height if you want */
  display: block; /* removes weird gaps under images */
  object-fit: cover;
  object-position: center;
}

.container {
  width: min(980px, 92%);
  margin: 0 auto;
}

/* ✅ Split heading layout (title left, subtitle right, aligned to title top) */
.section-head--split {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* aligns subtitle to top */
  gap: 32px;

  margin-top: 70px; /* ✅ less huge spacing than 150px */
  margin-bottom: 36px;
}

/* left stack */
.section-head-left {
  flex: 1;
  max-width: 58%;
  display: grid;
  gap: 10px;
}

/* right subtitle (stays on the right, aligned with title) */
.section-head--split .section-subtitle {
  flex: 0 0 38%;
  max-width: 38%;
  margin: 34px 0 0; /* ✅ pushes subtitle up/down to align with title line */
  text-align: left; /* keep readable like your screenshot */
  font-size: 14px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.6);
}

/* ✅ mobile: stack */
@media (max-width: 768px) {
  .section-head--split {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 50px;
  }

  .section-head-left,
  .section-head--split .section-subtitle {
    max-width: 100%;
    flex: initial;
    margin: 0;
    text-align: left;
  }

  /* (your nav mobile rules you had here) */
  .nav-center {
    display: none;
  }

  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-donate {
    display: none;
  }

  .menu-btn {
    display: inline-block;
  }

  .footer-inner {
    flex-direction: column;
  }
}

.eyebrow {
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 10px;
}

/* default subtitle (used in other sections like Contact) */
.section-subtitle {
  max-width: 65ch;
  margin: 0 auto;
  color: rgba(0, 0, 0, 0.62);
  line-height: 1.6;
  font-size: 15px;
}

/* =========================
   ABOUT FEATURE (TEXT + IMAGE BLOCK)
   ========================= */

/* ABOUT row under heading */
.about-feature {
  margin-top: 28px;
  border-radius: 28px;

  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-copy {
  max-width: 58ch;
}

.about-text {
  color: rgba(0, 0, 0, 0.62);
  line-height: 1.7;
  font-size: 14px;
  margin-bottom: 22px;
  top: -10px;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;

  padding: 12px 16px;
  font-weight: 800;
  font-size: 14px;
  color: var(--text);
  text-decoration: none;

  transition: 0.18s ease;
}

.about-btn:hover {
  transform: translateY(-1px);
  background: #fff;
}

.about-arrow {
  font-size: 16px;
  line-height: 1;
}

.about-media {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  background: #e8e8e8;
}

.about-media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .about-feature {
    grid-template-columns: 1fr;
    padding: 28px;
    gap: 22px;
  }

  .about-media img {
    height: 260px;
  }
}

/* =========================
   CARDS GRID
   ========================= */

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

@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.chip {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #0b0f14;
  background: rgba(34, 197, 94, 0.14);
  margin-bottom: 14px;
}

.card-title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--text);
}

.card-text {
  color: rgba(0, 0, 0, 0.62);
  line-height: 1.65;
  font-size: 14px;
}

/* =========================
   NEW SECTIONS STYLES
   ========================= */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 22px;
  padding: 18px;
}

.feature-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}

.feature-title {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--text);
}

.feature-text {
  color: rgba(0, 0, 0, 0.62);
  line-height: 1.65;
  font-size: 14px;
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

/* problem stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.stat-big {
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  color: var(--text);
}

.stat-small {
  color: rgba(0, 0, 0, 0.62);
  line-height: 1.65;
  font-size: 14px;
}

@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* quote block */
.quote-block {
  margin-top: 18px;
  border-radius: 22px;
  padding: 18px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.18);
}

.quote-text {
  font-weight: 900;
  letter-spacing: -0.01em;
  color: rgba(0, 0, 0, 0.75);
  line-height: 1.5;
}

/* solution steps */
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.step {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.step-chip {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: rgba(34, 197, 94, 0.14);
  margin-bottom: 12px;
}

.step-title {
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.step-text {
  color: rgba(0, 0, 0, 0.62);
  line-height: 1.65;
  font-size: 14px;
}

@media (max-width: 900px) {
  .step-grid {
    grid-template-columns: 1fr;
  }
}

/* impact */
.impact-card {
  border-radius: 28px;
  padding: 38px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.1), rgba(0, 0, 0, 0));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.impact-title {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 950;
  letter-spacing: -0.02em;
  margin-top: 8px;
  margin-bottom: 18px;
}

.impact-lines p {
  font-size: 16px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.7;
}

/* promise */
.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.promise-item {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.promise-title {
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.promise-text {
  color: rgba(0, 0, 0, 0.62);
  line-height: 1.65;
  font-size: 14px;
}

#promise {
  padding-bottom: 130px;
}

@media (max-width: 900px) {
  .promise-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   PROBLEM (LEFT CONTENT + RIGHT IMAGE)
   ========================= */

.problem-head {
  max-width: 62ch;
  margin-top: 70px;
  margin-bottom: 26px;
}

.problem-subtitle {
  margin: 14px 0 0;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.7;
  font-size: 14px;
}

/* cards left + image right */
.problem-content {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 100px;
  align-items: start;
}

/* stack cards */
.stats-stack {
  display: grid;
  gap: 14px;
}

/* image card */
.problem-media {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #e8e8e8;
  margin-top: 10px;
}

.problem-media img {
  width: 100%;
  height: 390px; /* adjust */
  object-fit: cover;
  display: block;
}

/* mobile */
@media (max-width: 900px) {
  .problem-content {
    grid-template-columns: 1fr;
  }

  .problem-media img {
    height: 280px;
  }
}

/* stack the cards */
.stats-stack {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

/* mobile: image goes under */
@media (max-width: 900px) {
  .problem-layout {
    grid-template-columns: 1fr;
  }

  .problem-media img {
    height: 280px;
  }
}

/* =========================
   MANIFESTO (IMAGE LEFT, TEXT RIGHT)
   ========================= */

#manifesto .about-feature {
  grid-template-columns: 1fr 1.05fr; /* image col | text col */
  gap: 100px; /* keep your spacing consistent */
  align-items: center;
}

#manifesto .about-media {
  order: 1; /* image left */
}

#manifesto .about-copy {
  order: 2; /* text + button right */
}

/* Mobile: stack */
@media (max-width: 900px) {
  #manifesto .about-feature {
    grid-template-columns: 1fr;
    padding: 28px;
    gap: 22px;
  }

  #manifesto .about-media,
  #manifesto .about-copy {
    order: unset;
  }
}

/* =========================
   WHY IT MATTERS (UPGRADED)
   ========================= */

/* =========================
   WHY IT MATTERS (CENTERED TEXT ONLY)
   ========================= */

#impact {
  position: relative;
  padding-top: 150px;
  padding-bottom: 20px;
  text-align: center;
  overflow: hidden;
}

#impact::before {
  content: "";
  position: absolute;
  inset: 0;

  pointer-events: none;
  z-index: 0;
}

#impact .container {
  position: relative;
  z-index: 1;
  max-width: 780px; /* keeps it nicely centered */
}

#impact .impact-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
}

#impact .impact-title {
  font-size: clamp(30px, 3.4vw, 52px);
  font-weight: 950;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 auto 22px;
}

#impact .impact-lines {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

#impact .impact-lines p {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.72);
}

/* mobile */
@media (max-width: 900px) {
  #impact {
    padding: 80px 0;
  }

  #impact .impact-lines p {
    font-size: 16px;
  }
}

/* =========================
   CONTACT
   ========================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 18px;
  align-items: start;
  margin-top: 50px;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.label {
  display: inline-block;
  width: 70px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.55);
}

.value,
.link {
  color: rgba(0, 0, 0, 0.75);
  text-decoration: none;
}

.link:hover {
  text-decoration: underline;
}

.form {
  display: grid;
  gap: 14px;
}

.field label {
  display: block;
  font-weight: 700;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 8px;
}

.field input,
.field textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  background: #ffffff;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(34, 197, 94, 0.55);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.14);
}

.submit {
  border: none;
  cursor: pointer;
  background: var(--green);
  color: white;
  font-weight: 800;
  border-radius: 16px;
  padding: 12px 14px;
  font-size: 14px;
  transition: 0.2s ease;
}

.submit:hover {
  background: var(--green2);
}

.form-note {
  color: rgba(0, 0, 0, 0.5);
  font-size: 12px;
  line-height: 1.5;
}

/* =========================
   DONATE CTA (FULL WIDTH + GREEN + HIGH CONTRAST)
   ========================= */

#donate {
  padding: 0; /* lets the CTA go edge-to-edge */
}

.cta {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  padding: 64px 0; /* section height */
  background: var(--green);
}

.cta .cta-inner {
  width: min(980px, 92%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 26px;
  align-items: center;
}

/* TEXT */
.cta .eyebrow {
  color: rgba(255, 255, 255, 0.9);
}

.cta-title {
  color: #fff;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 950;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.cta-subtitle {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.65;
  font-size: 15px;
  margin-bottom: 18px;
  max-width: 60ch;
}

/* BUTTONS */

.cta .hero-btn--green {
  background: #fff;
  color: rgba(0, 0, 0, 0.82);
  box-shadow: none;
  margin-right: 15px;
}

.cta .hero-btn--green:hover {
  background: rgba(255, 255, 255, 0.92);
}

.cta .hero-btn--white {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.cta .hero-btn--white:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* STATS */
.cta-stats {
  display: grid;
  gap: 12px;
}

.cta .stat {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  padding: 18px;
}

.cta .stat-number {
  color: #fff;
}

.cta .stat-label {
  color: rgba(255, 255, 255, 0.82);
}

/* MOBILE */
@media (max-width: 900px) {
  .cta {
    padding: 46px 0;
  }

  .cta .cta-inner {
    grid-template-columns: 1fr;
  }
}
