/* GLOBAL */

body{
  margin:0;
  background:#FFFBF2;
  font-family:'Poppins', sans-serif;
  color:#333;
}

/* HEADINGS */

h1,h2,h3{
  font-family:'Fraunces', serif;
  font-weight:600;
}

/* HEADER */

header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 40px;
  background:#9a719d;
  border-bottom:4px solid #ffc560;
}

/* LOGO */

.logo img{
  height:120px;
}

/* NAVIGATION */

nav ul{
  list-style:none;
  display:flex;
  gap:25px;
  align-items:center;
  margin:0;
  padding:0;
}

nav li a{
  text-decoration:none;
  color:white;
  font-weight:600;
  font-size:18px;
  padding:16px 26px;
  border-radius:30px;
  transition:all 0.25s ease;
  background:rgba(255,255,255,0);
}

nav li:hover > a{
  background:rgba(255,255,255,0.25);
  transform:scale(1.08);
}

/* SUPPORT BUTTON */

.support-button a{
  background:#ffc560;
  color:#333;
  font-weight:600;
  padding:12px 20px;
  border-radius:30px;
  transition:all 0.25s ease;
}

.support-button a:hover{
  background:#ffb347;
}

/* DROPDOWNS */

.dropdown{
  position:relative;
}

.dropdown-content{
  display:none;
  position:absolute;
  top:110%;
  left:0;
  background:#ffffff;
  padding:10px 0;
  min-width:140px;
  border-radius:12px;
  border:2px solid #e5d4f2;
  box-shadow:0 4px 10px rgba(0,0,0,0.1);
  z-index:1000;
}

.dropdown-content li a{
  display:block;
  padding:10px 16px;
  color:#9a719d;
  text-decoration:none;
  border-radius:12px;
  background:rgba(154,113,157,0.05);
  transition:all 0.2s ease;
}

.dropdown-content li a:hover{
  background:rgba(154,113,157,0.15);
  transform:scale(1.05);
}

.dropdown:hover .dropdown-content{
  display:block;
}

/* HERO SECTION */

.hero{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:60px 80px 45px 80px;
  background:
    linear-gradient(rgba(154,113,157,0.75), rgba(154,113,157,0.75)),
    url("crochet-pattern.png");
  background-size:cover, 600px;
  background-repeat:no-repeat, repeat;
}


.mission{
  width:40%;
  background:rgba(255,213,120,0.35);
  padding:18px 35px 30px 35px;
  border-radius:18px;
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
}

.mission h3{
  color:#fff2cf;
  text-align:center;
  margin-bottom:16px;
  font-weight:700;
  font-size:32px;
}



.mission p{
  color:#fff2cf;
  line-height:1.6;
}

.headline{
  width:50%;
  text-align:right;
  display:flex;
  align-items:center;
  justify-content:flex-end;
}

.headline h2{
  font-family:'Clash Display', sans-serif;
  font-size:64px;
  color:#fde5b1;
  line-height:1.1;
}

/* DIVIDERS */

.hero-divider,
.footer-wave{
  line-height:0;
  overflow:hidden;
}

.hero-divider svg,
.footer-wave svg{
  display:block;
  width:100%;
  height:100px;
}

.hero-divider path{
  fill:#fff6e0;
}

.footer-wave path{
  fill:#9a719d;
}
/* HOME IMPACT SECTION */

.home-impact{
  background:#fff6e0;
  padding:10px 0 20px 0;
}

/* STATS */

.stats{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  max-width:1400px;
  margin:30px auto 20px auto;
  gap:40px;
  text-align:center;
  padding:0 60px;
}

.stat h3{
  font-size:48px;
  color:#9a719d;
  margin:0;
}

.stat p{
  margin-top:6px;
}






/* PHOTOS */

.photos{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  max-width:1400px;
  margin:0 auto 100px auto;
  gap:40px;
  padding:0 60px;
}

.photo-block{
  position:relative;
  background:#fff6e0;
  padding:20px;
  border-radius:16px;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
  transition:transform 0.25s ease, box-shadow 0.25s ease;
  overflow:hidden;
}

.photo-block::after{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,0) 40%,
    rgba(79,45,94,0.75) 100%
  );
  pointer-events:none;
}

.photo-block:hover{
  transform:translateY(-8px);
  box-shadow:0 14px 28px rgba(0,0,0,0.12);
}

.photo-block img{
  width:100%;
  height:340px;
  object-fit:cover;
  border-radius:12px;
  transition:transform 0.35s ease;
}

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

.photo-stat{
  font-family:'Fraunces', serif;
  font-size:48px;
  color:#ffc560;
  margin-bottom:12px;
}

/* PAGE HERO */

.page-hero{
  background:#9a719d;
  padding:90px 20px;
  text-align:center;
  margin-bottom:50px;
}

.page-hero h1{
  font-size:54px;
  color:#fde5b1;
  margin-bottom:15px;
}

.page-hero p{
  color:#fff2cf;
  font-size:18px;
  max-width:750px;
  margin:auto;
  line-height:1.7;
}







/* MOBILE */

