body {
  margin: 0;
  font-family: 'Newsreader', serif;
  background-color: #E7EEEB;
  color: #254E1F;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1, h2, h3, .donate-button, .join-button, .apply-button {
  font-family: 'Newsreader', serif;
}.navbar {
   position: relative;
  background-color: #254E1F;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 5px 50px;
  color: #E7EEEB;
  flex-wrap: wrap;
  gap: 40px;
  transition: transform 0.3s ease;
}

/* NEW: push everything after the logo to the right (creates the big space) */
.logo {
  margin-right: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
  /* CHANGED: remove the right-push so Donate can be far right */
  margin-left: 0;
  position: relative;
}

.nav-links a, .donate-small {
  color: #E7EEEB;
  text-decoration: none;
  font-size: 25px;
}

.donate-small {
  background-color: #FDEDB5;
  color: #254E1F;
  padding: 6px 12px;
  border-radius: 20px;
  /* small breathing room from last nav link */
  margin-left: 16px;
}

.donate-small:hover {
  background-color: #FFF3C1;
  color: #05424B;
  transition: all 0.3s ease;
}

/* REMOVE these unused selectors (your toggle isn't .hamburger)
.hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
*/

/* Keep only the working hamburger animation for #mobile-menu */
.navbar__toggle {
  display: none;
  cursor: pointer;
  z-index: 1001;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #E7EEEB;
  transition: all 0.3s ease-in-out;
}

/* Hamburger animation */
#mobile-menu.is-active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
#mobile-menu.is-active .bar:nth-child(2) { opacity: 0; }
#mobile-menu.is-active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* -------- Mobile: consolidate the important parts -------- */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 30px;
    position: relative
  }

  .logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    /* margin-right:auto remains fine on mobile */
  }

  .navbar__toggle {
    display: block;
    position: absolute;
    top: 25px;
    right: 30px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    margin-top: 0px;
    order: 2;               /* menu appears first in the stack (after logo) */
    position: absolute;
    top: 100%;                     /* sit flush under the navbar */
    left: 0;
    right: 0;
  }

  .nav-links.active { display: flex; }


  .dropdown-menu {
    position: static;
    background-color: transparent;
    box-shadow: none;
    transform: none;
    max-height: none;
    padding-left: 12px;     /* small indent for submenu items */
  }

  /* disable hover-driven open on mobile */
  .dropdown:hover .dropdown-menu { max-height: none; }
}

/* DROPDOWN STYLES (same for all menu items) */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  list-style: none;
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #E7EEEB;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  min-width: 220px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
  padding: 0;
  z-index: 1000;
  border-radius: 6px;
}

.dropdown:hover .dropdown-menu {
  max-height: 500px;
}

.dropdown-menu li {
  padding: 10px 0;
  text-align: center;
}

.dropdown-menu a {
  display: block;
  font-size: 20px;
  color: #254E1F;
  text-decoration: none;
  transition: color 0.3s ease;
}

.dropdown-menu a:hover {
  color: #4BD34F;
  background-color: transparent;
}

/* Top-level nav link hover effect */
.nav-links > li > a:hover {
  color: #E7EEEB;
  transition: color 0.3s ease;
}

