:root {
  --navy: #00205B;
  --gold: #FFBF00;
  --light: #ffffff;
  --gray: #f5f5f5;
  --text: #222;
  --max-width: 1100px;
  --radius: 10px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background: #fff;
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* NAVBAR */
.navbar {
  background: var(--navy);
  color: #fff;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 2000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-left: 25rem;
}

.nav-left img {
  height: 100px;
  position: relative;
  top: 5px;
}

.nav-title {
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 2rem;
  position: relative;
  top: 2px;
}

.nav-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold);
  color: #000;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.6rem;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #00205B 0%, #0b3478 55%);
  color: #fff;
  padding: 4rem 1rem 4.5rem;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero p {
  max-width: 580px;
  line-height: 1.5;
}

.hero-actions {
  margin-top: 1.3rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: #000;
  padding: 0.6rem 1.2rem;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
}

.btn-secondary {
  border: 1.5px solid #fff;
  color: #fff;
  padding: 0.55rem 1.1rem;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 500;
}

/* CONTENT SECTIONS */
.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 1rem;
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 1.3rem;
  color: var(--navy);
}

.columns-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.2rem 1.1rem 1.3rem;
  border: 1px solid #eee;
}

.stat-strip {
  background: #fff;
  border-radius: var(--radius);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  padding: 0.6rem 1rem;
}

.stat h3 {
  font-size: 1.25rem;
}

.alt-bg {
  background: var(--gray);
}

/* FORMS */
form {
  display: grid;
  gap: 1rem;
  max-width: 540px;
}

input, textarea, select {
  padding: 0.6rem 0.6rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

button, .btn-submit {
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 0.65rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

/* ============================= */
/* MOBILE 820px */
/* ============================= */
@media (max-width: 820px) {
  .navbar {
    position: fixed;      /* stay at top even when scrolling */
    top: 0;
    left: 0;
    right: 0;
    z-index: 5000;        /* above banner + overlay */
  }

  /* ✅ this is the important part for you */
  .nav-left {
    margin-left: 0;
    gap: 0.5rem;
  }

  .nav-left img {
    height: 60px;
    top: 0;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: var(--navy);
    position: absolute;
    top: 60px;
    right: 10px;
    padding: 0.75rem 1.1rem;
    border-radius: 12px;
  }
  .nav-links.show {
    display: flex;
  }
  .nav-toggle {
    display: block;
  }
  .nav-links a.active {
    color: var(--gold);
  }

  .section.alt-bg .btn-primary {
    display: inline-block;
    margin-top: 1.5rem;
  }
  section.section.alt-bg p {
    margin-bottom: 2rem;
  }
  section.section.alt-bg a.btn-primary {
    display: inline-block;
    margin-top: 0;
  }
  section.section.alt-bg a.btn-primary[href="contact.html"] {
    display: inline-block;
    margin-top: 2rem !important;
  }
  section.section.alt-bg {
    display: block !important;
  }
  .get-involved-buttons .btn-primary,
  .get-involved-buttons .btn-secondary,
  #get-involved-page .card a.btn-primary,
  #get-involved-page .card a.btn-secondary,
  section.section .card a.btn-primary,
  section.section .card a.btn-secondary {
    display: inline-block;
    margin-top: 1.5rem !important;
  }
  #get-involved-page .card p {
    margin-bottom: 1.7rem !important;
  }
  #get-involved-page .card a.btn-primary,
  #get-involved-page .card a.btn-secondary {
    display: inline-block;
  }

  /* ===== Banner Styling (you had this inside mobile) ===== */
  .banner {
    margin-top: 70px;
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
  }

  .banner img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: center 35%;
    display: block;
  }

  html, body {
    overflow-x: hidden;
  }

  .hero {
    padding-top: 3rem;
  }

  /* ===== Mission Banner Overlay ===== */
  .mission-overlay {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    max-width: 900px;
    padding: 1.8rem 2rem;
    border-radius: 14px;
    line-height: 1.5;
  }

  .mission-overlay h2 {
    color: #FFBF00;
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }

  .mission-overlay p {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
  }

  /* ===== Responsive inside 820px ===== */
  @media (max-width: 768px) {
    .banner img {
      height: 280px;
      object-position: center 45%;
    }
    .mission-overlay {
      max-width: 90%;
      padding: 1.2rem;
    }
    .mission-overlay h2 {
      font-size: 1.5rem;
    }
    .mission-overlay p {
      font-size: 0.95rem;
    }
  }
}  /* <-- this closes the 820px media query */

/* ===== Stats Section ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-card {
  background: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.stat-card h3 {
  color: var(--navy);
  font-size: 2rem;
  margin-bottom: 0.4rem;
}

.stat-card p {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text);
}

.stat-card small {
  display: block;
  margin-top: 0.6rem;
  color: #555;
  font-size: 0.8rem;
  opacity: 0.8;
}

/* ===== Meet the Founder ===== */
.founder-section {
  padding: 0;              /* outer section stays clear */
  background: none;        /* don't color the whole section */
}

.founder-inner {
  background: var(--gray); /* ✅ gray only around this card */
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1rem 3.5rem;
  display: grid;
  grid-template-columns: 1.1fr 0.8fr;  /* text left, photo right */
  gap: 2.5rem;
  align-items: center;
  border-radius: 14px;
}

.founder-text h2 {
  color: var(--navy);
  font-size: 1.9rem;
  margin-bottom: 1rem;
}

.founder-text p {
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.founder-quote {
  margin-top: 1.3rem;
  font-style: italic;
  color: #333;
}

.founder-photo img {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1 / 1;     /* square */
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  display: block;
  margin: 0 auto;
}

/* stack on smaller screens */
@media (max-width: 900px) {
  .founder-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .founder-photo {
    text-align: center;
    margin-top: 1.5rem;
  }
  .founder-photo img {
    max-width: 240px;
  }
}

/* ===== Footer (light, centered) ===== */
.footer {
  background: #ffffff;
  padding: 2.5rem 1rem 3rem;
  text-align: center;
  border-top: 1px solid #eee;
  color: #333;
  font-size: 0.9rem;
}

.footer p {
  margin-bottom: 0.4rem;
  line-height: 1.4;
}

.footer .footer-social {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.footer .footer-social img {
  width: 30px;
  height: 30px;
  display: block;
}

.footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.footer .footer-links a {
  color: #222;
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
}

.footer .footer-links a:hover {
  text-decoration: underline;
}

.footer .footer-copy {
  font-size: 0.78rem;
  opacity: 0.7;
}