@media screen and (max-width:768px){
  header{
    flex-direction:column;
    gap:20px;
    padding:20px;
  }

  .logo img{
    height:95px;
  }

  nav ul{
    flex-direction:column;
    background:#9a719d;
    width:100%;
  }

  .dropdown-content{
    position:relative;
    top:0;
    left:0;
    min-width:100%;
  }

  .hero{
    flex-direction:column;
    gap:30px;
    padding:50px 25px;
  }

  .mission,
  .headline{
    width:100%;
    text-align:left;
  }

  .headline h2{
    font-size:42px;
  }

  .stats,
  .photos{
    grid-template-columns:1fr;
    padding:0 20px;
  }

  .photo-block img{
    height:260px;
  }
  .footer-content{
    grid-template-columns:1fr;
    gap:28px;
    padding:30px 0 10px 0;
  }

  .footer-brand p{
    max-width:none;
  }

  .footer-link{
    width:100%;
    box-sizing:border-box;
  }

      .team-page{
    padding:50px 20px 70px 20px;
  }

  .team-heading{
    margin-bottom:45px;
  }

  .team-heading h1{
    font-size:42px;
  }

  .team-heading p{
    font-size:16px;
  }

  .team-grid{
    grid-template-columns:1fr;
    gap:28px;
  }

  .team-card{
    padding:24px;
  }

  .team-name{
    font-size:28px;
  }

  .team-card img{
    height:340px;
  }

  .team-role{
    font-size:20px;
  }

    .about-hero{
    padding:70px 20px 50px 20px;
  }

  .about-hero h1{
    font-size:44px;
  }

  .about-hero p{
    font-size:16px;
  }

  .about-story{
    padding:30px 20px 70px 20px;
  }

  .story-block,
  .story-block.reverse{
    grid-template-columns:1fr;
    gap:24px;
    margin-bottom:40px;
  }

  .story-block.reverse .story-text,
  .story-block.reverse .story-image{
    order:initial;
  }

  .story-text{
    padding:24px;
  }

  .story-text h2{
    font-size:30px;
  }

  .story-text p{
    font-size:16px;
  }

  .story-image img{
    height:280px;
  }

  .about-closing{
    padding:30px 22px;
  }

  .about-closing h2{
    font-size:34px;
  }

  .about-closing p{
    font-size:16px;
  }

    .projects-hero{
    padding:70px 20px 50px 20px;
  }

  .projects-hero h1{
    font-size:44px;
  }

  .projects-hero p{
    font-size:16px;
  }

  .projects-page{
    padding:30px 20px 70px 20px;
  }

  .projects-timeline::before{
    left:24px;
  }

  .project-entry{
    grid-template-columns:1fr;
    gap:20px;
    margin-bottom:45px;
    padding-left:48px;
  }

  .project-entry::before{
    left:17px;
    top:10px;
  }

  .project-year{
    text-align:left;
    font-size:28px;
    padding-top:0;
  }

  .project-card{
    padding:24px;
  }

  .project-card h2{
    font-size:30px;
  }

  .project-card p{
    font-size:16px;
  }

  .project-gallery{
    grid-template-columns:1fr;
  }

  .project-gallery img{
    height:240px;
  }

    .chapter-page{
    padding:60px 20px 70px 20px;
  }

  .chapter-section{
    grid-template-columns:1fr;
    gap:34px;
    min-height:auto;
  }

  .chapter-left h1{
    font-size:42px;
  }

  .chapter-intro{
    font-size:16px;
  }

  .chapter-info-card{
    padding:24px;
  }

  .chapter-info-card h2{
    font-size:28px;
  }

  .chapter-info-card p{
    font-size:16px;
  }

  .chapter-cta-card{
    padding:30px 24px;
  }

  .chapter-cta-card h2{
    font-size:32px;
  }

  .chapter-cta-card p{
    font-size:16px;
  }

  .chapter-button{
    font-size:17px;
    width:100%;
    box-sizing:border-box;
  }

    .volunteer-page{
    padding:60px 20px 70px 20px;
  }

  .volunteer-section{
    grid-template-columns:1fr;
    gap:34px;
    min-height:auto;
  }

  .volunteer-left h1{
    font-size:42px;
  }

  .volunteer-intro{
    font-size:16px;
  }

  .volunteer-info-card{
    padding:24px;
  }

  .volunteer-info-card h2{
    font-size:28px;
  }

  .volunteer-info-card p{
    font-size:16px;
  }

  .volunteer-cta-card{
    padding:30px 24px;
  }

  .volunteer-cta-card h2{
    font-size:32px;
  }

  .volunteer-cta-card p{
    font-size:16px;
  }

  .volunteer-button{
    font-size:17px;
    width:100%;
    box-sizing:border-box;
  }
    .partner-page{
    padding:60px 20px 70px 20px;
  }

  .partner-section{
    grid-template-columns:1fr;
    gap:34px;
    min-height:auto;
  }

  .partner-left h1{
    font-size:42px;
  }

  .partner-intro{
    font-size:16px;
  }

  .partner-info-card{
    padding:24px;
  }

  .partner-info-card h2{
    font-size:28px;
  }

  .partner-info-card p{
    font-size:16px;
  }

  .partner-cta-card{
    padding:30px 24px;
  }

  .partner-cta-card h2{
    font-size:32px;
  }

  .partner-cta-card p{
    font-size:16px;
  }

  .partner-button{
    font-size:17px;
    width:100%;
    box-sizing:border-box;
  }

    .network-section{
    grid-template-columns:1fr;
    padding:0 20px 70px 20px;
    gap:24px;
  }

  .network-column{
    padding:24px;
  }

  .network-column h2{
    font-size:30px;
  }

  .network-list li{
    font-size:16px;
  }

    .support-page{
    padding:0 20px 70px 20px;
  }

  .support-hero{
    padding:70px 0 36px 0;
  }

  .support-hero h1{
    font-size:44px;
  }

  .support-hero p{
    font-size:16px;
  }

  .support-main-section{
    grid-template-columns:1fr;
    gap:34px;
    margin-bottom:50px;
  }

  .support-left h2{
    font-size:32px;
  }

  .support-intro{
    font-size:16px;
  }

  .support-info-card{
    padding:24px;
  }

  .support-info-card h3{
    font-size:28px;
  }

  .support-info-card p{
    font-size:16px;
  }

  .support-cta-card{
    padding:30px 24px;
  }

  .support-cta-card h2{
    font-size:32px;
  }

  .support-cta-card p{
    font-size:16px;
  }

  .support-main-button{
    font-size:17px;
    width:100%;
    box-sizing:border-box;
  }

  .support-section-heading h2{
    font-size:36px;
  }

  .support-section-heading p{
    font-size:16px;
  }

  .sponsor-grid,
  .support-options-grid{
    grid-template-columns:1fr;
  }

  .sponsor-card{
    padding:28px 22px;
  }

  .sponsor-card h3{
    font-size:40px;
  }

  .sponsor-card p{
    font-size:16px;
  }

  .support-option-card{
    padding:24px;
  }

  .support-option-card h3{
    font-size:24px;
  }

  .support-option-card p{
    font-size:16px;
  }

  .support-quick-donate{
  flex-direction:column;
  align-items:center;
}

.donate-button{
  width:220px;
  text-align:center;
  
}

  .support-hero-grid{
  grid-template-columns:1fr;
  gap:40px;
}

.support-hero-left h1{
  font-size:44px;
}

.sponsor-box{
  padding:30px 24px;
}
}





