/* =========================
   Global Styles
========================= */
body {
  margin: 0;
  padding: 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background-color: #ffffff;
  color: #333333;
  line-height: 1.6;
}
.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  background-color: #F9D5D3; 
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
/* Logo */
.main-nav .logo img {
  height: 50px;
  border-radius: 50px;
  transition: transform 0.3s;
}

.main-nav .logo img:hover {
  transform: scale(1.05);
}

/* Navigation Links */
.main-nav .nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.main-nav .nav-links li a {
  text-decoration: none;
  color: #151415;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

/* Hover effect */
.main-nav .nav-links li a:hover {
  background-color: #ce466c;
  color: #fff;
  transform: translateY(-1px);
}

/* Active page highlight */
.main-nav .nav-links li a.active {
  background-color: #d21a54;
  color: #fff;
  font-weight: 700;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #d21a54;
  border-radius: 2px;
  transition: all 0.3s ease;
}



/* =========================
   Main Layout
========================= */
main {
  padding: 0;
}

/* =========================
   Intro / Hero Carousel
========================= */
.intro {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
}

.slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* Overlay */
.intro .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

/* Content stays on top */
.intro .content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

/* Hero Text */
.intro .content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.intro .content p {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* CTA Button */
.learn-more-button-homepage {
  display: inline-block;
  padding: 12px 30px;
  /* background: linear-gradient(135deg, #ff6ec4, #7873f5); */
  background-color: #d21a54;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.learn-more-button-homepage:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}



/* =========================
   Image Utility (if needed)
========================= */
.home-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 12px;
}

/* =========================
   Mission Section
========================= */
.mission-homepage {
  padding: 80px 20px;
  text-align: center;
  background-color: #f2e0df;
}

.mission-homepage h2 {
  font-size: 2.2rem;
  margin-bottom: 50px;
  font-weight: 700;
  color: #222;
}

/* Grid layout */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Individual cards */
.mission-card {
  background-color: #ffffff;
  padding: 40px 25px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* Icons */
.mission-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

/* Text */
.mission-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}

/* =========================
   Our Projects Section
========================= */
.our-projects-homepage {
  padding: 90px 20px;
  background-color: #ffffff;
}

/* Header */
.projects-header {
  max-width: 1200px;
  margin: 0 auto 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.projects-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
}

.view-all {
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: #555;
  transition: color 0.3s ease;
}

.view-all:hover {
  color: #000;
}

/* Grid */
.projects-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* Card */
.project-card {
  background-color: #fafafa;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.09);
}

/* Image */
.project-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Content */
.project-content {
  padding: 30px 25px;
  text-align: left;
}

.project-content h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #222;
}

.project-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

/* Link */
.project-link {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #000;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.project-link:hover {
  border-color: #000;
}
/* =========================
   Events Section
========================= */
.events-homepage {
  padding: 90px 20px;
  background-color: #f2e0df;
}

/* Header */
.events-header {
  max-width: 1100px;
  margin: 0 auto 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.events-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
}

/* List */
.events-list {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 25px;
}

/* Event Card */
.event-card {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* Date (Calendar Look) */
.event-date {
  min-width: 80px;
  text-align: center;
  background-color: #ce466cde;
  color: #ffffff;
  border-radius: 12px;
  padding: 12px 10px;
  margin-right: 25px;
}

.event-month {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-day {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
}

/* Details */
.event-details h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
  color: #222;
}

.event-location {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 12px;
}

/* Link */
.event-link {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #000;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.event-link:hover {
  border-color: #000;
}
/* =========================
   Get Involved CTA
========================= */
.get-involved {
  padding: 100px 20px;
  background-color: #fafafa;
  color: #000;
  text-align: center;
  padding-bottom: 50px;
  padding-top: 50px;
}

.get-involved-content {
  max-width: 700px;
  margin: 0 auto;
}

.get-involved h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.get-involved p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #000;
  margin-bottom: 40px;
}

/* Button */
.involved-btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background-color: #d21a54;
  border-radius: 40px;
  transition: all 0.3s ease;
}

.involved-btn:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

/* =========================
   Stay Connected Section
========================= */
.stay-connected {
  padding: 90px 20px;
  background-color: #fafafa;
  text-align: center;
}

.stay-connected-content {
  max-width: 600px;
  margin: 0 auto;
}

.stay-connected h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

.stay-connected p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 35px;
}

/* Newsletter Form */
.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.newsletter-form input {
  flex: 1;
  max-width: 360px;
  padding: 14px 18px;
  font-size: 15px;
  border-radius: 40px;
  border: 1px solid #ddd;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-form input:focus {
  border-color: #000;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.newsletter-form button {
  padding: 14px 30px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 40px;
  border: none;
  background-color: #151415;
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #000000;
  transform: translateY(-2px);
}

