:root {
  --header-blue: #164a63;
  --footer-blue: #123e54;
  --light-aqua: #d9f3f6;
  --light-gray: #d6d6d6;
  --text-dark: #0f2f3a;
  --accent-green: #8dc63f;
  --accent-teal: #5bc0c8;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

/* ===== LOGO (LARGE & CLEAR) ===== */

/* ===== LOGO (WIDE BRAND LOCKUP) ===== */




.logo {
  
  height: 70px;
  width: auto;
  background-color: #d9f3f6;
  border-radius: 8px;
}


body {
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.65;
}

a { text-decoration: none; }

header {
  background: #164a63;
}

.nav {
  max-width: 1200px;
  margin: auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav img:not(.logo) {
  height: 40px;
}

.nav a {
  color: white;
  margin-left: 26px;
  font-weight: 600;
  font-size: 0.9rem;
}

section {
  padding: 90px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* ===== Header Responsive Menu ===== */

.menu-toggle {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
}

/* Mobile styles */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 20px;
    background: #5bc0c8;
    width: 220px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: none;
    flex-direction: column;
    padding: 15px;
    z-index: 1000;
  }

  .nav-links a {
    padding: 12px 10px;
    border-bottom: 1px solid #eee;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-links.show {
    display: flex;
  }
}



.hero-overlay p {
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.6),
    0 3px 8px rgba(0, 0, 0, 0.6);
}

.hero-overlay h1 {
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.6),
    0 1px 3px rgba(0, 0, 0, 0.6);
}

.hero {
  background: var(--light-gray);
  text-align: center;
  background-size: cover;
  padding: 80px 20px 140px;
  background-position: center;   /* keeps focus centered */
  background-repeat: no-repeat;  /* prevents tiling */
  min-height: 100vh;             /* full screen height */
  display: flex;
}

.impact-hero {
  background: var(--light-gray);
  text-align: center;
  background-size: cover;
  padding: 80px 20px 140px;
  background-position: center 10%;   /* keeps focus centered */
  background-repeat: no-repeat;  /* prevents tiling */
  min-height: 100vh;             /* full screen height */
  display: flex;
  color: white;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.6),
    0 3px 8px rgba(0, 0, 0,)
}

.hero h1 {
  color: white;
  font-size: 3rem;
}

.hero p {
  color: white;
  margin-top: px;
  font-size: 1.1rem;
}

.section-light {
  background: var(--light-aqua);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.card {
  background: white;
  padding: 35px;
  border-top: 4px solid var(--header-blue);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 26px;
  background: #88c534;
  color: #083344;
  font-weight: 700;
  border-radius: 8px;
}

.btn-large{
  color: white;
  background: var(--accent-teal);
  border-radius: 8px;
  padding: 10px 17px;

}

footer {
  background: var(--footer-blue);
  color: white;
  padding: 70px 20px;
}

footer p {
  color: #cfeaf0;
  font-size: 0.9rem;
}

/* ===== PROGRAMS PAGE ===== */

.programs-hero {
  height: 70vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.programs-hero-overlay {
  background: rgba(0,0,0,0.6);
  color: white;
  height: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.program-block {
  padding: 80px 0;
}

.program-block.alt {
  background: #f5f7f9;
}

.program-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.program-image img {
  width: 100%;
  border-radius: 6px;
}

.program-content ul {
  padding-left: 20px;
}

.programs-cta {
  background: #003845;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

/* ===== GET INVOLVED & CONTACT ===== */

.getinvolved-hero,
.contact-hero {
  padding: 50px 20px;
  background: #003845;
  color: white;
  height: 30vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.getinvolved-hero-overlay {
  background: rgba(0,0,0,0.6);
  padding: 80px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 6px;
}

.section.alt {
  background: #f5f7f9;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
}

.getinvolved-cta {
  background: #005f73;
  color: white;
  text-align: center;
  padding: 80px 20px;
}


.site-footer {
  background: #164a63;
  color: white;
  padding: 2px 20px 20px;
}

.footer-header {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
}

.footer-col h4 {
  margin-bottom: 16px;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.footer-col a {
  display: block;
  color: #cfeaf0;
  font-size: 0.9rem;
  margin-bottom: 10px;
  text-decoration: none;
}

.footer-col a:hover {
  color: white;
}

/* SOCIAL ICONS */
.footer-socials {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 18px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  background: #5bc0c8;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.footer-socials svg {
  width: 18px;
  height: 18px;
  fill: #083344;
}

.footer-bottom {
  margin-top: 30px;
  text-align: center;
  font-size: 0.85rem;
  color: #cfeaf0;
}

.donation-container {
  max-width: 520px;
  margin: auto;
  background: #ffffff;
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 25px;
}

.donation-toggle {
  display: flex;
  background: #eef1f6;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 25px;
}

.donation-toggle button {
  flex: 1;
  padding: 12px;
  font-weight: 600;
  border: none;
  background: none;
  cursor: pointer;
}

.donation-toggle button.active {
  background: #164a63;
  color: white;
}

.amount-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 15px;
}

.amount-options button {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: white;
  cursor: pointer;
  font-weight: 600;
}

.amount-options button:hover {
  border-color: #2b7cff;
}


input{
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  margin-bottom: 15px;
}

input:focus {
  outline: none;
  border-color: #2b7cff;
}

.donate-btn {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: none;
  background: #164a63;
  color: white;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

.donate-btn:hover {
  background: #1f66e0;
}

.secure-text {
  text-align: center;
  margin-top: 15px;
  font-size: 13px;
  color: #777;
}

.success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #e9f6ef;
  color: #2e9f64;
  font-size: 36px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}