/* FOOTER */

.site-footer{
  background:#9a719d;
  color:#fffdf8;
  padding:0 20px 24px 20px;
  position:relative;
  overflow:hidden;
}

.footer-content{
  max-width:1200px;
  margin:0 auto;
  padding:40px 0 10px 0;
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:50px;
}

.footer-brand h3{
  margin:0 0 14px 0;
  font-size:34px;
  color:#fde5b1;
}

.footer-brand p{
  margin:0;
  max-width:420px;
  line-height:1.8;
  color:#fdf4dc;
  font-size:15px;
}

.footer-links h4{
  margin:0 0 14px 0;
  font-size:20px;
  color:#fde5b1;
}

.footer-link{
  display:inline-flex;
  align-items:center;
  gap:12px;
  color:#fffdf8;
  text-decoration:none;
  font-weight:500;
  padding:10px 14px;
  border-radius:14px;
  background:rgba(255,255,255,0.08);
  transition:all 0.25s ease;
}

.footer-link:hover{
  transform:translateY(-3px);
  background:rgba(255,197,96,0.25);
}

.footer-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:36px;
  height:36px;
  min-width:36px;
  min-height:36px;
  flex-shrink:0;
  border-radius:50%;
  background:rgba(255,197,96,0.25);
  color:#ffc560;
}

.footer-icon svg{
  width:18px;
  height:18px;
  display:block;
}

.footer-bottom{
  max-width:1200px;
  margin:25px auto 0 auto;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,0.25);
  text-align:center;
}

.footer-bottom p{
  margin:0;
  font-size:14px;
  color:#f7ecd3;
}





/* OUR TEAM PAGE */
.team-page{
  background:
    linear-gradient(rgba(255,246,224,0.72), rgba(255,246,224,0.72)),
    url("crochet-pattern.png");
  background-size:cover, 500px;
  background-repeat:no-repeat, repeat;
  padding:100px 40px 90px 40px;
}

.team-heading{
  text-align:center;
  margin-bottom:65px;
}

.team-heading h1{
  font-size:56px;
  color:#9a719d;
  margin:0 0 14px 0;
  position:relative;
  display:inline-block;
}

.team-heading h1::after{
  content:"";
  display:block;
  width:70px;
  height:4px;
  background:#ffc560;
  margin:14px auto 0 auto;
  border-radius:2px;
}

@keyframes dividerGrow{
  to{
    transform:scaleX(1);
  }
}

.team-heading p{
  font-size:18px;
  color:#6f5871;
  max-width:720px;
  margin:0 auto;
  line-height:1.7;
}

.team-grid{
  max-width:1400px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:45px;
  align-items:start;
}

.team-card{
  background:rgba(255,255,255,0.42);
  border:2px solid rgba(154,113,157,0.18);
  border-radius:24px;
  padding:30px;
  text-align:left;
  box-shadow:0 10px 24px rgba(0,0,0,0.08);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
  transition:transform 0.25s ease, box-shadow 0.25s ease;
}

