.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  margin-top: -10px;
}
.nav .logo {
  z-index: 2;
}
.nav .logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #87ac76;
  gap: 10px;
}
.nav .logo a p {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
}
.nav .logo img {
  width: 100px;
  height: auto;
  object-fit: contain;
}
.nav .navLinks {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 5px;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.nav .navLinks img {
  width: 12px;
}
.nav .navLinks li {
  padding: 0px 10px;
}
.nav .navLinks li:first-child {
  display: none;
}
.nav .navLinks li i {
  padding-left: 0px;
  transition: rotate 0.2s ease-in-out, padding 0.2s ease-in-out;
}
.nav .navLinks li .dropdownHolder:hover i {
  rotate: 180deg;
}
.nav .navLinks li a {
  color: #63463b;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s ease-in-out;
}
.nav .navLinks li a + span {
  display: inline-flex;
  align-items: center;
}
.nav .navLinks li:hover a {
  color: #87ac76;
  text-decoration: underline;
}
.nav .navLinks .dropdown {
  position: relative;
}
.nav .navLinks .dropdown .dropdown-menu {
  display: none;
  width: max-content;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  background-color: white;
  border: 1px solid #ccc;
  min-width: 150px;
  padding: 5px 0;
  list-style: none;
}
.nav .navLinks .dropdown .dropdown-menu li {
  padding: 0;
  padding: 5px 0;
}
.nav .navLinks .dropdown .dropdown-menu li a {
  display: block;
  padding: 8px 15px;
  color: #4b5563;
  text-decoration: none;
}
.nav .navLinks .dropdown .dropdown-menu li a:hover {
  background-color: #f3f4f6;
  color: #87ac76;
  text-decoration: underline;
}
.nav .navLinks .dropdown:hover .dropdown-menu {
  display: block;
}
.nav .navLinks .dropdown:hover .dropdownHolder i {
  rotate: 180deg;
  padding-right: 10px;
  padding-left: 0px;
}

.mobileNav {
  position: absolute;
  top: 20px;
  right: 30px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.mobileNav .menuIcon {
  font-size: 2.5rem;
  cursor: pointer;
  color: #87ac76;
  padding: 10px;
  display: none;
}
.mobileNav .mobileNavLinks {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  min-width: 200px;
  z-index: 101;
  display: none;
}
.mobileNav .mobileNavLinks ul {
  list-style: none;
  margin: 0;
  padding: 10px 20px;
}
.mobileNav .mobileNavLinks ul li {
  border-bottom: 1px solid #eee;
  padding: 12px 0;
}
.mobileNav .mobileNavLinks ul li a {
  color: #63463b;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  display: block;
  width: 100%;
  transition: color 0.2s;
}
.mobileNav .mobileNavLinks ul li a:hover {
  color: #87ac76;
  text-decoration: none;
}
.mobileNav .mobileNavLinks ul li:last-child {
  border-bottom: none;
}

.rippleEffect {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@keyframes rippleMove {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}
@media (max-width: 1200px) {
  .nav .logo a p {
    display: none;
  }
  .nav .logo img {
    width: 100px;
  }
}
@media (max-width: 749px) {
  .nav .navLinks {
    display: none;
  }
  .mobileNav .menuIcon {
    display: block;
  }
  .mobileNav {
    justify-content: space-between;
    align-items: center;
  }
  .rippleEffect {
    display: none;
    width: 100%;
    height: 100%;
    z-index: 2;
  }
}
.homePage {
  margin: 0 auto;
  width: 100% !important;
}
.homePage .hero {
  height: 50vh;
  width: 100%;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.6);
  margin-top: -50px;
}
.homePage .hero .heroColorOverlay {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(92, 70, 55, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.homePage .hero .heroColorOverlay .heroContent {
  color: white;
  max-width: 1000px;
  padding: 25px;
}
.homePage .hero .heroColorOverlay .heroContent .heroBtn {
  padding: 15px 25px;
  background-color: #87ac76;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
  border: none;
}
.homePage .hero .heroColorOverlay .heroContent .heroBtn:hover {
  background-color: #a4d892;
}
.homePage .hero .heroColorOverlay .heroContent .heroBtn:active {
  background-color: #437046;
}
.homePage .hero .heroColorOverlay .heroContent .tagline {
  text-align: center;
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
}
.homePage .hero .heroColorOverlay .heroContent .tagline h3 {
  font-size: 1.2rem;
  color: white;
}
@media (max-width: 450px) {
  .homePage .hero .heroContent h1 {
    font-size: 30px;
  }
  .homePage .hero .heroContent .tagline {
    display: none;
  }
}
.homePage .hero h1 {
  font-size: 3rem;
}
.homePage .hero .heroBtn {
  margin-top: 10px;
}
.homePage .hero {
  background: url("../assets/img/skyline.jpeg") no-repeat center center/cover;
}

@media (max-width: 500px) {
  .hero h1 {
    font-size: 2rem;
  }
}
.btn {
  padding: 15px 25px;
  background-color: #87ac76;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
  border: none;
}
.btn:hover {
  background-color: #a4d892;
}
.btn:active {
  background-color: #437046;
}

.btn-primary {
  background-color: #87ac76;
}

.btn-accent {
  background-color: #87ac76;
}
.btn-accent:hover {
  background-color: #a4d892;
}

.btn-secondary {
  background-color: #a4d892;
}
.btn-secondary:hover {
  background-color: rgba(252, 238, 234, 0.8509803922);
}

.btnText p {
  color: white;
}

/* ============================================== */
/* 1. Mission Statement Section */
/* ============================================== */
.mission-statement {
  padding: 60px 10px;
  text-align: center;
  background-color: #f8f8f8;
}
.mission-statement h2 {
  font-size: 2.5rem;
  color: #87ac76;
  margin-bottom: 20px;
}
.mission-statement .intro-text {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 20px auto;
  color: #555;
}
.mission-statement p {
  font-size: 1rem;
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #666;
}
.mission-statement .btn {
  margin-top: 20px;
}

/* ============================================== */
/* 2. Program Overview Section (3 Pillars) */
/* ============================================== */
.program-overview {
  padding: 80px 0;
  text-align: center;
  background-color: white;
}
.program-overview h3 {
  font-size: 2rem;
  color: #87ac76;
  margin-bottom: 50px;
}
.program-overview .program-cards {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.program-overview .program-cards .card {
  background-color: #fefefe;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 350px;
  width: 40%;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.program-overview .program-cards .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.program-overview .program-cards .card i {
  color: #87ac76;
  margin-bottom: 20px;
}
.program-overview .program-cards .card h4 {
  font-size: 1.4rem;
  color: #87ac76;
  margin-bottom: 15px;
}
.program-overview .program-cards .card p {
  font-size: 0.95rem;
  color: #777;
  line-height: 1.5;
  margin-bottom: 20px;
}
.program-overview .program-cards .card .card-link {
  color: #87ac76;
  text-decoration: none;
  font-weight: 600;
}
.program-overview .program-cards .card .card-link i {
  font-size: 0.9em;
  margin-left: 5px;
  transition: margin-left 0.3s ease;
}
.program-overview .program-cards .card .card-link:hover i {
  margin-left: 10px;
}

/* ============================================== */
/* 3. Impact Metrics Section */
/* ============================================== */
.impact-metrics {
  padding: 40px 0;
  background-color: #87ac76;
  color: white;
  text-align: center;
}
.impact-metrics h3 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: rgb(255, 255, 255);
}
.impact-metrics .metric-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 10px;
  max-width: 900px;
  margin: 0 auto;
  gap: 30px;
}
.impact-metrics .metric-grid .metric-item .number,
.impact-metrics .metric-grid .metric-item .label {
  transition: color 0.3s ease;
}
.impact-metrics .metric-grid .metric-item .number {
  font-size: 3.5rem;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 5px;
}
.impact-metrics .metric-grid .metric-item .label {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.65);
}
.impact-metrics .metric-grid .metric-item:hover .number {
  color: rgb(255, 255, 255);
}
.impact-metrics .metric-grid .metric-item:hover .label {
  color: white;
}

/* ============================================== */
/* 4. Primary Engagement CTA Block */
/* ============================================== */
.call-to-action-block {
  padding: 80px 20px;
  background-color: #fefefe;
}
.call-to-action-block .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .call-to-action-block .container {
    grid-template-columns: 1fr 1fr;
  }
}
.call-to-action-block .cta-box {
  background-color: #ffffff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.call-to-action-block .cta-box h4 {
  font-size: 1.8rem;
  color: #87ac76;
  margin-bottom: 20px;
}
.call-to-action-block .cta-box p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
}
.call-to-action-block \ .cta-box {
  border-bottom: 5px solid #87ac76;
}

.miniButtons {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 20px;
}
.miniButtons a i {
  font-size: 25px;
}

/* ============================================== */
/* Optional: Events & News Section */
/* ============================================== */
.events-news {
  padding: 60px 0;
  text-align: center;
  background-color: #f2f2f2;
}
.events-news .eventCards {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  max-width: 1200px;
  margin: 0 auto;
}
.events-news .eventCards .card {
  background-color: #fefefe;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 350px;
  width: 40%;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.events-news .eventCards .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.events-news .eventCards .card i {
  color: #87ac76;
  margin-bottom: 20px;
}
.events-news .eventCards .card h4 {
  font-size: 1.4rem;
  color: #87ac76;
  margin-bottom: 15px;
}
.events-news .eventCards .card p {
  font-size: 0.95rem;
  color: #777;
  line-height: 1.5;
  margin-bottom: 20px;
}
.events-news .eventCards .card .card-link {
  color: #87ac76;
  text-decoration: none;
  font-weight: 600;
}
.events-news .eventCards .card .card-link i {
  font-size: 0.9em;
  margin-left: 5px;
  transition: margin-left 0.3s ease;
}
.events-news .eventCards .card .card-link:hover i {
  margin-left: 10px;
}
.events-news .eventCards .card {
  width: 75%;
  max-width: 800px;
}
.events-news .eventCards .card ul, .events-news .eventCards .card ol {
  margin: 0 auto;
  margin-bottom: 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #665;
}
.events-news h3 {
  font-size: 2rem;
  color: #87ac76;
  margin-bottom: 30px;
}
.events-news p {
  font-size: 1rem;
  color: #777;
  margin-bottom: 40px;
}

.about-page {
  margin: 40px 0px;
  color: #333;
}

/* --- Hero & Titles --- */
.about-hero {
  height: 50vh;
  width: 100%;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.6);
  margin-top: -50px;
}
.about-hero .heroColorOverlay {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(92, 70, 55, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.about-hero .heroColorOverlay .heroContent {
  color: white;
  max-width: 1000px;
  padding: 25px;
}
.about-hero .heroColorOverlay .heroContent .heroBtn {
  padding: 15px 25px;
  background-color: #87ac76;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
  border: none;
}
.about-hero .heroColorOverlay .heroContent .heroBtn:hover {
  background-color: #a4d892;
}
.about-hero .heroColorOverlay .heroContent .heroBtn:active {
  background-color: #437046;
}
.about-hero .heroColorOverlay .heroContent .tagline {
  text-align: center;
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
}
.about-hero .heroColorOverlay .heroContent .tagline h3 {
  font-size: 1.2rem;
  color: white;
}
@media (max-width: 450px) {
  .about-hero .heroContent h1 {
    font-size: 30px;
  }
  .about-hero .heroContent .tagline {
    display: none;
  }
}
.about-hero {
  background: url("../assets/img/aboutHero.jpg") no-repeat center center/cover;
  height: 300px;
  width: 100%;
}

.section-title {
  font-size: 2.5rem;
  color: #87ac76;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 40px;
}

/* --- Narrative Styles --- */
.narrative-section {
  max-width: 1200px;
  width: 80%;
  margin: 0 auto;
  padding: 20px;
}
.narrative-section .purposeSection {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.narrative-section .purposeSection .text {
  padding: 20px;
}
.narrative-section .purposeSection .imgHolder {
  max-width: 1200px;
  min-width: 250px;
  margin: 20px auto;
  text-align: center;
}
.narrative-section .purposeSection .imgHolder img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.narrative-section .purposeSection .imgHolder p {
  font-size: 0.9rem;
  color: #666;
  margin-top: 10px;
  font-style: italic;
}
@media (max-width: 950px) {
  .narrative-section .purposeSection {
    flex-direction: column;
  }
}
.narrative-section .lead-text {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 1.6;
}
.narrative-section p {
  line-height: 1.6;
  margin-bottom: 20px;
  color: #555;
}
.narrative-section .narrative-subtitle {
  color: #87ac76;
  border-left: 4px solid #87ac76;
  padding-left: 15px;
  margin-top: 35px;
  margin-bottom: 20px;
  font-size: 1.8rem;
}
.narrative-section .current-mission {
  background-color: #e9eff5;
  border-radius: 8px;
  padding: 20px;
  margin-top: 30px;
}

/* --- Inspiration Block (Why We Do What We Do) --- */
.inspiration-block {
  background-color: #fcf6f2;
  padding: 40px;
  margin-top: 50px;
  border-radius: 8px;
  text-align: center;
}
.inspiration-block h3 {
  color: #87ac76;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.inspiration-block ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.inspiration-block ul li {
  font-style: italic;
  color: #87ac76;
  padding: 5px 0;
  font-size: 1.1rem;
  font-weight: bolder;
}

.meet-the-board {
  background-color: #87ac76;
}
.meet-the-board .alt-color-title {
  color: white;
  padding-top: 20px;
  margin-bottom: 10px;
}
.meet-the-board .boardMembers {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.meet-the-board .boardMembers .member {
  min-width: 200px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
  margin-top: 20px;
  padding: 20px;
  text-align: center;
}
.meet-the-board .boardMembers .member .pic {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
}
.meet-the-board .boardMembers .member .pic img {
  background-position: 5vh;
}
.meet-the-board .boardMembers .member .memberPic {
  overflow: hidden;
  border-radius: 50%;
  margin-bottom: 20px;
}
.meet-the-board .boardMembers .member h3,
.meet-the-board .boardMembers .member h4 {
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.meet-the-board .boardMembers .member h4 {
  margin-bottom: 20px;
}

/* --- Mission, Vision, Values --- */
.foundation-section {
  margin-top: 50px;
  text-align: center;
}
.foundation-section .mission-vision-grid {
  width: 80%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .foundation-section .mission-vision-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.foundation-section .mission-vision-grid .mission-vision-block {
  padding: 20px;
  text-align: left;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: white;
}
.foundation-section .mission-vision-grid .mission-vision-block h3 {
  color: #87ac76;
  border-bottom: 2px solid #f9f9f9;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

/* --- Core Values Grid --- */
h3 {
  color: #87ac76;
  font-size: 30px;
}

.values-grid {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  text-align: center;
  margin-bottom: 20px;
}
.values-grid .value-card {
  max-width: 200px;
  padding: 20px 10px;
  border: 1px solid #eee;
  background-color: white;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}
.values-grid .value-card i {
  font-size: 1.8rem;
  color: #87ac76;
  margin-bottom: 10px;
}
.values-grid .value-card h4 {
  font-size: 1.1rem;
  color: #87ac76;
  margin-bottom: 5px;
}
.values-grid .value-card p {
  font-size: 0.9rem;
  color: #777;
}

.helpOptions {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.helpOptions p {
  font-size: 30px;
  font-weight: bolder;
}
.helpOptions .or {
  color: #87ac76;
}
.helpOptions .option {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
  background-color: white;
  padding: 25px;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}
.helpOptions .option a {
  padding: 15px 25px;
  background-color: #87ac76;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
  border: none;
}
.helpOptions .option a:hover {
  background-color: #a4d892;
}
.helpOptions .option a:active {
  background-color: #437046;
}
.helpOptions .option h2 {
  margin-bottom: 25px;
  color: #63463b;
}

.donateHolder {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
}

@media (max-width: 800px) {
  .helpOptions {
    flex-direction: column;
  }
  .helpOptions p {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.programsPage {
  margin: 40px 0px;
}
.programsPage .programs-hero {
  height: 50vh;
  width: 100%;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.6);
  margin-top: -50px;
}
.programsPage .programs-hero .heroColorOverlay {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(92, 70, 55, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.programsPage .programs-hero .heroColorOverlay .heroContent {
  color: white;
  max-width: 1000px;
  padding: 25px;
}
.programsPage .programs-hero .heroColorOverlay .heroContent .heroBtn {
  padding: 15px 25px;
  background-color: #87ac76;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
  border: none;
}
.programsPage .programs-hero .heroColorOverlay .heroContent .heroBtn:hover {
  background-color: #a4d892;
}
.programsPage .programs-hero .heroColorOverlay .heroContent .heroBtn:active {
  background-color: #437046;
}
.programsPage .programs-hero .heroColorOverlay .heroContent .tagline {
  text-align: center;
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
}
.programsPage .programs-hero .heroColorOverlay .heroContent .tagline h3 {
  font-size: 1.2rem;
  color: white;
}
@media (max-width: 450px) {
  .programsPage .programs-hero .heroContent h1 {
    font-size: 30px;
  }
  .programsPage .programs-hero .heroContent .tagline {
    display: none;
  }
}
.programsPage .programs-hero {
  background: url("../assets/img/programsHero.jpg") no-repeat center center/cover;
  height: 300px;
  width: 100%;
}
.programsPage .clickText {
  color: #63463b;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  font-size: 2vmax;
  margin-top: 20px;
  margin-bottom: -20px;
}
.programsPage .programGrid {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.programsPage .programGrid .programTitle {
  color: white;
}
.programsPage .programGrid .programCard {
  background-color: #fefefe;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 350px;
  width: 40%;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.programsPage .programGrid .programCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.programsPage .programGrid .programCard i {
  color: #87ac76;
  margin-bottom: 20px;
}
.programsPage .programGrid .programCard h4 {
  font-size: 1.4rem;
  color: #87ac76;
  margin-bottom: 15px;
}
.programsPage .programGrid .programCard p {
  font-size: 0.95rem;
  color: #777;
  line-height: 1.5;
  margin-bottom: 20px;
}
.programsPage .programGrid .programCard .card-link {
  color: #87ac76;
  text-decoration: none;
  font-weight: 600;
}
.programsPage .programGrid .programCard .card-link i {
  font-size: 0.9em;
  margin-left: 5px;
  transition: margin-left 0.3s ease;
}
.programsPage .programGrid .programCard .card-link:hover i {
  margin-left: 10px;
}
.programsPage .programGrid .programCard {
  position: relative;
  min-width: 320px;
  height: 420px;
  padding: 0;
  background: url("assets/img/program-thanksgiving.jpg") no-repeat center center/cover;
  color: white;
  display: block;
  margin-top: 25px;
  margin-bottom: 20px;
}
.programsPage .programGrid .programClickable {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  text-decoration: none;
  border-radius: 10px;
  z-index: 1;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0) 100%);
  padding: 20px;
  transition: all 0.2s ease-in-out;
}
.programsPage .programGrid .programClickable:hover {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 70%, rgba(0, 0, 0, 0) 100%);
}
.programsPage .programGrid .programClickable .programTitle {
  color: white;
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 10px;
}
.programsPage .programGrid .programClickable .programDesc {
  color: #ddd;
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 10px;
}
.programsPage .programGrid .thanksgiving,
.programsPage .programGrid .leanna,
.programsPage .programGrid .chrf,
.programsPage .programGrid .kindnessRipple {
  background: url("../assets/img/logo.png") no-repeat center center/cover;
}
.programsPage .programGrid .thanksgiving {
  background: url("../assets/img/thanksgivingCover.jpg") no-repeat center center/cover;
}
.programsPage .programGrid .kindnessRipple {
  background: url("../assets/img/kindnessRippleCover.jpg") no-repeat center center/cover;
}
.programsPage .programGrid .chrf {
  background: url("../assets/img/chrfCover.jpg") no-repeat center center/cover;
}
.programsPage .programGrid .leanna {
  background: url("../assets//img/LLFCover.jpg") no-repeat center center/cover;
}

@media (max-width: 850px) {
  .programsPage .programGrid {
    flex-direction: column;
  }
}
.programPage {
  background-color: #fcfcfc;
}
.programPage .pageContent {
  padding: 20px;
  margin-top: -20px;
  display: fl;
}
.programPage .pageContent .header {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
  margin-bottom: 20px;
  color: #63463b;
}
.programPage .pageContent .programDetails {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 90%;
  margin: 0 auto;
}
.programPage .pageContent .programDetails ul,
.programPage .pageContent .programDetails ol {
  margin-left: 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.programPage .pageContent .programDetails ul li,
.programPage .pageContent .programDetails ol li {
  margin-bottom: 10px;
}
.programPage .pageContent .programDetails .leftRight {
  display: flex;
  justify-content: space-evenly;
}
.programPage .pageContent .programDetails .leftRight section {
  padding: 20px;
}
.programPage .pageContent .programDetails .leftRight .left,
.programPage .pageContent .programDetails .leftRight .right {
  width: 50%;
}
.programPage .pageContent .programDetails .leftRight .programImg {
  width: 150px;
}
@media (max-width: 1000px) {
  .programPage .pageContent .programDetails .leftRight {
    flex-direction: column;
  }
  .programPage .pageContent .programDetails .leftRight .left,
  .programPage .pageContent .programDetails .leftRight .right {
    width: 100%;
  }
}
.programPage .pageContent .programDetails .programDesc .imgTextHolder {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.programPage .pageContent .programDetails .programDesc .imgTextHolder .descText {
  margin-right: 20px;
}
.programPage .pageContent .programDetails .programDesc .imgTextHolder .descImg img {
  border-radius: 20px;
  width: 20vw;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  min-width: 200px;
}
@media (max-width: 800px) {
  .programPage .pageContent .programDetails .imgTextHolder {
    flex-direction: column;
  }
  .programPage .pageContent .programDetails .imgTextHolder .descImg {
    margin: 20px 0px;
  }
}
.programPage .pageContent .programDetails .programStats {
  padding: 20px;
  background-color: #87ac76;
  color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}
.programPage .pageContent .programDetails .programStats h3 {
  color: white;
}
.programPage .pageContent .programDetails .programStats ul {
  list-style-type: none;
}
.programPage .pageContent .programDetails .programStats ul li {
  font-size: 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin-bottom: 20px;
}
.programPage .pageContent .programDetails .programStats ul li .metricTitle {
  font-weight: bold;
}
.programPage .pageContent .programDetails .programStats ul li .metric {
  font-style: italic;
}
@media (max-width: 1000px) {
  .programPage .pageContent .programDetails {
    flex-direction: column;
  }
  .programPage .pageContent .programDetails .programStats {
    margin-top: 25px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
  }
  .programPage .pageContent .programDetails .programStats .metricList {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
  }
  .programPage .pageContent .programDetails .programStats .metricList .wholeMetric {
    padding: 20px;
  }
}

.donatePage {
  margin: 40px 0px;
  background-color: #fcfcfc;
}
.donatePage .donate-hero {
  height: 50vh;
  width: 100%;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.6);
  margin-top: -50px;
}
.donatePage .donate-hero .heroColorOverlay {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(92, 70, 55, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.donatePage .donate-hero .heroColorOverlay .heroContent {
  color: white;
  max-width: 1000px;
  padding: 25px;
}
.donatePage .donate-hero .heroColorOverlay .heroContent .heroBtn {
  padding: 15px 25px;
  background-color: #87ac76;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
  border: none;
}
.donatePage .donate-hero .heroColorOverlay .heroContent .heroBtn:hover {
  background-color: #a4d892;
}
.donatePage .donate-hero .heroColorOverlay .heroContent .heroBtn:active {
  background-color: #437046;
}
.donatePage .donate-hero .heroColorOverlay .heroContent .tagline {
  text-align: center;
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
}
.donatePage .donate-hero .heroColorOverlay .heroContent .tagline h3 {
  font-size: 1.2rem;
  color: white;
}
@media (max-width: 450px) {
  .donatePage .donate-hero .heroContent h1 {
    font-size: 30px;
  }
  .donatePage .donate-hero .heroContent .tagline {
    display: none;
  }
}
.donatePage .donate-hero {
  background: url("../assets/img/donateHero.jpg") no-repeat center center/cover;
  height: 300px;
  width: 100%;
}
.donatePage .donate-hero .heroContent h1 {
  color: white;
}
.donatePage .donateHolder .disclaimer {
  background-color: #87ac76;
  width: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
  color: white;
  font-size: 2vmin;
}
.donatePage .donateHolder .disclaimer h3 {
  color: white;
  font-size: 4vmin;
}
.donatePage .donateHolder .disclaimer a {
  color: rgba(252, 238, 234, 0.8509803922);
  transition: color 0.15s ease-in-out;
}
.donatePage .donateHolder .disclaimer a:hover {
  color: #63463b;
}
.donatePage .donateHolder .donateOptions {
  margin: 50px 10px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  margin-top: 20px;
  width: 80%;
}
.donatePage .donateHolder .donateOptions .option {
  background-color: #fefefe;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 350px;
  width: 40%;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.donatePage .donateHolder .donateOptions .option:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.donatePage .donateHolder .donateOptions .option i {
  color: #87ac76;
  margin-bottom: 20px;
}
.donatePage .donateHolder .donateOptions .option h4 {
  font-size: 1.4rem;
  color: #87ac76;
  margin-bottom: 15px;
}
.donatePage .donateHolder .donateOptions .option p {
  font-size: 0.95rem;
  color: #777;
  line-height: 1.5;
  margin-bottom: 20px;
}
.donatePage .donateHolder .donateOptions .option .card-link {
  color: #87ac76;
  text-decoration: none;
  font-weight: 600;
}
.donatePage .donateHolder .donateOptions .option .card-link i {
  font-size: 0.9em;
  margin-left: 5px;
  transition: margin-left 0.3s ease;
}
.donatePage .donateHolder .donateOptions .option .card-link:hover i {
  margin-left: 10px;
}
.donatePage .donateHolder .donateOptions .option {
  margin: 20px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
  flex-wrap: wrap;
  width: 45%;
  min-width: 300px;
}
.donatePage .donateHolder .donateOptions .option img {
  max-width: 200px;
  border-radius: 20px;
}
.donatePage .donateHolder .donateOptions .option h2 {
  color: #87ac76;
}
.donatePage .donateHolder .donateOptions .option a {
  padding: 15px 25px;
  background-color: #87ac76;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
  border: none;
}
.donatePage .donateHolder .donateOptions .option a:hover {
  background-color: #a4d892;
}
.donatePage .donateHolder .donateOptions .option a:active {
  background-color: #437046;
}
.donatePage .donateHolder .donateOptions .option a {
  margin-bottom: 30px;
}
.donatePage .donateHolder .donateOptions .option {
  margin-bottom: 10px;
}

.contact-page {
  padding: 80px 0;
  background-color: #f7f7f7;
}
.contact-page .contact-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 20px;
}
.contact-page .contact-header h2 {
  font-size: 2.5rem;
  color: #87ac76;
}
.contact-page .contact-header p {
  font-size: 1.1rem;
  color: #666;
}
.contact-page .contact-header i {
  margin-left: 5px;
}
.contact-page .contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
@media (min-width: 992px) {
  .contact-page .contact-grid {
    grid-template-columns: 3fr 2fr;
  }
}
.contact-page .contact-form-wrapper {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  width: 90%;
  margin: 0 auto;
}
.contact-page .contact-form-wrapper h3 {
  color: #87ac76;
  margin-bottom: 25px;
}
.contact-page .form-group {
  margin-bottom: 20px;
}
.contact-page .form-group label {
  display: block;
  font-weight: 600;
  color: #444;
  margin-bottom: 8px;
}
.contact-page .form-group input[type=text],
.contact-page .form-group input[type=email],
.contact-page .form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s;
}
.contact-page .form-group input[type=text]:focus,
.contact-page .form-group input[type=email]:focus,
.contact-page .form-group textarea:focus {
  border-color: #87ac76;
  outline: none;
}
.contact-page .form-group textarea {
  resize: vertical;
}
.contact-page .btn-submit {
  padding: 15px 25px;
  background-color: #87ac76;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
  border: none;
}
.contact-page .btn-submit:hover {
  background-color: #a4d892;
}
.contact-page .btn-submit:active {
  background-color: #437046;
}
.contact-page .btn-submit {
  width: 100%;
  margin-top: 15px;
}
.contact-page .contact-info {
  width: 90%;
  margin: 0 auto;
}
.contact-page .contact-info h3 {
  color: #87ac76;
  margin-bottom: 30px;
  border-bottom: 2px solid #87ac76;
  padding-bottom: 10px;
}
.contact-page .contact-info .info-block {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding: 10px;
}
.contact-page .contact-info .info-block i {
  font-size: 1.5rem;
  color: #87ac76;
  margin-right: 15px;
  width: 30px;
  text-align: center;
}
.contact-page .contact-info .info-block h4 {
  font-size: 1rem;
  color: #87ac76;
  margin: 0;
}
.contact-page .contact-info .info-block p {
  margin: 0;
  margin-left: 20px;
  color: #555;
  font-size: 20px;
}
.contact-page .contact-info .info-block a {
  color: #555;
  transition: all 0.2s ease-in-out;
}
.contact-page .contact-info .info-block a:hover {
  color: #87ac76;
}

@media (max-width: 500px) {
  .info-block a {
    font-size: 15px;
  }
}
.phoneLink {
  pointer-events: none;
  text-decoration: none;
}

@media (max-width: 800px) {
  .phoneLink {
    pointer-events: all;
    text-decoration: underline;
  }
}
@media (max-width: 400px) {
  .info-block .emailLink a {
    font-size: 10px;
  }
}
.footer {
  background-color: #63463b;
  color: white;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
}
@media (min-width: 768px) {
  .footer {
    padding: 30px 50px;
  }
}
.footer p:first-child {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.footer .buttonsHolder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
@media (min-width: 768px) {
  .footer .buttonsHolder {
    flex-direction: row;
    gap: 30px;
  }
}
.footer .socialButtons {
  display: flex;
  gap: 15px;
}
.footer .footerBtn {
  font-size: 1.5rem;
  color: white;
  transition: color 0.3s ease;
}
.footer .footerBtn:hover {
  color: #87ac76;
}
.footer .docsButton {
  padding: 15px 25px;
  background-color: #87ac76;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
  border: none;
}
.footer .docsButton:hover {
  background-color: #a4d892;
}
.footer .docsButton:active {
  background-color: #437046;
}
.footer .docsButton {
  background-color: transparent;
  color: white;
  border: 2px solid white;
  padding: 8px 15px;
  font-weight: 500;
  transition: background-color 0.3s, border-color 0.3s;
  text-decoration: none;
}
.footer .docsButton:hover {
  background-color: #87ac76;
  border-color: #87ac76;
}
.footer .devCallout {
  margin-top: 15px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}
@media (min-width: 768px) {
  .footer .devCallout {
    margin-top: 15px;
  }
}
.footer .devCallout a {
  color: rgba(252, 238, 234, 0.8509803922);
  transition: color 0.3s;
  font-size: 1rem;
}
.footer .devCallout a:hover {
  color: #6ccd6c;
  text-decoration: underline;
}
.footer .devCallout .code:hover {
  color: rgb(94, 184, 222);
}
.footer .devCallout .heart:hover {
  color: rgb(237, 75, 75);
}
.footer .devCallout i {
  color: rgba(252, 238, 234, 0.8509803922);
  margin: 0 2px;
  transition: color 0.3s;
}

.documents-page {
  padding: 80px 0;
  background-color: #fcfcfc;
}
.documents-page .document-header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.documents-page .document-header h2 {
  font-size: 2.5rem;
  color: #87ac76;
}
.documents-page .document-header p {
  font-size: 1.1rem;
  color: #666;
}
.documents-page .document-list-wrapper {
  width: 80%;
  margin: 0 auto;
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.documents-page .list-heading {
  color: #87ac76;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: 1.6rem;
}
.documents-page .document-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.documents-page .document-list li {
  display: flex;
  align-items: center;
  border-bottom: 1px dashed #eee;
  padding: 15px 0;
  transition: background-color 0.3s;
}
.documents-page .document-list li:hover {
  background-color: #f9f9f9;
}
.documents-page .document-list li i {
  font-size: 1.2rem;
  color: #87ac76;
  margin-right: 15px;
  flex-shrink: 0;
}
.documents-page .document-list li a {
  flex-grow: 1;
  color: #87ac76;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.documents-page .document-list li a:hover {
  text-decoration: underline;
}
.documents-page .document-list li .type-hint {
  font-size: 0.85rem;
  color: #888;
  margin-left: 10px;
  padding: 3px 8px;
  border: 1px solid #ddd;
  border-radius: 3px;
  flex-shrink: 0;
}
.documents-page .document-list li:last-child {
  border-bottom: none;
}
.documents-page .annual-reports-placeholder {
  margin-top: 50px;
  padding: 30px;
  text-align: center;
  background-color: #87ac76;
  color: white;
  border-radius: 10px;
  width: 80%;
  margin: 0 auto;
  margin-top: 25px;
}
.documents-page .annual-reports-placeholder h3 {
  color: #f8f8f8;
  margin-bottom: 10px;
}
.documents-page .annual-reports-placeholder p {
  font-size: 1rem;
  margin-bottom: 40px;
}
.documents-page .annual-reports-placeholder .btn-secondary {
  padding: 15px 25px;
  background-color: #87ac76;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
  border: none;
}
.documents-page .annual-reports-placeholder .btn-secondary:hover {
  background-color: #a4d892;
}
.documents-page .annual-reports-placeholder .btn-secondary:active {
  background-color: #437046;
}
.documents-page .annual-reports-placeholder .btn-secondary {
  background-color: white;
  color: #87ac76;
}
.documents-page .annual-reports-placeholder .btn-secondary:hover {
  background-color: #a4d892;
  color: white;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  background-color: rgba(252, 238, 234, 0.8509803922);
}

h1, h2, h3, h4, h5, h6, p {
  margin-bottom: 16px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

a {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: smaller;
}

.siteContent {
  padding-top: 4vh;
  margin: 0 auto;
}
.siteContent .headerText {
  font-size: 2rem;
  color: #63463b;
  margin-bottom: 20px;
  margin-top: -4.5vh;
}

.bg2 {
  background-color: #f8f8f8;
}

.bg1 {
  background-color: #fcfcfc;
}