/* =========================
   Footer
========================= */
.site-footer {
  position: relative;
  background: #F9D5D3;   
  backdrop-filter: blur(12px);          
  color: #000;
  padding: 50px 20px 30px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  /* border-radius: 20px 20px 0 0; */
  box-shadow: 0 -6px 30px rgba(0,0,0,0.25);
  z-index: 10;
}

/* Container: left + right */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

/* Left Section: Narrative + Social */
.footer-left {
  flex: 1 1 450px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Narrative */
.footer-narrative {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #000;
  padding-top: 20px;

}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: #ce466c;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.footer-social a i {
  display: block;
  line-height: 1;
}

.footer-social a:hover {
  background: linear-gradient(135deg, #ff6ec4, #7873f5);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  color: #fff;
}

/* Right Section: Quick Links */
.footer-left {
  flex: 2; /* 2 parts out of 3 */
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-right {
  flex: 1; /* 1 part out of 3 */
  display: flex;
  flex-direction: column; 
  align-items: flex-start; 
  margin-left: 50px;
}

.footer-links {
  display: flex;          
  flex-direction: column; 
  gap: 12px;              
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li a {
  color: #000;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links li a:hover {
  color: #fff;
  transform: translateY(-2px);
}

/* Footer Copyright */
.footer-copy {
  font-size: 0.8rem;
  color: #707070;
  margin-top: 25px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 12px;
}

/*About Us*/
/* =========================
   About Us Section
========================= */
.about-us {
  padding: 100px 20px;
  background-color: #ffffff;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Text Content */
.about-text {
  flex: 1.2;
}

.about-text h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #151415;
}

.about-intro {
  font-size: 1.1rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.7;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 18px;
}

/* Image */
.about-image {
  flex: 0.8;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  object-fit: cover;
}


 /*About Us Vision Mission Section*/
/* =========================
   Mission & Vision Section
========================= */
.mission-vision-section {
  background-color: #fff7f9; /* soft blush tint */
  padding: 80px 20px;
}

.mission-vision-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* Card Styling */
.mv-card {
  background: #ffffff;
  padding: 48px 40px;
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(206, 70, 108, 0.12);
  text-align: center;
  border-top: 4px solid #ce466c; /* elegant accent */
}

.mv-card h3 {
  font-size: 1.55rem;
  margin-bottom: 18px;
  font-weight: 600;
  color: #ce466c;
  letter-spacing: 0.3px;
}

.mv-card p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #555;
}

.core-values-section {
  background-color: #fff7f9;
  padding: 90px 20px;
}

.core-values-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.core-values-container h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 20px;
}

.core-values-container h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #ce466c;
  margin: 16px auto 0;
  border-radius: 2px;
}

.core-values-intro {
  max-width: 720px;
  margin: 0 auto 60px;
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
}

/* Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}

/* Cards */
.values-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(206, 70, 108, 0.08);
  border-top: 4px solid #ce466c;
  text-align: center;
}

.values-icon {
  display: inline-block;
  font-size: 1.8rem;
  color: #ce466c;
  margin-bottom: 12px;
}

.values-card h3 {
  font-size: 1.4rem;
  color: #ce466c;
  font-weight: 600;
  margin-bottom: 16px;
}

.values-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}


/* =========================
   Meet the Team Section
========================= */
.team-section {
  background-color: #fff7f9;
  padding: 90px 20px;
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.team-container h2 {
  font-size: 2.2rem;
  color: #111;
  font-weight: 600;
  margin-bottom: 16px;
}

.team-container h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #ce466c;
  margin: 16px auto 0;
  border-radius: 2px;
}

.team-intro {
  font-size: 1.05rem;
  color: #555;
  max-width: 720px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

/* Grid Layout */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}

/* Individual Team Member */
.team-member {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(206, 70, 108, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 16px;
  border: 3px solid #ce466c;
}

.team-member h3 {
  font-size: 1.25rem;
  color: #ce466c;
  font-weight: 600;
  margin-bottom: 6px;
}

.team-member .role {
  font-size: 0.95rem;
  font-weight: 500;
  color: #555;
  margin-bottom: 12px;
}

.team-member .bio {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

/* Hover Effect */
.team-member:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(206, 70, 108, 0.12);
}


/* =========================
   Projects Page Hero
========================= */
.projects-hero {
  position: relative;
  height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('amwosh-images/about4.jpg') no-repeat center / cover;
  color: #ffffff;
}

/* Dark overlay for readability */
.projects-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* Content */
.projects-hero-content {
  position: relative;
  max-width: 720px;
  padding: 20px;
}

.projects-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.4px;
}