/* (Optional) keep this second mobile block if you like; the key orders/margins already set above */
@media (max-width: 768px) {
  .navbar { flex-wrap: wrap; }
  .navbar__toggle { display: block; margin-left: auto; }
  .nav-links { width: 100%; margin-left: 0; }
  .nav-links.active { display: flex; }
  .dropdown-menu { position: static; transform: none; background: transparent; box-shadow: none; max-height: none; padding-left: 12px; }

  .dropdown-menu li {
    padding: 10px 0;
    text-align: left;
  }
  
  .dropdown-menu a {
    display: block;
    font-size: 20px;
    color: #4BD34F;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  /* Base link style */
.dropdown-menu a {
  position: relative;
  display: inline-block; /* ensures underline matches text width */
  color: #4BD34F;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Custom underline */
.dropdown-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px; /* a bit further from text */
  width: 0;
  height: 3px; /* thicker underline */
  background-color: #4BD34F;
  transition: width 0.3s ease;
}

/* Hover styles */
.dropdown-menu a:hover {
  color: #4BD34F;
}

.dropdown-menu a:hover::after {
  width: 100%; /* underline grows just under text */
}


  
}
@media (max-width: 768px) {
  .navbar .donate-small {
    display: none !important;
  }
}


/* SCROLL ANIMATION STYLES */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.fade-in.animate {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.slide-in-left.animate {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.slide-in-right.animate {
  opacity: 1;
  transform: translateX(0);
}

.zoom-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.zoom-in.animate {
  opacity: 1;
  transform: scale(1);
}

.stagger-animation {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.stagger-animation.animate {
  opacity: 1;
  transform: translateY(0);
}

/* HERO SECTION */
.hero {
  background-color: #E7EEEB;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 30px;
  flex-wrap: wrap;
}

.hero.immediate-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero.immediate-fade.loaded {
  opacity: 1;
  transform: translateY(0);
}

.hero h1 {
  font-size: 65px;
  line-height: 1.5;
}

.donate-button {
  margin-top: 5px;
  margin-left: 500px;
  background-color: #FDEDB5;
  padding: 20px 40px;
  border: 2px solid #254E1F;
  border-radius: 999px;
  font-size: 40px;
  color: #254E1F;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.donate-button:hover {
  background-color: #FFF3C1;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.hero-logo {
  height: 400px;
  border-radius: 50%;
  padding-right: 15px;
  padding-bottom: 10px;
  transition: transform 0.3s ease;
}

.hero-logo:hover {
  transform: scale(1.05);
}

.what-is {
  background-color: #05424B;
  color: #E7EEEB;
  padding: 40px;
  margin: 40px 3rem;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  box-shadow: 0px 12px 28px #05424B;
}

.what-is-img {
  background-color: #ccc;
  width: 100%;              /* fills available space */
  max-width: 520px;         /* cap size so it’s not huge on big screens */
  height: auto;             /* keeps the original aspect ratio */
  border-radius: 20px;
  flex-shrink: 0;
  margin-left: 20px;
  transition: transform 0.3s ease;
}

.what-is-img:hover {
  transform: scale(1.02);
}

.what-is-text {
  max-width: 500px;
}

.what-is-text h2 {
  font-family: 'Newsreader', serif;
  font-size: 50px;
  margin-bottom: 5px;
  color: #4BD34F;
  text-align: center;
}

.what-is-text p {
  font-family: 'Pontano Sans', sans-serif;
  font-size: 30px;
  color: #E7EEEB;
  text-align: center;
}

.what-is-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.mission {
  padding-top: 2px;
  padding-bottom: 20px;
  padding-right: 30px;
  padding-left: 0px;
  background-color: #E7EEEB;
  color: #254E1F;
  text-align: center;
}

.mission h2 {
  font-size: 50px;
}

.mission-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.mission-text {
  flex: 1;
  max-width: 550px;
  font-family: 'Pontano Sans', sans-serif;
  font-size: 30px;
  text-align: center;
  margin-left: 0px;
}

.mission-imgs {
  position: relative;
  width: 600px;
  height: 420px;
  flex-shrink: 0;
  margin: 0 auto -20px auto;
}

.img1 {
  width: 420px;
  height: 300px;
  position: absolute;
  top: 0;
  left: 40px;
  z-index: 1;
  object-fit: cover;
  border: 2px solid #254E1F;
  box-shadow: 6px 6px 18px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease;
}

.img1:hover {
  transform: scale(1.02);
}

.img2 {
  width: 225px;
  height: 330px;
  position: absolute;
  bottom: -50px;
  right: 10px;
  z-index: 2;
  object-fit: cover;
  border: 2px solid #254E1F;
  box-shadow: 6px 6px 18px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease;
}

.img2:hover {
  transform: scale(1.02);
}

.mission-button-wrapper {
  text-align: center;
  margin-top: -50px;
  margin-bottom: 30px;
  margin-right: 160px;
}

.join-button {
  background-color: #FDEDB5;
  padding: 16px 32px;
  border-radius: 999px;
  border: 2px solid #254E1F;
  text-decoration: none;
  color: #254E1F;
  font-family: 'Newsreader', serif;
  font-size: 30px;
  transition: all 0.3s ease;
}

.join-button:hover {
  background-color: #FFF3C1;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.rotating-logos {
  overflow: hidden;
  padding: 30px 0px;
  background: #254E1F;
  white-space: nowrap;
  border: 5px solid #4BD34F;
  margin-top: 50px;
}

.rotating-logos:hover .rotating-logos__track {
  animation-play-state: paused;
}

.rotating-logos__track {
  display: inline-block;
  animation: rotate 36s linear infinite;
}

@keyframes rotate {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.logo-text {
  font-size: 50px;
  font-weight: bold;
  font-family: 'Newsreader', serif;
  color: #E7EEEB;
  margin: 0 40px;
  display: inline-block;
}

/* PARTNERS SECTION */
.partners {
  padding: 30px 30px;
  background-color: #E7EEEB;
  text-align: center;
  font-size: 25px;
}

.partner-logos {
  display: flex;
  justify-content: space-around;
  margin: 30px 0;
  flex-wrap: wrap;
  gap: 20px;
}

.partner-card img {
  width: 150px;
  transition: transform 0.3s ease;
}

.partner-card img:hover {
  transform: scale(1.1);
}

.lf img {
  width: 150px;
  transition: transform 0.3s ease;
}

.lf img:hover {
  transform: scale(1.1);
}

.looking_donors {
  margin-top: 20px;
  transition: opacity 0.3s ease;
}

.looking_donors:hover {
  opacity: 0.8;
}

/* JOIN US AREA */
.join {
  padding: 40px 30px;
  background-color: #E7EEEB;
}

.join-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.apply-button {
  background-color: #FDEDB5;
  padding: 10px 16px;
  border-radius: 999px;
  border: 2px solid #254E1F;
  text-decoration: none;
  color: #254E1F;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.apply-button:hover {
  background-color: #FFF3C1;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
/* ==================== MEDIA QUERIES ==================== */

/* Tablets and small laptops (width < 1024px) */
@media screen and (max-width: 1024px) {
  .hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .donate-button {
    margin: 20px auto 0 auto;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-logo {
    height: 300px;
    margin-top: 20px;
  }

  .what-is {
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
  }

  .what-is-text, .what-is-img {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }

  .mission-container {
    flex-direction: column;
  }

  .mission-text {
    max-width: 90%;
    font-size: 24px;
  }

  .mission-imgs {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  

  .img1,
  .img2 {
    position: static;
    margin: 10px auto;
    display: block;
    width: 80%;
    height: auto;
  }

  .mission-button-wrapper {
    margin: 20px auto;
  }

  .partner-logos {
    justify-content: center;
    gap: 30px;
  }

  .join-content {
    flex-direction: column;
    text-align: center;
  }

  .apply-button {
    margin-top: 10px;
  }
}

/* Phones (width < 768px) */
@media screen and (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
  }

  .donate-button {
    font-size: 28px;
    padding: 16px 28px;
  }

  .hero-logo {
    height: 250px;
  }

  .what-is-text h2 {
    font-size: 40px;
  }

  .what-is-text p {
    font-size: 22px;
  }

  .mission h2 {
    font-size: 40px;
  }

  .mission-text {
    font-size: 22px;
  }

  .join-button {
    font-size: 24px;
    padding: 12px 24px;
  }

  .rotating-logos .logo-text {
    font-size: 32px;
    margin: 0 20px;
  }

  .partners {
    font-size: 20px;
  }

  .partner-card img,
  .lf img {
    width: 120px;
  }
}

/* Tiny screens (width < 480px) */
@media screen and (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }

  .donate-button {
    font-size: 20px;
    padding: 14px 20px;
  }

  .hero-logo {
    height: 180px;
  }

  .what-is-text h2 {
    font-size: 32px;
  }

  .what-is-text p {
    font-size: 18px;
  }

  .mission h2 {
    font-size: 32px;
  }

  .mission-text {
    font-size: 18px;
  }

  .join-button {
    font-size: 20px;
    padding: 10px 20px;
  }

  .rotating-logos .logo-text {
    font-size: 24px;
  }

  .partners {
    font-size: 18px;
  }

  .partner-card img,
  .lf img {
    width: 100px;
  }
}

/* LEARN MORE PAGE STYLES */
.board {
  text-align: center;
  padding: 40px 0px;
  background-color: #E7EEEB;
  font-size: 30px; 
}


.board-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}


.board-member {
  width: 300px;
  text-align: center;
  margin-left: 3rem;
  margin-right: 3rem;
}

.board-img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #254E1F;
  margin-bottom: 10px;
  transition: transform 0.2s ease;
}

.jrboard-img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #254E1F;
  margin-bottom: 10px;
  transition: transform 0.2s ease;
}

.jrboard-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: nowrap; 
  margin-top: 10px;
}

.jrboard {
  text-align: center;
  padding: 0px 20px;
  background-color: #E7EEEB;
  font-size: 30px; 
}

.jrboard-img:hover {
  transform: scale(1.05);
}
.officers {
  text-align: center;
  margin: 0px auto;
  max-width: 1200px;
  margin-top: 0px;
}

.officers h2{
  font-size: 45px;
  margin-bottom: 10px;
  margin-top: 60px;
}

.officer-group {
  display: inline-block;
  margin: 0 40px;
  vertical-align: top;
}

.officer-group h3 {
  font-size: 1.75rem;
  font-weight: bold;
  color: #254E1F; /* dark green */
  margin-bottom: 0px;
}

.officer-group p {
  font-size: 1.4rem;
  margin: 6px 0;
  color: #254E1F; /* dark gray for names */
}

/* ====== Responsive Breakpoints ====== */

/* Tablet (2 per row) */
@media (max-width: 1024px) {
  .officer-group {
    display: inline-block;
    width: 40%;
    margin: 20px 5%;
  }
}

/* Mobile (stacked, 1 per row) */
@media (max-width: 600px) {
  .officer-group {
    display: block;
    width: 100%;
    margin: 20px auto;
  }

  .officers-title {
    font-size: 2rem;
  }

  .officer-group h3 {
    font-size: 1.67rem;
  }

  .officer-group p {
    font-size: 1.3rem;
  }
}


/* === Base (large desktop): keep your current setup ===
   .jrboard-grid { display:flex; justify-content:center; gap:40px; flex-wrap: nowrap; }
   .jrboard-img { width:200px; height:200px; }
*/

/* Half-screen desktop & small laptops (<= 1200px): 2 per row */
@media (max-width: 1200px) {
  .jrboard-grid {
    flex-wrap: wrap;                 /* allow wrapping */
    gap: 32px;                       /* slightly tighter gap */
  }
  .jrboard-grid > * {
    flex: 0 0 calc(50% - 32px);      /* two across */
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .jrboard-img {
    width: 180px;
    height: 180px;
  }
}

/* Tablets (<= 900px): 2 per row, smaller avatars */
@media (max-width: 900px) {
  .jrboard-grid {
    gap: 28px;
  }
  .jrboard-grid > * {
    flex: 0 0 calc(50% - 28px);
  }
  .jrboard-img {
    width: 160px;
    height: 160px;
  }
}

/* Phones (<= 600px): 1 per row */
@media (max-width: 600px) {
  .jrboard-grid {
    gap: 20px;
  }
  .jrboard-grid > * {
    flex: 0 0 100%;                  /* full width card */
  }
  .jrboard-img {
    width: 140px;
    height: 140px;
  }
  .jrboard {
    font-size: 24px;                 /* optional: slightly smaller section heading/text on phones */
  }
}


.board-img:hover {
  transform: scale(1.05);
}

.board-member h3 {
  margin: 5px 0;
  font-family: 'Newsreader', serif;
  font-size: 30px;
}

.board-member p {
  font-size: 20px;
  font-family: 'Pontano Sans', sans-serif;
  color: #254E1F;
}

/* EVENTS */
/* Match "What is Shelttr" layout for Events section */
.events {
  background-color: #05424B;
  color: #E7EEEB;
  font-size: 35px;
  text-align: center; 
  padding: 40px;
  margin: 40px 3rem;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  box-shadow: 0px 12px 28px #05424B;
}

.events .what-is-event h2 {
  font-family: 'Newsreader', serif;
  font-size: 50px;

  color: #4BD34F;
  text-align: center;
} 

.events .what-is-text h2 {
  font-family: 'Newsreader', serif;
  font-size: 50px;
 
  color: #4BD34F;
  text-align: center;
}

.events .what-is-text p {
font-family: 'Newsreader', serif;
  font-size: 22px;
  color: #E7EEEB;
  text-align: center;
}

.event-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.event-card {
  background-color: 05424B;
  color: #E7EEEB;
  border-radius: 20px;
  padding-left: 40px;
  padding-right: 40px;
  width: 425px;
  text-align: center;
  font-size: 20px;
}

.event-card img {
  width: 30rem;
  height: auto;
  border-radius: 10px;
  
  transition: transform 0.3s ease;
}

.event-card img:hover {
  transform: scale(1.05);
}

.event-followup {
  font-size: 30px;
  color: #4BD34F;
  text-align: center;
  margin-top: 20px;
  font-family: 'Newsreader', serif;
}

.hover-link-event-followup {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.hover-link-event-followup:hover {
  color: #E7EEEB; /* light blue */
}

.hover-link-event-followup:hover {
  color: #E7EEEB;
}

 /* FAQ Section */

.faqs-head {
  font-family: "Newsreader", serif;
  color: #254E1F;
  text-align: center;
  font-size: 3.5rem;

   margin-top: 20px;   /* was 30px — brings heading closer to the top */
  margin-bottom: 20px; /* brings heading closer to questions */
}

.questions-container {
  max-width: 1000px;
  margin: 0 auto;
}

.questions {
  border-bottom: 1px solid #05424B;
  color: #254E1F;
  font-family: "Newsreader", serif;
  padding-left: 20px;
  margin-bottom: 15px; /* 🔽 brings the questions closer together */
}

.questions:hover span {
  color: #4BD34F;
  font-family: "Newsreader", serif;
}

.questions button {
  width: 100%;
  background-color: #E7EEEB;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 15px; /* 🔽 less vertical padding */
  border: none;
  outline: none;
  font-size: 25px;
  font-weight: 700;
  cursor: pointer;
  color: #254E1F;
  font-family: "Newsreader", serif;
}

.questions p {
  font-size: 22px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  line-height: 1.4;
  transition: all 0.15s ease;
  color: #05424B;
  padding-left: 20px;
  margin: 5px 0; /* 🔽 removes extra paragraph spacing */
}

.questions p.show {
  max-height: 500px;
  opacity: 1;
  padding: 0px 15px 20px 15px;
  padding-left: 20px;
}

.arrow {
  transition: transform 0.2s ease-in;
  color: #05424B;
}

.questions button .arrow.rotate {
  transform: rotate(180deg);
}

.faq-container {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  padding: 5px;
}

.questions-container {
  flex: 1;
}


/* PHOTO GALLERY *//* PHOTO GALLERY */
.image-slider {
  position: relative;
  background-color: #E7EEEB;
  padding: 20px 40px; /* Side padding to prevent images from hitting the edge */
  overflow: hidden;
}

.slider-container {
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  gap: 20px; /* Space between images */
  transition: transform 0.5s ease-in-out;
  width: fit-content;
  padding: 20px 0; /* Top/bottom padding */
}

.slider-track img {
  width: 21%;
  object-fit: cover;
  border-radius: 30px;
}

/* Arrow buttons */
.left-arrow,
.right-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  color: #254E1F;
  font-size: 60px;
  cursor: pointer;
  padding: 0 10px;
  z-index: 1;
  transition: transform 0.2s ease;
}

.left-arrow:hover,
.right-arrow:hover {
  transform: translateY(-50%) scale(1.1);
}

.left-arrow {
  left: 10px;
}

.right-arrow {
  right: 10px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .slider-track img {
    width: 45%;
  }

  .left-arrow,
  .right-arrow {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .slider-track img {
    width: 80%;
  }
}

/* ===================== LEARN MORE – RESPONSIVE ===================== */

/* Tablet / small laptop (≤1024px) */
@media screen and (max-width: 1024px) {
  /* Board */
  .board { font-size: 26px; padding: 32px 20px; }
  .board-grid { gap: 28px; }
  .board-member { width: clamp(260px, 45%, 300px); margin: 0; }
  .board-img { width: 220px; height: 220px; }

  /* Events wrapper */
  .events {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
    margin: 30px 1.5rem;
    gap: 28px;
  }

  /* Event grid + cards */
  .event-grid {
    gap: 24px;
    margin-top: 10px;
  }
  .event-card {
    width: clamp(320px, 46%, 520px);
    padding-left: 24px;
    padding-right: 24px;
  }
  .event-card img {
    width: 100%;
    height: auto;            /* keep aspect ratio */
    aspect-ratio: 16 / 9;    /* consistent frame */
    object-fit: cover;       /* no distortion, crop if needed */
    border-radius: 14px;
  }

  .event-followup { font-size: 26px; }

  /* FAQs */
  .faqs-head { font-size: 3rem; }
  .questions button { font-size: 22px; }
  .questions p { font-size: 20px; }
}

/* Phones / large phones (≤768px) */
@media screen and (max-width: 768px) {
  /* Board */
  .board { font-size: 22px; padding: 28px 16px; }
  .board-grid { gap: 22px; }
  .board-member { width: 88%; max-width: 520px; }
  .board-img { width: 200px; height: 200px; }
  .board-member h3 { font-size: 26px; }
  .board-member p { font-size: 18px; }

  /* Events */
  .events {
    margin: 28px 1rem;
    padding: 28px 16px;
    gap: 22px;
  }
  .events h2 { font-size: 40px; }
  .events .what-is-text p { font-size: 20px; }

  .event-grid { gap: 20px; }
  .event-card {
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
  }
  .event-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 12px;
  }
  .event-card p { font-size: 18px; }

  .event-followup { font-size: 22px; }

  /* FAQs */
  .faqs-head { font-size: 2.4rem; }
  .questions button { font-size: 20px; padding: 14px 12px; }
  .questions p { font-size: 18px; }
}

/* Small phones (≤480px) */
@media screen and (max-width: 480px) {
  /* Board */
  .board { font-size: 20px; padding: 24px 12px; }
  .board-member { width: 100%; max-width: 420px; }
  .board-img { width: 160px; height: 160px; }
  .board-member h3 { font-size: 22px; }
  .board-member p { font-size: 16px; }

  /* Events */
  .events {
    margin: 20px 0.75rem;
    padding: 22px 12px;
    gap: 18px;
  }
  .events h2 { font-size: 32px; }
  .event-card {
    width: 100%;
    max-width: 420px;
    padding-left: 12px;
    padding-right: 12px;
  }
  .event-card img {
    width: 100%;
    aspect-ratio: 4 / 3;   /* slightly taller on tiny screens */
    object-fit: cover;
    border-radius: 10px;
  }
  .event-card p { font-size: 16px; }

  .event-followup { font-size: 18px; }

  /* FAQs */
  .faqs-head { font-size: 2rem; margin: 16px 0; }
  .questions button { font-size: 18px; padding: 12px 10px; }
  .questions p { font-size: 16px; }
  .slider-track {
    gap: 10px; /* smaller space between images */
    padding: 10px 0;
  }

  .slider-track img {
    width: 65%;            /* smaller width */
    max-width: 220px;       /* don’t let them get too big */
    height: auto;           /* keep aspect ratio */
    object-fit: cover;
    border-radius: 20px;
  }

  .left-arrow,
  .right-arrow {
    font-size: 26px;        /* smaller arrows so they don't cover the images */
  }

}


/* GET INVOLVED PAGE */
.involved-hero {
  padding: 20px 70px;
  background-color: #E7EEEB;
  color: #05424B;
}

.involved-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.involved-left {
  flex: 1;
  min-width: 260px;
}

.involved-left h2 {
  font-family: 'Newsreader', serif;
  font-size: 100px;
  margin-bottom: 10px;
  margin-top: -30px;
}

.involved-left h3 {
  margin-top: 20px;
  font-family: 'Newsreader', serif;
  font-size: 40px;
}

.involved-left ul {
  padding-left: 20px;
  font-family: 'Newsreader', serif;
  color: #254E1F;
  font-size: 25px;
}

.involved-right img {
  max-width: 500px;
  width: 100%;
  height: auto;
  border-radius: 20px;
  margin-top: 50px;
  transition: transform 0.3s ease;
}

.involved-right img:hover {
  transform: scale(1.05);
}

.apply-btn {
  display: inline-block;
  background-color: #FDEDB5;
  border: 2px solid #254E1F;
  border-radius: 999px;
  padding: 14px 35px;
  color: #254E1F;
  text-decoration: none;
  font-size: 40px;
  font-family: 'Newsreader', serif;
  margin-top: 10px;
  margin-left: 100px;
  margin-bottom: 50px;
  transition: all 0.3s ease;
}

.apply-btn:hover {
  background-color: #FFF3C1;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* ===================== GET INVOLVED — RESPONSIVE ===================== */

/* Half-screen desktop / tablets (≤1024px) */
@media (max-width: 1024px) {
  .involved-hero {
    padding: 24px 40px;
  }

  .involved-content {
    gap: 28px;
    align-items: flex-start;
  }

  .involved-left h2 {
    font-size: 72px;
    margin-top: 0;
  }

  .involved-left h3 {
    font-size: 34px;
  }

  .involved-left ul {
    font-size: 22px;
  }

  /* Center the Apply button without the big left offset */
  .apply-btn {
    margin-left: 0;
    margin-top: 12px;
    font-size: 32px;
    padding: 12px 30px;
  }

  /* Role descriptions tighten up */
  .section-heading {
    font-size: 2.6rem;
    padding: 18px;
  }

  .role-content {
    gap: 3rem;
  }

  .role-title {
    width: 320px;
    font-size: 2rem;
  }

  .role-text {
    font-size: 1.15rem;
    max-width: 800px;
  }

  .role-description hr {
    margin: 26px 28px;
  }
}

/* Phones / large phones (≤768px) */
/* ===== Role Descriptions – mobile polish ===== */

/* Tablets / large phones (≤768px) */
@media (max-width: 768px) {
  /* Stack title over text and make each item a neat card */
  .role-row {
    background: #E7EEEB;
    border: #4BD34F; /* subtle dark-teal tint */
    border-radius: 16px;
    padding: 16px 14px;
    margin: 18px 0;
   
  }

  .role-content {
    flex-direction: column;
    gap: 8px;              /* tighter than default */
  }

  .role-title {
    width: 100%;
    text-align: center;
    font-size: 1.45rem;
    line-height: 1.25;
    margin: 0 0 4px 0;
  }

  .role-text {
    font-size: 1.02rem;
    line-height: 1.65;
    max-width: 100%;
  }

  /* Replace HRs with spacing so there’s no double dividers */
  .role-description hr {
    display: none;
  }

  /* Section heading a bit smaller to match scale */
  .section-heading {
    font-size: 2rem;
    padding: 14px;
    margin-bottom: 20px;
  }
}

/* Small phones (≤480px) */
@media (max-width: 480px) {
  .involved-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
  }

  /* Image sizing */
  .involved-right img {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: 16px;
  }

  /* Role cards: ensure single column */
  .role-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  /* Title: center and unfreeze width */
  .role-description .role-title {
    width: auto;
    max-width: 100%;
    text-align: center;
    margin: 0 auto 0px auto;
    font-size: 1.3rem;
    line-height: 1;
  }

  /* Body text stays readable and doesn’t overflow */
  .role-description .role-text {
    font-size: 0.98rem;
    line-height: 1.6;
    word-wrap: break-word;
  }

  .involved-left ul {
    text-align: left;             /* align text left */
    list-style-position: outside; /* keep bullets in the margin */
    padding-left: 20px;           /* space for bullets */
    margin: 0;                    /* remove extra gap */
  }

  .involved-left li {
    margin-bottom: 6px;           /* even spacing between items */
  }
}





.card-content p {
  color: #254E1F;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  text-align: center;
}

.turtle-head {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #FDEDB5;
  border-radius: 50%;
  border: 3px solid #254E1F;
}

.application-text {
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: #E7EEEB;
  font-size: 0.9rem;
  font-weight: 600;
}

/* ROLE DESCRIPTION SECTION */
.role-description {
  background-color: #E7EEEB;
  padding: 20px 10px;
}

.section-heading {
  background-color: #254E1F;
  color: #FDEDB5;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  padding: 20px;
  margin-bottom: 40px;
  font-family: 'Newsreader', serif;
}

.role-row {
  margin-bottom: 30px;
}


.role-description hr {
  border: none;
  height: 2px;
  background-color: #4BD34F;
  margin: 30px 40px;

}

.role-content {
  display: flex;
  align-items: flex-start;
  gap: 5rem;
  flex-wrap: wrap;
}

.role-title {
  color: #254E1F;
  font-size: 2.3rem;
  font-weight: 700;
  width: 400px;
  flex-shrink: 1;
  font-family: 'Newsreader', serif;
  text-align: right;
}

.role-text {
  color: #254E1F;
  font-size: 1.3rem;
  font-family: 'Newsreader', serif;
  line-height: 1.6;
  max-width: 1000px;
  flex: 1;
}




/* STATISTICS SECTION */
.statistics {
  background-color: #E7EEEB;
  padding: 60px 30px;
  text-align: center;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 200px;
  padding: 20px;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-circle {
  background-color: #FDEDB5;
  border: 3px solid #254E1F;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.stat-circle:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.stat-number {
  font-family: 'Newsreader', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #254E1F;
  margin-bottom: 5px;
  line-height: 1;
}

.stat-label {
  font-family: 'Pontano Sans', sans-serif;
  font-size: 1rem;
  color: #254E1F;
  text-align: center;
  font-weight: 600;
}

/* RESPONSIVE DESIGN FOR STATISTICS */
@media (max-width: 768px) {
  .stats-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .stat-item {
    min-width: 150px;
  }
  
  .stat-circle {
    width: 180px;
    height: 180px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .statistics {
    padding: 40px 20px;
  }
  
  .stat-circle {
    width: 150px;
    height: 150px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
}



/* */
.footer {
  background-color: #254E1F;
  color: #E7EEEB;
  padding: 15px 20px; /* was 40px 50px — reduced top/bottom and side padding */
}


.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

.footer-logo img {
  width: 150px;   /* was 100px */
  height: 150px;  /* was 100px */
  border-radius: 50%;
  background-color: #254E1F;
  padding: 10px;
  margin-left: 50px;
}


.footer-links h3,
.footer-contact h3 {
  color: #FDEDB5;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-links p,
.footer-contact p {
  color: #E7EEEB;
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.donate-small {
  display: inline-block;
  background-color: #FDEDB5;
  color: #254E1F;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.footer-bottom {
  font-size: 0.9rem;
  color: #E7EEEB;
  font-family: 'Newsreader', serif;
  margin-top: -60px;
}

.footer-bottom p {
  margin: 5px 100px;
}

.donate-small:hover {
  background-color: #FFF3C1;
  transform: translateY(-2px);
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons img {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}
/* ============ FOOTER — NEAT, GRID-BASED LAYOUT ============ */

/* Base tweaks (apply everywhere) */
.footer {
  background-color: #254E1F;
  color: #E7EEEB;
  padding: 28px 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;  /* desktop */
  align-items: start;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-logo img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-color: #254E1F;
  padding: 8px;
  margin: 0; /* remove left offset */
  display: block;
}

.footer-links h3,
.footer-contact h3 {
  color: #FDEDB5;
  font-size: 1.25rem;
  margin: 0 0 10px 0;
}

.footer-links p,
.footer-contact p {
  color: #E7EEEB;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 14px 0;
}

.footer .donate-small {
  display: inline-block;
  margin-top: 6px;
  background-color: #FDEDB5;
  color: #254E1F;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.footer .donate-small:hover {
  background-color: #FFF3C1;
  transform: translateY(-1px);
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}

.social-icons img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  transition: transform 0.2s ease;
}
.social-icons img:hover { transform: scale(1.06); }

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(231, 238, 235, 0.25);
  margin-top: 22px;
  padding-top: 12px;
  font-size: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-content: center;
  text-align: center;
}

.footer-bottom p { margin: 0; }

/* ====== Tablet / half-screen desktop (~768px–1024px) ====== */
@media (max-width: 1024px) and (min-width: 769px) {
  .footer {
    padding: 24px 20px;
  }

  .footer-content {
    grid-template-columns: repeat(3, 1fr); /* keep 3 columns, just tighter */
    gap: 20px;
  }

  .footer-logo img {
    width: 110px;
    height: 110px;
  }

  .footer-links h3,
  .footer-contact h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
  }

  .footer-links p,
  .footer-contact p {
    font-size: 0.95rem;
  }

  .donate-small {
    font-size: 0.9rem;
    padding: 8px 14px;
  }

  .social-icons img {
    width: 38px;
    height: 38px;
  }

  .footer-bottom {
    font-size: 0.9rem;
    margin-top: 18px;
    padding-top: 10px;
  }
}


/* ====== Small phones (≤480px) ====== */
@media (max-width: 480px) {
  .footer {
    padding: 18px 12px;
  }

  .footer-content {
    gap: 14px;
  }

  .footer-logo img {
    width: 86px;
    height: 86px;
  }

  .footer-links h3,
  .footer-contact h3 {
    font-size: 1.05rem;
  }

  .footer-links p,
  .footer-contact p {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .footer .donate-small {
    font-size: 0.9rem;
    padding: 8px 14px;
  }

  .social-icons img {
    width: 34px;
    height: 34px;
    border-radius: 6px;
  }

  .footer-bottom {
    font-size: 0.85rem;
    gap: 6px 10px;
  }
}

/* Make mobile menu appear correctly */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%; /* places menu right under navbar */
    left: 0;
    right: 0;
    background-color: #254E1F; /* your navbar color */
    padding: 16px 30px;
    gap: 16px;
    z-index: 1000; /* makes sure it shows above content */
  }

  .nav-links.active {
    display: flex;
  }
}