.team-card:hover{
  transform:translateY(-8px);
  box-shadow:0 16px 30px rgba(0,0,0,0.12);
}

.team-name{
  color:#9a719d;
  font-size:32px;
  line-height:1.2;
  margin:0 0 18px 0;
  font-family:'Fraunces', serif;
}

.team-card img{
  width:100%;
  height:420px;
  object-fit:cover;
  border-radius:18px;
  margin-bottom:24px;
  box-shadow:0 8px 18px rgba(0,0,0,0.08);
  transition:transform 0.35s ease;
}

.team-card:hover img{
  transform:scale(1.03);
}

.team-role{
  font-size:22px;
  color:#7f5b88;
  font-weight:600;
  line-height:1.35;
  margin:0 0 8px 0;
}

.team-experience{
  font-size:15px;
  color:#6f5871;
  line-height:1.6;
  margin:0;
}

.team-button-wrap{
  text-align:center;
  margin-top:55px;
}

.team-button{
  display:inline-block;
  background:#9a719d;
  color:#fffdf8;
  text-decoration:none;
  font-weight:600;
  font-size:17px;
  padding:16px 34px;
  border-radius:999px;
  box-shadow:0 10px 22px rgba(154,113,157,0.28);
  transition:transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.team-button:hover{
  background:#86618a;
  transform:translateY(-3px);
  box-shadow:0 14px 28px rgba(154,113,157,0.34);
}






/* ABOUT PAGE */

.about-hero{
  background:
    linear-gradient(rgba(255,246,224,0.72), rgba(255,246,224,0.72)),
    url("crochet-pattern.png");
  background-size:cover, 500px;
  background-repeat:no-repeat, repeat;
  padding:95px 40px 70px 40px;
  text-align:center;
}

.about-hero-content{
  max-width:850px;
  margin:0 auto;
}

.about-hero h1{
  font-size:58px;
  color:#9a719d;
  margin:0 0 18px 0;
  display:inline-block;
  position:relative;
}

.about-hero h1::after{
  content:"";
  display:block;
  width:78px;
  height:4px;
  background:#ffc560;
  margin:14px auto 0 auto;
  border-radius:2px;
}

.about-hero p{
  font-size:18px;
  line-height:1.8;
  color:#6f5871;
  margin:0 auto 14px auto;
}

.about-story{
  position:relative;
  background:
    linear-gradient(rgba(255,246,224,0.72), rgba(255,246,224,0.72)),
    url("crochet-pattern.png");
  background-size:cover, 500px;
  background-repeat:no-repeat, repeat;
  padding:40px 40px 90px 40px;
}


/* STORY TIMELINE */

.story-block{
  position:relative;
  max-width:1250px;
  margin:0 auto 70px auto;
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:55px;
  align-items:center;
  padding-top:20px;
  z-index:1;
}

.story-block::before{
  content:"";
  position:absolute;
  left:50%;
  top:40px;
  width:14px;
  height:14px;
  background:#ffc560;
  border:4px solid #9a719d;
  border-radius:50%;
  transform:translateX(-50%);
  z-index:2;
}

/* purple connector line */

.story-block.reverse{
  grid-template-columns:0.9fr 1.1fr;
}

.story-block.reverse .story-text{
  order:2;
}

.story-block.reverse .story-image{
  order:1;
}
.story-text{
  background:rgba(255,255,255,0.45);
  border:2px solid rgba(154,113,157,0.15);
  border-radius:24px;
  padding:34px;
  box-shadow:0 10px 24px rgba(0,0,0,0.06);
  backdrop-filter:blur(4px);
  -webkit-backdrop-filter:blur(4px);
}

.story-text h2{
  font-size:38px;
  color:#9a719d;
  margin:0 0 18px 0;
  line-height:1.2;
}

.story-text p{
  font-size:17px;
  line-height:1.8;
  color:#5d4c5f;
  margin:0 0 16px 0;
}

.story-text p:last-child{
  margin-bottom:0;
}

.story-image img{
  width:100%;
  height:420px;
  object-fit:cover;
  border-radius:24px;
  box-shadow:0 12px 28px rgba(0,0,0,0.10);
  transition:transform 0.35s ease, box-shadow 0.35s ease;
}

.story-image img:hover{
  transform:scale(1.02);
  box-shadow:0 16px 32px rgba(0,0,0,0.14);
}

.about-closing{
  max-width:900px;
  margin:20px auto 0 auto;
  text-align:center;
  background:rgba(255,255,255,0.45);
  border:2px solid rgba(154,113,157,0.15);
  border-radius:26px;
  padding:42px 34px;
  box-shadow:0 10px 24px rgba(0,0,0,0.06);
}

.about-closing h2{
  font-size:42px;
  color:#9a719d;
  margin:0 0 18px 0;
}

.about-closing p{
  font-size:18px;
  line-height:1.8;
  color:#5d4c5f;
  margin:0 0 14px 0;
}

.about-closing p:last-child{
  margin-bottom:0;
}

/* STORY SCROLL ANIMATION */

.story-block{
  opacity:0;
  transform:translateY(40px);
  animation:storyFade 0.9s ease forwards;
}

.story-block::before{
  transition:all 0.25s ease;
}

.story-block:hover::before{
  transform:translateX(-50%) scale(1.3);
  box-shadow:0 0 10px rgba(255,197,96,0.8);
}

/* stagger the animations slightly */

.story-block:nth-child(1){ animation-delay:0.1s; }
.story-block:nth-child(2){ animation-delay:0.25s; }
.story-block:nth-child(3){ animation-delay:0.4s; }
.story-block:nth-child(4){ animation-delay:0.55s; }
.story-block:nth-child(5){ animation-delay:0.7s; }
.story-block:nth-child(6){ animation-delay:0.85s; }
.story-block:nth-child(7){ animation-delay:1s; }
.story-block:nth-child(8){ animation-delay:1.15s; }

@keyframes storyFade{
  to{
    opacity:1;
    transform:translateY(0);
  }
}
.story-timeline{
  position:relative;
}

.story-timeline::before{
  content:"";
  position:absolute;
  left:50%;
  top:58px;
  bottom:58px;
  width:3px;
  background:rgba(154,113,157,0.25);
  transform:translateX(-50%);
  z-index:0;
}



/* PAST PROJECTS PAGE */

.projects-hero{
  background:
    linear-gradient(rgba(255,246,224,0.72), rgba(255,246,224,0.72)),
    url("crochet-pattern.png");
  background-size:cover, 500px;
  background-repeat:no-repeat, repeat;
  padding:95px 40px 70px 40px;
  text-align:center;
}

.projects-hero-content{
  max-width:850px;
  margin:0 auto;
}

.projects-hero h1{
  font-size:58px;
  color:#9a719d;
  margin:0 0 18px 0;
  display:inline-block;
  position:relative;
}

.projects-hero h1::after{
  content:"";
  display:block;
  width:78px;
  height:4px;
  background:#ffc560;
  margin:14px auto 0 auto;
  border-radius:2px;
}

.projects-hero p{
  font-size:18px;
  line-height:1.8;
  color:#6f5871;
  margin:0 auto 14px auto;
}

.projects-page{
  background:
    linear-gradient(rgba(255,246,224,0.72), rgba(255,246,224,0.72)),
    url("crochet-pattern.png");
  background-size:cover, 500px;
  background-repeat:no-repeat, repeat;
  padding:40px 40px 90px 40px;
}

.projects-timeline{
  position:relative;
  max-width:1250px;
  margin:0 auto;
}

.projects-timeline::before{
  content:"";
  position:absolute;
  left:145px;
  top:0;
  bottom:0;
  width:3px;
  background:rgba(154,113,157,0.25);
}

.project-entry{
  position:relative;
  display:grid;
  grid-template-columns:120px 1fr;
  gap:50px;
  align-items:start;
  margin-bottom:70px;
}

.project-entry::before{
  content:"";
  position:absolute;
  left:138px;
  top:18px;
  width:14px;
  height:14px;
  background:#ffc560;
  border:4px solid #9a719d;
  border-radius:50%;
  z-index:2;
}

.project-year{
  text-align:right;
  font-family:'Fraunces', serif;
  font-size:34px;
  color:#9a719d;
  line-height:1;
  padding-top:8px;
}

.project-card{
  background:rgba(255,255,255,0.45);
  border:2px solid rgba(154,113,157,0.15);
  border-radius:24px;
  padding:32px;
  box-shadow:0 10px 24px rgba(0,0,0,0.06);
  backdrop-filter:blur(4px);
  -webkit-backdrop-filter:blur(4px);
}

.project-card h2{
  font-size:38px;
  color:#9a719d;
  margin:0 0 18px 0;
  line-height:1.2;
}

.project-card p{
  font-size:17px;
  line-height:1.8;
  color:#5d4c5f;
  margin:0 0 24px 0;
}

.project-gallery{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:22px;
}

.project-gallery img{
  width:100%;
  height:280px;
  object-fit:cover;
  border-radius:20px;
  box-shadow:0 10px 22px rgba(0,0,0,0.08);
  transition:transform 0.3s ease, box-shadow 0.3s ease;
}

.project-gallery img:hover{
  transform:scale(1.02);
  box-shadow:0 14px 28px rgba(0,0,0,0.12);
}

/* START A CHAPTER PAGE */

.chapter-page{
  background:
    linear-gradient(rgba(154,113,157,0.78), rgba(154,113,157,0.78)),
    url("crochet-pattern.png");
  background-size:cover, 500px;
  background-repeat:no-repeat, repeat;
  padding:90px 40px 100px 40px;
}

.chapter-section{
  max-width:1300px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.15fr 0.85fr;
  gap:60px;
  align-items:center;
  min-height:70vh;
}

.chapter-left{
  color:#fff8ea;
}

.chapter-left h1{
  font-size:60px;
  line-height:1.08;
  margin:0 0 18px 0;
  color:#fde5b1;
}

.chapter-divider{
  width:90px;
  height:4px;
  background:#ffc560;
  border-radius:2px;
  margin:0 0 28px 0;
}

.chapter-intro{
  font-size:19px;
  line-height:1.9;
  color:#fff4d8;
  max-width:700px;
  margin:0 0 30px 0;
}

.chapter-info-card{
  background:rgba(255,255,255,0.12);
  border:2px solid rgba(255,197,96,0.25);
  border-radius:24px;
  padding:32px;
  box-shadow:0 10px 24px rgba(0,0,0,0.10);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
  max-width:760px;
}

.chapter-info-card h2{
  margin:0 0 16px 0;
  font-size:34px;
  color:#fde5b1;
}

.chapter-info-card p{
  margin:0 0 16px 0;
  font-size:17px;
  line-height:1.8;
  color:#fff7e8;
}

.chapter-info-card p:last-child{
  margin-bottom:0;
}

.chapter-right{
  display:flex;
  justify-content:center;
}

.chapter-cta-card{
  width:100%;
  max-width:430px;
  background:rgba(255,246,224,0.18);
  border:2px solid rgba(255,197,96,0.28);
  border-radius:28px;
  padding:42px 34px;
  text-align:center;
  box-shadow:0 14px 30px rgba(0,0,0,0.12);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}

.chapter-cta-card h2{
  font-size:40px;
  color:#fde5b1;
  margin:0 0 16px 0;
}

.chapter-cta-card p{
  font-size:17px;
  line-height:1.8;
  color:#fff8ea;
  margin:0 0 24px 0;
}

.chapter-button{
  display:inline-block;
  text-decoration:none;
  background:#ffc560;
  color:#4f2d5e;
  font-weight:700;
  font-size:18px;
  padding:16px 30px;
  border-radius:999px;
  box-shadow:0 10px 22px rgba(0,0,0,0.14);
  transition:transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  margin:10px 0 24px 0;
}

.chapter-button:hover{
  background:#ffb347;
  transform:translateY(-3px);
  box-shadow:0 14px 28px rgba(0,0,0,0.16);
}

.chapter-note{
  font-size:15px;
  color:#fff1cf;
  margin:0;
}

/* VOLUNTEER PAGE */

.volunteer-page{
  background:
    linear-gradient(rgba(154,113,157,0.78), rgba(154,113,157,0.78)),
    url("crochet-pattern.png");
  background-size:cover, 500px;
  background-repeat:no-repeat, repeat;
  padding:90px 40px 100px 40px;
}

.volunteer-section{
  max-width:1300px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.15fr 0.85fr;
  gap:60px;
  align-items:center;
  min-height:70vh;
}

.volunteer-left{
  color:#fff8ea;
}

.volunteer-left h1{
  font-size:60px;
  line-height:1.08;
  margin:0 0 18px 0;
  color:#fde5b1;
}

.volunteer-divider{
  width:90px;
  height:4px;
  background:#ffc560;
  border-radius:2px;
  margin:0 0 28px 0;
}

.volunteer-intro{
  font-size:19px;
  line-height:1.9;
  color:#fff4d8;
  max-width:700px;
  margin:0 0 30px 0;
}

.volunteer-info-card{
  background:rgba(255,255,255,0.12);
  border:2px solid rgba(255,197,96,0.25);
  border-radius:24px;
  padding:32px;
  box-shadow:0 10px 24px rgba(0,0,0,0.10);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
  max-width:760px;
}

.volunteer-info-card h2{
  margin:0 0 16px 0;
  font-size:34px;
  color:#fde5b1;
}

.volunteer-info-card p{
  margin:0 0 16px 0;
  font-size:17px;
  line-height:1.8;
  color:#fff7e8;
}

.volunteer-info-card p:last-child{
  margin-bottom:0;
}

.volunteer-right{
  display:flex;
  justify-content:center;
}

.volunteer-cta-card{
  width:100%;
  max-width:430px;
  background:rgba(255,246,224,0.18);
  border:2px solid rgba(255,197,96,0.28);
  border-radius:28px;
  padding:42px 34px;
  text-align:center;
  box-shadow:0 14px 30px rgba(0,0,0,0.12);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}

.volunteer-cta-card h2{
  font-size:40px;
  color:#fde5b1;
  margin:0 0 16px 0;
}

.volunteer-cta-card p{
  font-size:17px;
  line-height:1.8;
  color:#fff8ea;
  margin:0 0 24px 0;
}

.volunteer-button{
  display:inline-block;
  text-decoration:none;
  background:#ffc560;
  color:#4f2d5e;
  font-weight:700;
  font-size:18px;
  padding:16px 30px;
  border-radius:999px;
  box-shadow:0 10px 22px rgba(0,0,0,0.14);
  transition:transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  margin:10px 0 24px 0;
}

.volunteer-button:hover{
  background:#ffb347;
  transform:translateY(-3px);
  box-shadow:0 14px 28px rgba(0,0,0,0.16);
}

.volunteer-note{
  font-size:15px;
  color:#fff1cf;
  margin:0;
}

/* PARTNER PAGE */

.partner-page{
  background:
    linear-gradient(rgba(154,113,157,0.78), rgba(154,113,157,0.78)),
    url("crochet-pattern.png");
  background-size:cover, 500px;
  background-repeat:no-repeat, repeat;
  padding:90px 40px 100px 40px;
}

.partner-section{
  max-width:1300px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.15fr 0.85fr;
  gap:60px;
  align-items:center;
  min-height:70vh;
}

.partner-left{
  color:#fff8ea;
}

.partner-left h1{
  font-size:60px;
  line-height:1.08;
  margin:0 0 18px 0;
  color:#fde5b1;
}

.partner-divider{
  width:90px;
  height:4px;
  background:#ffc560;
  border-radius:2px;
  margin:0 0 28px 0;
}

.partner-intro{
  font-size:19px;
  line-height:1.9;
  color:#fff4d8;
  max-width:700px;
  margin:0 0 30px 0;
}

.partner-info-card{
  background:rgba(255,255,255,0.12);
  border:2px solid rgba(255,197,96,0.25);
  border-radius:24px;
  padding:32px;
  box-shadow:0 10px 24px rgba(0,0,0,0.10);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
  max-width:760px;
}

.partner-info-card h2{
  margin:0 0 16px 0;
  font-size:34px;
  color:#fde5b1;
}

.partner-info-card p{
  margin:0 0 16px 0;
  font-size:17px;
  line-height:1.8;
  color:#fff7e8;
}

.partner-info-card p:last-child{
  margin-bottom:0;
}

.partner-right{
  display:flex;
  justify-content:center;
}

.partner-cta-card{
  width:100%;
  max-width:430px;
  background:rgba(255,246,224,0.18);
  border:2px solid rgba(255,197,96,0.28);
  border-radius:28px;
  padding:42px 34px;
  text-align:center;
  box-shadow:0 14px 30px rgba(0,0,0,0.12);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}

.partner-cta-card h2{
  font-size:40px;
  color:#fde5b1;
  margin:0 0 16px 0;
}

.partner-cta-card p{
  font-size:17px;
  line-height:1.8;
  color:#fff8ea;
  margin:0 0 24px 0;
}

.partner-button{
  display:inline-block;
  text-decoration:none;
  background:#ffc560;
  color:#4f2d5e;
  font-weight:700;
  font-size:18px;
  padding:16px 30px;
  border-radius:999px;
  box-shadow:0 10px 22px rgba(0,0,0,0.14);
  transition:transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  margin:10px 0 24px 0;
}

.partner-button:hover{
  background:#ffb347;
  transform:translateY(-3px);
  box-shadow:0 14px 28px rgba(0,0,0,0.16);
}

.partner-note{
  font-size:15px;
  color:#fff1cf;
  margin:0;
}

/* NETWORK SECTION */

.network-section{
  background:#fff6e0;
  padding:0 60px 90px 60px;
  max-width:1400px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

.network-column{
  background:rgba(255,255,255,0.55);
  border:2px solid rgba(154,113,157,0.14);
  border-radius:24px;
  padding:34px 32px;
  box-shadow:0 10px 24px rgba(0,0,0,0.06);
}

.network-column h2{
  font-size:36px;
  color:#9a719d;
  margin:0 0 18px 0;
  position:relative;
}

.network-column h2::after{
  content:"";
  display:block;
  width:70px;
  height:4px;
  background:#ffc560;
  margin-top:12px;
  border-radius:2px;
}

.network-list{
  list-style:none;
  margin:0;
  padding:0;
}

.network-list li{
  font-size:17px;
  line-height:1.8;
  color:#5d4c5f;
  padding:14px 0;
  border-bottom:1px solid rgba(154,113,157,0.14);
}

.network-list li:last-child{
  border-bottom:none;
  padding-bottom:0;
}

/* SUPPORT PAGE */

.support-page{
  background:
    linear-gradient(rgba(154,113,157,0.78), rgba(154,113,157,0.78)),
    url("crochet-pattern.png");
  background-size:cover, 500px;
  background-repeat:no-repeat, repeat;
  padding:0 40px 100px 40px;
}

.support-hero{
  padding:95px 0 50px 0;
  text-align:center;
}

.support-hero-content{
  max-width:900px;
  margin:0 auto;
}

.support-hero h1{
  font-size:60px;
  color:#fde5b1;
  margin:0 0 18px 0;
  display:inline-block;
  position:relative;
}

.support-hero h1::after{
  content:"";
  display:block;
  width:78px;
  height:4px;
  background:#ffc560;
  margin:14px auto 0 auto;
  border-radius:2px;
}

.support-hero p{
  font-size:19px;
  line-height:1.9;
  color:#fff4d8;
  margin:0 auto;
  max-width:780px;
}

.support-main-section{
  max-width:900px;
  margin:0 auto 70px auto;
  display:block;
}

.support-left h2{
  font-size:42px;
  line-height:1.15;
  margin:0 0 16px 0;
  color:#fde5b1;
  text-align:center;
}

.support-divider{
  width:90px;
  height:4px;
  background:#ffc560;
  border-radius:2px;
  margin:0 auto 28px auto;
}

.support-intro{
  font-size:18px;
  line-height:1.9;
  color:#fff4d8;
  max-width:720px;
  margin:0 auto 30px auto;
  text-align:center;
}

.support-info-card{
  background:rgba(255,255,255,0.12);
  border:2px solid rgba(255,197,96,0.25);
  border-radius:24px;
  padding:34px;
  box-shadow:0 10px 24px rgba(0,0,0,0.10);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
  max-width:760px;
}

.support-info-card h3{
  margin:0 0 16px 0;
  font-size:32px;
  color:#fde5b1;
}

.support-info-card p{
  margin:0 0 16px 0;
  font-size:17px;
  line-height:1.8;
  color:#fff7e8;
}

.support-info-card p:last-child{
  margin-bottom:0;
}

.support-right{
  display:flex;
  justify-content:center;
}

.support-cta-card{
  width:100%;
  max-width:430px;
  background:rgba(255,246,224,0.18);
  border:2px solid rgba(255,197,96,0.28);
  border-radius:28px;
  padding:42px 34px;
  text-align:center;
  box-shadow:0 14px 30px rgba(0,0,0,0.12);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}

.support-cta-card h2{
  font-size:40px;
  color:#fde5b1;
  margin:0 0 16px 0;
}

.support-cta-card p{
  font-size:17px;
  line-height:1.8;
  color:#fff8ea;
  margin:0 0 24px 0;
}

.support-main-button{
  display:inline-block;
  text-decoration:none;
  background:#ffc560;
  color:#4f2d5e;
  font-weight:700;
  font-size:18px;
  padding:16px 30px;
  border-radius:999px;
  box-shadow:0 10px 22px rgba(0,0,0,0.14);
  transition:transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  margin:10px 0 22px 0;
}

.support-main-button:hover{
  background:#ffb347;
  transform:translateY(-3px);
  box-shadow:0 14px 28px rgba(0,0,0,0.16);
}

.support-note{
  font-size:15px;
  color:#fff1cf;
  margin:0;
}

.support-sponsor-section,
.support-other-ways{
  max-width:1300px;
  margin:0 auto 70px auto;
}

.support-section-heading{
  text-align:center;
  max-width:760px;
  margin:0 auto 34px auto;
}

.support-section-heading h2{
  font-size:46px;
  color:#fde5b1;
  margin:0 0 14px 0;
}

.support-section-heading p{
  margin:0;
  font-size:18px;
  line-height:1.8;
  color:#fff4d8;
}

.sponsor-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
}

.sponsor-card{
  background:rgba(255,246,224,0.18);
  border:2px solid rgba(255,197,96,0.25);
  border-radius:24px;
  padding:34px 26px;
  text-align:center;
  box-shadow:0 10px 24px rgba(0,0,0,0.10);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
}

.sponsor-card h3{
  margin:0 0 12px 0;
  font-size:48px;
  color:#ffc560;
}

.sponsor-card p{
  margin:0;
  font-size:17px;
  line-height:1.7;
  color:#fff8ea;
}

.support-options-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:28px;
}