.projects-hero-content p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #f2f2f2;
}

/* Accent underline */
.projects-hero-content h1::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background-color: #ce466c;
  margin: 18px auto 0;
  border-radius: 2px;
}

/* =========================
   Projects Page Section
========================= */
.projects-page-section {
  background-color: #ffffff;
  padding: 100px 20px;
}

.projects-page-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.projects-page-title {
  font-size: 2.3rem;
  font-weight: 600;
  color: #111;
}

.projects-page-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  background-color: #ce466c;
  margin: 18px auto 0;
  border-radius: 2px;
}

.projects-page-intro {
  max-width: 760px;
  margin: 24px auto 70px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
}

/* Grid */
.projects-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

/* Card */
.projects-page-card {
  background-color: #fff7f9;
  border-radius: 18px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 14px 34px rgba(206, 70, 108, 0.1);
  border-top: 4px solid #ce466c;
  display: flex;
  flex-direction: column;
}

.projects-page-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.projects-page-card h3 {
  font-size: 1.35rem;
  color: #ce466c;
  font-weight: 600;
  margin: 22px 22px 10px;
}

.projects-page-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
  margin: 0 22px 20px;
  flex-grow: 1;
}

/* Learn More */
.projects-page-link {
  display: inline-block;
  margin: 0 22px 26px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ce466c;
  text-decoration: none;
}

.projects-page-link:hover {
  text-decoration: underline;
}

/* =========================
   Events Page Intro
========================= */
.events-page-intro {
  position: relative;
  height: 50vh;
  background: url("amwosh-images/events-1.jpg") no-repeat center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}

.events-page-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.events-page-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 20px;
}

.events-page-content h1 {
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.events-page-content h1::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  background-color: #ce466c;
  margin: 16px auto 0;
  border-radius: 2px;
}

.events-page-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #f3f3f3;
}

/* =========================
   Events Page Section
========================= */
.events-page-section {
  padding: 80px 20px;
  background-color: #ffffff;
}

.events-page-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Grid */
.events-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Card */
.events-page-card {
  background-color: #eeaabb4a;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(206, 70, 108, 0.08);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.events-page-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(206, 70, 108, 0.15);
}

/* Date */
.events-page-date {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #ce466c;
  font-size: 0.9rem;
  margin-bottom: 12px;
  gap: 8px;
}

.events-page-date i {
  font-size: 1.1rem;
}

/* Details */
.events-page-details h3 {
  font-size: 1.35rem;
  color: #111;
  margin-bottom: 6px;
}

.events-page-time,
.events-page-location {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 10px;
}

/* Register Button */
.events-page-register-btn {
  display: inline-block;
  padding: 10px 22px;
  background-color: #ce466c;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: background 0.3s;
}

.events-page-register-btn:hover {
  background-color: #a73553;
}

/* =========================
   Get Involved Page Intro
========================= */
.get-involved-page-intro {
  position: relative;
  height: 50vh;
  background: url("amwosh-images/about2.jpg") no-repeat center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
}

.get-involved-page-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.get-involved-page-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 20px;
}

.get-involved-page-content h1 {
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.get-involved-page-content h1::after {
  content: "";
  width: 64px;
  height: 3px;
  background-color: #ce466c;
  display: block;
  margin: 16px auto 0;
  border-radius: 2px;
}

.get-involved-page-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #f2f2f2;
}

/* =========================
   Ways to Donate (with QR)
========================= */
.donate-options {
  padding: 90px 20px;
  background-color: #ffffff;
}

.donate-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.donate-container h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.donate-container h2::after {
  content: "";
  width: 64px;
  height: 3px;
  background-color: #ce466c;
  display: block;
  margin: 16px auto 0;
  border-radius: 2px;
}

.donate-subtitle {
  max-width: 720px;
  margin: 20px auto 70px;
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
}

/* Grid */
.donate-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* Card */
.donate-card {
  background-color: #fff7f9;
  padding: 34px 26px;
  border-radius: 20px;
  box-shadow: 0 18px 36px rgba(206, 70, 108, 0.08);
  text-align: center;
}

/* QR */
.donate-qr {
  width: 200px;
  height: 200px;
  margin: 0 auto 18px;
  background: #ffffff;
  padding: 10px;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.donate-qr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Text */
.donate-card h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: #ce466c;
  margin-bottom: 10px;
}

.donate-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 10px;
  line-height: 1.6;
}

