/* =========================
   GLOBAL RESET & BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

body {
  font-family: "Georgia", "Palatino Linotype", Palatino, Times, "Times New Roman", serif;
  background: #ffebe6;
  color: #333;
  line-height: 1.7;
}

/* Global container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =========================
   HEADER & NAV (FIXED)
========================= */
.header {
  background: #ffebe6;
  padding: 1.25rem 0;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.logo-img {
  height: 80px;
  width: auto;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: #c0392b;
  white-space: nowrap;
}

/* Nav */
.nav-links {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.nav-links a {
  font-weight: 600;
  padding: 0.25rem 0;
}

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

/* =========================
   SECTIONS
========================= */
.glass-box {
  padding: 4rem 0;
}

/* =========================
   HERO
========================= */
.hero-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;

  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.hero-content {
  position: relative;
  max-width: 900px;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

/* Buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 0.75rem 1.75rem;
  border-radius: 30px;
  border: none;
  background: #f1f1f1;
  font-weight: 600;
  cursor: pointer;
}

.cta-btn:hover {
  background: #e6e6e6;
}

/* =========================
   ABOUT / APPROACH / PROGRAMS
========================= */
.about-container,
.approach-container,
.program-alternate {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.program-alternate.reverse {
  flex-direction: row-reverse;
}

.about-image,
.approach-image,
.program-image {
  flex: 1;
  min-height: 260px;
}

.about-text,
.approach-text,
.program-text {
  flex: 2;
}

/* Mission Icons */
.mission-icons {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.icon-box {
  flex: 1;
  min-width: 140px;
  text-align: center;
  font-weight: 600;
}

/* =========================
   IMAGE + TEXT OVERLAY
========================= */
.image-text-box {
  position: relative;
  height: 320px;
  overflow: hidden;
  margin: 3rem 0;
  border-radius: 12px;
}

.image-text-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-text-content {
  position: absolute;
  inset: 0;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  background: rgba(0,0,0,0.35);
}

.image-text-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.image-text-content p {
  max-width: 600px;
}

/* =========================
   RESOURCES / CONTACT
========================= */
.resources-section {
  padding: 3rem 0;
}

.contact-section {
  text-align: center;
  padding: 4rem 0;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.social-box {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================
   SUPPORT BANNER
========================= */
.support-banner {
  max-width: 900px;
  margin: 3rem auto;
  text-align: center;
  padding: 1.5rem;
}

.support-banner strong {
  color: #1f6fd8;
}

/* =========================
   FOOTER
========================= */
.footer {
  text-align: center;
  padding: 3rem 1.25rem 2rem;
  font-size: 0.9rem;
}

.footer-links a {
  margin: 0 0.75rem;
}

.legal {
  font-size: 0.8rem;
  margin-top: 1rem;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {

  .header-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .about-container,
  .approach-container,
  .program-alternate,
  .program-alternate.reverse {
    flex-direction: column;
  }

  .image-text-content {
    padding: 2rem;
  }

}
.rounded-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}