.support-option-card{
  background:rgba(255,255,255,0.12);
  border:2px solid rgba(255,197,96,0.22);
  border-radius:24px;
  padding:30px;
  box-shadow:0 10px 24px rgba(0,0,0,0.10);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
}

.support-option-card h3{
  margin:0 0 14px 0;
  font-size:28px;
  color:#fde5b1;
}

.support-option-card p{
  margin:0;
  font-size:16px;
  line-height:1.8;
  color:#fff7e8;
}

/* QUICK DONATE BUTTONS */

.support-quick-donate{
  display:flex;
  justify-content:center;
  gap:18px;
  margin-top:28px;
  flex-wrap:wrap;
}

.donate-button{
  text-decoration:none;
  background:#ffc560;
  color:#4f2d5e;
  font-weight:700;
  font-size:16px;
  padding:14px 26px;
  border-radius:999px;
  box-shadow:0 8px 18px rgba(0,0,0,0.12);
  transition:all 0.25s ease;
}

.donate-button:hover{
  background:#ffb347;
  transform:translateY(-2px);
  box-shadow:0 12px 22px rgba(0,0,0,0.16);
}

/* SUPPORT HERO GRID */

.support-hero{
  padding:95px 0 70px 0;
}

.support-hero-grid{
  max-width:1300px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:60px;
  align-items:center;
}