.donate-note {
  display: block;
  font-size: 0.9rem;
  color: #333;
  font-weight: 500;
  line-height: 1.6;
}

/* =========================
   Get Involved Options
========================= */
.get-involved-options {
  padding: 90px 20px;
  background-color: #ffffff;
}

.get-involved-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.get-involved-volunteer-link{
  text-decoration: none;
  color: inherit;
}
.get-involved-container h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.get-involved-container h2::after {
  content: "";
  width: 64px;
  height: 3px;
  background-color: #ce466c;
  display: block;
  margin: 16px auto 0;
  border-radius: 2px;
}

.get-involved-subtitle {
  max-width: 720px;
  margin: 20px auto 70px;
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
}

/* Grid */
.get-involved-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

/* Card */
.get-involved-card {
  padding: 36px 28px;
  border-radius: 18px;
  box-shadow: 0 16px 32px rgba(206, 70, 108, 0.08);
  text-align: left;
  cursor: pointer;
  background-color: #eeaabb4a;
  border-radius: 16px;
  overflow: hidden;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.get-involved-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(206, 70, 108, 0.15);
}
.get-involved-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ce466c;
  margin-bottom: 14px;
}

.get-involved-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 22px;
}


/* =========================
   Responsive
========================= */
@media (max-width: 900px) {
  .main-nav {
    padding: 15px 20px;
  }

  .main-nav .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #ffffff;
    flex-direction: column;
    width: 220px;
    display: none;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }

  .main-nav .nav-links li {
    border-bottom: 1px solid #eee;
  }

  .main-nav .nav-links li a {
    padding: 12px 20px;
  }

  .hamburger {
    display: flex;
  }

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

@media (max-width: 900px) {
  .intro .content h1 { font-size: 2.2rem; }
  .intro .content p { font-size: 1rem; }
  .learn-more-button-homepage { padding: 10px 25px; font-size: 0.95rem; }
}

@media (max-width: 500px) {
  .intro { height: 70vh; }
  .intro .content h1 { font-size: 1.9rem; }
  .intro .content p { font-size: 0.95rem; }
  .learn-more-button-homepage { padding: 8px 20px; font-size: 0.9rem; }
}


@media (max-width: 900px) {
  .mission-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1000px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .projects-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-content {
    text-align: center;
  }
}
/*Events Section Responsive*/
@media (max-width: 700px) {
  .events-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .event-card {
    flex-direction: column;
    text-align: center;
  }

  .event-date {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

/*Get Involved Homepage */
@media (max-width: 600px) {
  .get-involved h2 {
    font-size: 2rem;
  }

  .get-involved p {
    font-size: 1rem;
  }
}
/* Stay Connected Homepage*/
@media (max-width: 600px) {
  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }
}
/* Footer */

@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left, .footer-right {
    flex: 1 1 100%;
  }

  .footer-links {
    justify-content: center;
    gap: 12px;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }

  .footer-narrative {
    font-size: 0.9rem;
  }
}
/* About Us Page*/
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .about-text h2 {
    font-size: 2rem;
  }

  .about-intro {
    font-size: 1.05rem;
  }

  .about-text p {
    font-size: 0.95rem;
  }

  .about-image {
    width: 100%;
  }
}
/* mission vision */
@media (max-width: 768px) {
  .mission-vision-container {
    grid-template-columns: 1fr;
  }

  .mv-card {
    padding: 40px 30px;
  }
}

/* Core Values */
@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}
/* Responsive */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-container h2 {
    font-size: 2rem;
  }
}


/* Projects Page Intro */
@media (max-width: 768px) {
  .projects-hero {
    height: 45vh;
  }

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

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


/* Projects Page Cards*/
@media (max-width: 1024px) {
  .projects-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .projects-page-grid {
    grid-template-columns: 1fr;
  }

  .projects-page-title {
    font-size: 2rem;
  }
}
/* Events Page Intro */
@media (max-width: 768px) {
  .events-page-intro {
    height: 40vh;
  }

  .events-page-content h1 {
    font-size: 2.1rem;
  }

  .events-page-content p {
    font-size: 1rem;
  }
}

/* Events Page Cards*/
@media (max-width: 1024px) {
  .events-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .events-page-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .get-involved-page-intro {
    height: 40vh;
  }

  .get-involved-page-content h1 {
    font-size: 2.1rem;
  }

  .get-involved-page-content p {
    font-size: 1rem;
  }
}

@media (max-width: 1024px) {
  .donate-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .donate-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .get-involved-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .get-involved-grid {
    grid-template-columns: 1fr;
  }

  .get-involved-card {
    text-align: center;
  }
}