.support-left{
  max-width:760px;
  margin:0 auto;
}

.support-hero-left h1{
  font-size:60px;
  color:#fde5b1;
  margin:0 0 18px 0;
  position:relative;
}

.support-hero-left h1::after{
  content:"";
  display:block;
  width:80px;
  height:4px;
  background:#ffc560;
  margin-top:14px;
  border-radius:2px;
}

.support-hero-left p{
  font-size:18px;
  line-height:1.9;
  color:#fff4d8;
  max-width:600px;
}

/* SPONSOR BOX */

.sponsor-box{
  background:rgba(255,246,224,0.18);
  border:2px solid rgba(255,197,96,0.28);
  border-radius:28px;
  padding:40px 34px;
  box-shadow:0 14px 30px rgba(0,0,0,0.12);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}

.sponsor-box h2{
  font-size:40px;
  color:#fde5b1;
  margin:0 0 26px 0;
  text-align:center;
}

.sponsor-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
}

.sponsor-card{
  background:rgba(255,255,255,0.12);
  border:2px solid rgba(255,197,96,0.25);
  border-radius:20px;
  padding:22px;
  text-align:center;
}

.sponsor-card h3{
  margin:0 0 6px 0;
  font-size:36px;
  color:#ffc560;
}

.sponsor-card p{
  margin:0;
  font-size:15px;
  color:#fff8ea;
  line-height:1.6;
}

