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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  line-height: 1.7;
  color: #4b2e2e;
  background: #ffffff;
  padding-top: 96px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section {
  padding: 90px 0;
}

.section-cream {
  background: #faf4ec;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b07a2a;
  margin-bottom: 14px;
  font-family: 'Jost', sans-serif;
}

.section-label.center {
  display: block;
  text-align: center;
}

.section-label.gold {
  color: #e7be72;
}

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

.section-heading h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  line-height: 1.05;
  font-weight: 600;
  margin-bottom: 16px;
  color: #4b2e2e;
}

.section-heading p {
  color: #6b5b52;
  font-size: 18px;
}

.light-text h2,
.light-text p {
  color: #ffffff;
}

.btn {
  display: inline-block;
  background: #b07a2a;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-family: 'Jost', sans-serif;
  transition: 0.3s ease;
}

.btn:hover {
  background: #8b5d1e;
}

.btn-outline {
  background: transparent;
  border: 2px solid #ffffff;
}

.btn-outline:hover {
  background: #ffffff;
  color: #4b2e2e;
}

/* Navbar */
.main-nav {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: #f3f3f3;
  border-bottom: 1px solid #e5e5e5;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.nav-wrapper {
  width: 92%;
  max-width: 1280px;
  margin: auto;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-name {
  font-family: 'Jost', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #e56f4c;
}

.logo-sub {
  font-size: 12px;
  color: #6f6f6f;
  letter-spacing: 0.4px;
  text-transform: lowercase;
  font-family: 'Jost', sans-serif;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav-menu a {
  color: #222222;
  font-size: 16px;
  font-weight: 500;
  font-family: 'Jost', sans-serif;
  transition: 0.3s ease;
}

.nav-menu a:hover {
  color: #e56f4c;
}

.donate-btn {
  background: #e56f4c;
  color: #ffffff;
  padding: 15px 34px;
  border-radius: 18px;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Jost', sans-serif;
  transition: 0.3s ease;
  flex-shrink: 0;
}

.donate-btn:hover {
  background: #d9603d;
}

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

.hamburger span {
  width: 28px;
  height: 3px;
  background: #222222;
  border-radius: 4px;
}

/* Hero Slider */
#hero {
  position: relative;
  min-height: calc(100vh - 96px);
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(40, 23, 18, 0.45), rgba(40, 23, 18, 0.62));
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  min-height: calc(100vh - 96px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding: 40px 0;
}

.hero-tag {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #f3d7a6;
  margin-bottom: 16px;
  font-weight: 600;
  font-family: 'Jost', sans-serif;
}

.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 86px;
  line-height: 0.95;
  font-weight: 600;
  margin-bottom: 20px;
  max-width: 950px;
}

.hero-content p {
  max-width: 760px;
  margin: 0 auto 30px;
  font-size: 20px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Mission Statement Section */
.mission-statement-section {
  background: #f4f2f2;
  padding: 95px 0 100px;
}

.mission-statement-box {
  position: relative;
  text-align: center;
  max-width: 1200px;
  background: #eee9e9;
  border-radius: 28px;
  padding: 80px 80px 70px;
  overflow: hidden;
}

.mission-statement-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.48) 0%, rgba(255, 255, 255, 0) 38%),
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 55%);
  pointer-events: none;
}

.mission-mini-title {
  position: relative;
  z-index: 2;
  font-size: 15px;
  letter-spacing: 5px;
  color: #7b5c52;
  margin-bottom: 18px;
  font-weight: 500;
  font-family: 'Jost', sans-serif;
}

.mission-statement-box h2 {
  position: relative;
  z-index: 2;
  font-family: 'Cormorant Garamond', serif;
  font-size: 84px;
  line-height: 0.98;
  color: #111111;
  margin-bottom: 30px;
  font-weight: 600;
}

.mission-text {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto 42px;
  font-size: 20px;
  line-height: 1.95;
  color: #514a47;
}

.mission-buttons {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.mission-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 20px 34px;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 600;
  font-family: 'Jost', sans-serif;
  transition: 0.3s ease;
}

.mission-btn-dark {
  background: #9b847d;
  color: #ffffff;
}

.mission-btn-dark:hover {
  background: #866f69;
}

.mission-btn-orange {
  background: #e87552;
  color: #ffffff;
}

.mission-btn-orange:hover {
  background: #d86645;
}

.mission-decor {
  position: absolute;
  z-index: 1;
  color: #e87552;
  line-height: 1;
  user-select: none;
  font-family: 'Cormorant Garamond', serif;
}

.decor-left-one {
  left: 45px;
  top: 120px;
  font-size: 110px;
  transform: rotate(-12deg);
}

.decor-left-two {
  left: 70px;
  top: 250px;
  font-size: 68px;
  color: #efb0a1;
  transform: rotate(-18deg);
}

/* About */
.about-container {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 45px;
}

.about-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 58px;
  line-height: 1.05;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 16px;
  color: #5f5149;
  font-size: 18px;
}

.about-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 22px;
}

.vision-mission {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.vm-card {
  background: #faf4ec;
  padding: 34px;
  border-radius: 20px;
  border: 1px solid #eadccf;
}

.vm-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 14px;
}

/* Media */
.media-box {
  text-align: center;
}

.media-box h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 54px;
  line-height: 1.05;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Founder */
.founder-top {
  text-align: center;
  margin-bottom: 50px;
}

.founder-top h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  line-height: 1.05;
  font-weight: 600;
}

.founder-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 50px;
  align-items: start;
}

.founder-avatars {
  display: grid;
  gap: 24px;
}

.founder-card {
  background: #ffffff;
  border: 1px solid #eadccf;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.founder-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
  margin-bottom: 16px;
}

.founder-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 6px;
}

.founder-card p {
  font-size: 17px;
}

.founder-text p {
  margin-bottom: 18px;
  color: #5f5149;
  font-size: 18px;
}

.founder-signature {
  margin-top: 20px;
  padding-left: 18px;
  border-left: 4px solid #b07a2a;
  font-style: italic;
  color: #4b2e2e !important;
}

/* Quote */
.quote-section {
  background: #4b2e2e;
  padding: 70px 0;
}

.quote-content {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 40px;
  align-items: center;
}

.quote-text {
  color: #ffffff;
  font-size: 46px;
  line-height: 1.15;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  margin-bottom: 18px;
}

.quote-author {
  color: #e5c389;
  font-weight: 600;
  font-family: 'Jost', sans-serif;
}

.quote-image {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin-left: auto;
}

/* Programs */
.program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.program-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid #eadccf;
  transition: 0.3s ease;
}

.program-card:hover {
  transform: translateY(-6px);
}

.program-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #4b2e2e;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.program-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 12px;
}

.program-card p {
  color: #65564d;
  font-size: 17px;
}

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

.partner-text {
  max-width: 850px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.partner-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 58px;
  line-height: 1.05;
  font-weight: 600;
  margin-bottom: 10px;
}

.partner-role {
  color: #b07a2a;
  font-weight: 700;
  margin-bottom: 18px;
  font-family: 'Jost', sans-serif;
}

.partner-text p {
  margin-bottom: 16px;
  color: #5f5149;
  font-size: 18px;
  text-align: center;
}
/* Impact */
.impact-section {
  background: linear-gradient(rgba(54, 32, 24, 0.88), rgba(54, 32, 24, 0.88)),
    url("./images/KPX_3565.jpg") center/cover no-repeat;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.impact-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  color: #ffffff;
}

.impact-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  line-height: 1;
  font-weight: 600;
  color: #e8c27a;
  margin-bottom: 10px;
}

.impact-card p {
  font-size: 17px;
}

/* Support */
.support-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
}

.support-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 58px;
  line-height: 1.05;
  font-weight: 600;
  margin-bottom: 18px;
}

.support-text p {
  margin-bottom: 16px;
  color: #5f5149;
  font-size: 18px;
}

.support-box {
  background: #ffffff;
  padding: 36px;
  border-radius: 22px;
  border: 1px solid #eadccf;
}

.support-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 18px;
}

.support-box ul li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
  color: #5f5149;
  font-size: 17px;
}

.support-box i {
  color: #b07a2a;
  margin-top: 4px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: stretch;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 20px;
}

.contact-info {
  background: #faf4ec;
  border-radius: 20px;
  padding: 36px;
  border: 1px solid #eadccf;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
  color: #4b2e2e;
  font-size: 17px;
}

.contact-item i {
  width: 42px;
  height: 42px;
  background: #4b2e2e;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.contact-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #4b2e2e;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.contact-social a:hover {
  background: #b07a2a;
}

/* Footer */
footer {
  background: #2f1b12;
  color: #ffffff;
  padding: 30px 0;
}

.footer-content {
  text-align: center;
}

.footer-note {
  color: #d9c0a2;
  margin: 10px 0 18px;
  font-size: 16px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.footer-social a:hover {
  background: #b07a2a;
}
/* Get Involved */
.get-involved-section {
  background: #f6eeeb;
  position: relative;
  overflow: hidden;
  padding: 110px 0 95px;
}

.get-involved-section .container {
  position: relative;
  z-index: 3;
}

.get-involved-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 3;
}

.get-involved-header .mini-title {
  font-size: 15px;
  letter-spacing: 5px;
  color: #7c6157;
  margin-bottom: 20px;
  font-weight: 500;
  font-family: 'Jost', sans-serif;
}

.get-involved-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 86px;
  line-height: 0.96;
  color: #111111;
  font-weight: 600;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
  position: relative;
  z-index: 3;
}

.help-card {
  position: relative;
}

.help-icon {
  font-size: 74px;
  color: #e67655;
  margin-bottom: 26px;
}

.help-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 58px;
  line-height: 0.95;
  color: #111111;
  margin-bottom: 28px;
  font-weight: 600;
}

.help-card p {
  font-size: 18px;
  line-height: 1.8;
  color: #59514d;
  margin-bottom: 34px;
  max-width: 95%;
}

.help-link {
  font-size: 18px;
  font-weight: 600;
  color: #e67655;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s ease;
  font-family: 'Jost', sans-serif;
}

.help-link span {
  font-size: 30px;
  line-height: 1;
  margin-top: -2px;
}

.help-link:hover {
  color: #cb6242;
  transform: translateX(4px);
}

/* Decorative shapes */
.gi-shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

/* big faded swirl in center */
.gi-shape-center-ring {
  width: 980px;
  height: 980px;
  left: 50%;
  top: 34%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  opacity: 0.55;
  background:
    radial-gradient(circle, rgba(255,255,255,0) 30%, rgba(241,232,228,0.95) 30%, rgba(241,232,228,0.95) 41%, rgba(255,255,255,0) 41%),
    radial-gradient(circle, rgba(255,255,255,0) 49%, rgba(241,232,228,0.85) 49%, rgba(241,232,228,0.85) 58%, rgba(255,255,255,0) 58%);
  filter: blur(0.2px);
}

/* top left faded shape */
.gi-shape-top-left {
  top: -50px;
  left: -40px;
  width: 260px;
  height: 120px;
  background: #efe5e1;
  border-radius: 90px;
  transform: rotate(35deg);
  opacity: 0.85;
}

/* left middle faded hand-like pill */
.gi-shape-left-hand {
  left: -50px;
  top: 320px;
  width: 250px;
  height: 56px;
  background: #f1e9e5;
  border-radius: 999px;
  opacity: 0.9;
  box-shadow:
    0 58px 0 0 #f1e9e5,
    0 116px 0 0 #f1e9e5;
  transform: rotate(-9deg);
}

/* right top small pill */
.gi-shape-right-pill {
  right: -15px;
  top: 150px;
  width: 240px;
  height: 46px;
  background: #f2ebE8;
  border-radius: 999px;
  opacity: 0.95;
  transform: rotate(-5deg);
}

/* right middle faded hand block */
.gi-shape-right-hand {
  right: 70px;
  top: 520px;
  width: 110px;
  height: 70px;
  background: #f1e8e4;
  border-radius: 24px 24px 28px 28px;
  opacity: 0.9;
  transform: rotate(24deg);
  box-shadow:
    -20px -10px 0 0 #f1e8e4,
    18px -6px 0 0 #f1e8e4;
}

/* bottom left soft sweep */
.gi-shape-bottom-left {
  left: -40px;
  bottom: 10px;
  width: 420px;
  height: 160px;
  background: #efe5e1;
  border-radius: 60% 40% 0 0;
  opacity: 0.8;
  transform: rotate(18deg);
}

/* bottom right soft sweep */
.gi-shape-bottom-right {
  right: -40px;
  bottom: -10px;
  width: 380px;
  height: 150px;
  background: #efe5e1;
  border-radius: 45% 55% 0 0;
  opacity: 0.7;
  transform: rotate(-10deg);
}
/* Responsive */
@media (max-width: 1100px) {
  .program-grid,
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-container,
  .partner-feature,
  .support-grid,
  .contact-grid,
  .founder-grid,
  .help-grid {
    grid-template-columns: 1fr;
  }

  .quote-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .quote-image {
    margin: 0 auto;
  }

  .nav-wrapper {
    gap: 18px;
  }

  .nav-menu {
    gap: 18px;
  }

  .get-involved-header h2,
  .mission-statement-box h2 {
    font-size: 48px;
  }

  .help-card {
    padding: 0;
  }

  .mission-statement-box {
    padding: 60px 40px;
  }

  .decor-left-one {
    font-size: 90px;
    left: 25px;
    top: 95px;
  }

  .decor-left-two {
    font-size: 56px;
    left: 40px;
    top: 200px;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 84px;
  }

  .nav-wrapper {
    min-height: 84px;
    position: relative;
  }

  .nav-menu {
    position: absolute;
    top: 84px;
    right: 0;
    width: 260px;
    background: #f3f3f3;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 16px;
    display: none;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
  }

  .nav-menu.show {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .donate-btn {
    display: none;
  }

  .hero-content {
    min-height: 80vh;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 17px;
  }

  .section-heading h2,
  .about-text h2,
  .partner-text h2,
  .support-text h2,
  .founder-top h2,
  .get-involved-header h2,
  .mission-statement-box h2 {
    font-size: 32px;
  }

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

  .vision-mission,
  .program-grid,
  .impact-grid {
    grid-template-columns: 1fr;
  }

  .about-image img,
  .partner-photo img {
    height: 360px;
  }

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

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

  .help-icon {
    font-size: 52px;
  }

  .mission-statement-box {
    padding: 60px 24px;
  }

  .mission-mini-title {
    font-size: 13px;
    letter-spacing: 4px;
  }

  .mission-text {
    font-size: 16px;
    line-height: 1.9;
  }

  .mission-btn {
    width: 100%;
    min-width: unset;
  }

  .decor-left-one {
    font-size: 70px;
    left: 20px;
    top: 100px;
  }

  .decor-left-two {
    font-size: 46px;
    left: 28px;
    top: 190px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 34px;
  }

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

  .btn {
    width: 100%;
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .section {
    padding: 70px 0;
  }

  .logo-name {
    font-size: 17px;
  }

  .logo-sub {
    font-size: 10px;
  }

  .nav-logo img {
    width: 42px;
    height: 42px;
  }

  .mission-statement-box h2 {
    font-size: 30px;
  }

  .mission-mini-title {
    font-size: 12px;
    letter-spacing: 3px;
  }
}
/* Stories Section */
.stories-section {
  background: #f5f4f3;
  position: relative;
  overflow: hidden;
}

.stories-wrapper {
  position: relative;
  z-index: 2;
}

.stories-wrapper::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 160px;
  transform: translateX(-50%);
  width: 980px;
  height: 320px;
  background: #efebea;
  opacity: 0.8;
  border-radius: 46% 54% 42% 58% / 48% 42% 58% 52%;
  z-index: -1;
}

.stories-header {
  text-align: center;
  margin-bottom: 60px;
}

.stories-mini-title {
  font-size: 14px;
  letter-spacing: 4px;
  color: #7c6157;
  margin-bottom: 14px;
  font-weight: 500;
  font-family: 'Jost', sans-serif;
}

.stories-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 58px;
  line-height: 1.05;
  color: #111111;
  font-weight: 600;
}

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

.story-card {
  background: #ffffff;
  border: 1px solid #ddd4cf;
  border-radius: 0 0 28px 28px;
  overflow: hidden;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.02);
}

.story-image-wrap {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.story-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 22px 24px;
  border-top: 1px solid #ddd4cf;
  border-bottom: 1px solid #ddd4cf;
  color: #e67655;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}

.story-body {
  padding: 26px 24px 24px;
}

.story-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  line-height: 1.2;
  color: #111111;
  font-weight: 600;
  margin-bottom: 16px;
}

.story-body p {
  font-size: 16px;
  line-height: 1.7;
  color: #56504c;
  margin-bottom: 22px;
}

.story-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.story-link,
.story-share {
  color: #e67655;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Jost', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s ease;
}

.story-link span {
  font-size: 22px;
  line-height: 1;
}

.story-link:hover,
.story-share:hover {
  color: #cb6242;
}

/* Stories responsive */
@media (max-width: 1100px) {
  .stories-header h2 {
    font-size: 46px;
  }

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

  .story-body h3 {
    font-size: 26px;
  }

  .stories-wrapper::before {
    width: 700px;
    height: 240px;
  }
}

@media (max-width: 768px) {
  .stories-header h2 {
    font-size: 34px;
  }

  .stories-mini-title {
    font-size: 12px;
    letter-spacing: 3px;
  }

  .story-image-wrap {
    height: 240px;
  }

  .story-body h3 {
    font-size: 22px;
  }

  .story-body p {
    font-size: 15px;
  }

  .story-meta {
    font-size: 12px;
  }

  .stories-wrapper::before {
    width: 420px;
    height: 180px;
    top: 130px;
  }
}

@media (max-width: 480px) {
  .story-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .story-body {
    padding: 22px 18px;
  }

  .story-meta {
    padding: 18px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  line-height: 1.7;
  color: #4b2e2e;
  background: #ffffff;
  padding-top: 96px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Navbar */
.main-nav {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: #f3f3f3;
  border-bottom: 1px solid #e5e5e5;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.nav-wrapper {
  width: 92%;
  max-width: 1280px;
  margin: auto;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-name {
  font-size: 20px;
  font-weight: 700;
  color: #e56f4c;
}

.logo-sub {
  font-size: 12px;
  color: #6f6f6f;
  letter-spacing: 0.4px;
  text-transform: lowercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav-menu a {
  color: #222222;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active-link {
  color: #e56f4c;
}

.donate-btn {
  background: #e56f4c;
  color: #ffffff;
  padding: 15px 34px;
  border-radius: 18px;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s ease;
  flex-shrink: 0;
}

.donate-btn:hover {
  background: #d9603d;
}

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

.hamburger span {
  width: 28px;
  height: 3px;
  background: #222222;
  border-radius: 4px;
}

.events-hero {
  position: relative;
  width: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background-image: url("./images/do2.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.events-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.events-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 800px;
  margin: auto;
  padding: 0 20px;
}

.events-hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  text-align: center;
  max-width: 900px;
}

.events-mini-title {
  font-size: 14px;
  letter-spacing: 4px;
  margin-bottom: 18px;
  color: #f3d7a6;
}

.events-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 78px;
  line-height: 0.95;
  font-weight: 600;
  margin-bottom: 22px;
}

.events-hero p:last-child {
  font-size: 20px;
  max-width: 760px;
  margin: 0 auto;
}

/* Events */
.events-list-section {
  background: #f5f4f3;
  padding: 100px 0;
}

.events-wrapper {
  position: relative;
}

.events-wrapper::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 60px;
  transform: translateX(-50%);
  width: 920px;
  height: 280px;
  background: #efebea;
  opacity: 0.8;
  border-radius: 46% 54% 42% 58% / 48% 42% 58% 52%;
  z-index: 0;
}

.events-heading {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 60px;
}

.events-label {
  font-size: 15px;
  letter-spacing: 5px;
  color: #7c6157;
  margin-bottom: 18px;
  font-weight: 500;
}

.events-heading h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  line-height: 0.98;
  color: #111111;
  font-weight: 600;
}

.events-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 26px;
}

.event-card {
  background: #ffffff;
  border: 1px solid #ddd4cf;
  border-radius: 26px;
  padding: 28px 30px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 26px;
  align-items: start;
}

.event-date {
  background: #f7eee8;
  border-radius: 22px;
  padding: 18px 10px;
  text-align: center;
  border: 1px solid #ead7cc;
}

.event-day {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  line-height: 1;
  color: #111111;
  font-weight: 600;
}

.event-month {
  display: block;
  margin-top: 8px;
  color: #e67655;
  font-size: 14px;
  letter-spacing: 3px;
  font-weight: 600;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #9a6f5f;
  margin-bottom: 12px;
  font-size: 15px;
}

.event-meta i {
  color: #e67655;
  margin-right: 6px;
}

.event-details h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  line-height: 1.05;
  color: #111111;
  font-weight: 600;
  margin-bottom: 12px;
}

.event-details p {
  font-size: 17px;
  color: #5b5450;
  margin-bottom: 16px;
}

.event-link {
  color: #e67655;
  font-size: 17px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.event-link span {
  font-size: 24px;
  line-height: 1;
}

/* Footer */
footer {
  background: #2f1b12;
  color: #ffffff;
  padding: 30px 0;
}

.footer-content {
  text-align: center;
}

.footer-note {
  color: #d9c0a2;
  margin: 10px 0 18px;
  font-size: 16px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.footer-social a:hover {
  background: #b07a2a;
}

/* Responsive */
@media (max-width: 900px) {
  body {
    padding-top: 84px;
  }

  .nav-wrapper {
    min-height: 84px;
    position: relative;
  }

  .nav-menu {
    position: absolute;
    top: 84px;
    right: 0;
    width: 260px;
    background: #f3f3f3;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 16px;
    display: none;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
  }

  .nav-menu.show {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .donate-btn {
    display: none;
  }

  .events-hero h1 {
    font-size: 46px;
  }

  .events-hero p:last-child {
    font-size: 17px;
  }

  .events-heading h2 {
    font-size: 44px;
  }

  .event-card {
    grid-template-columns: 1fr;
  }

  .event-date {
    max-width: 120px;
  }

  .events-wrapper::before {
    width: 520px;
    height: 180px;
  }
}

@media (max-width: 480px) {
  .events-hero {
    min-height: 340px;
  }

  .events-hero h1 {
    font-size: 36px;
  }

  .events-heading h2 {
    font-size: 34px;
  }
  .event-details h3 {
    font-size: 28px;
  }
  .event-details p {
    font-size: 15px;
  }
  .event-meta {
    font-size: 13px;
  }
  .event-date {
    max-width: unset;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 14px 0;
  }
  .event-card {
    padding: 22px 18px;
  }
  .events-wrapper::before {
    width: 320px;
    height: 120px;
    top: 100px;
  }
}
.event-full-text {
  display: none;
  margin-top: 14px;
}

.event-full-text.show {
  display: block;
}

.event-full-text p {
  margin-bottom: 14px;
}

.read-more-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.read-more-btn span {
  transition: transform 0.3s ease;
}

.read-more-btn.active span {
  transform: rotate(90deg);
}
/* GALLERY PAGE */
.gallery-showcase {
  position: relative;
  background: #f7f7f7;
  overflow: hidden;
  min-height: 100vh;
  padding: 70px 0 90px;
}

.gallery-shell {
  position: relative;
  z-index: 3;
}

.gallery-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 36px;
}

.gallery-mini-title {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #6e6596;
  font-weight: 700;
  margin-bottom: 14px;
}

.gallery-header h1 {
  font-family: 'Jost', sans-serif;
  font-size: 56px;
  line-height: 1.05;
  color: #111325;
  font-weight: 700;
  margin-bottom: 12px;
}

.gallery-header p {
  font-size: 18px;
  line-height: 1.7;
  color: #5f6280;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 42px;
  max-width: 1100px;
}

.gallery-pill {
  border: 1.6px solid #78719b;
  background: transparent;
  color: #4f4a6e;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s ease;
}

.gallery-pill:hover,
.gallery-pill.active {
  background: #0d1034;
  color: #ffffff;
  border-color: #0d1034;
}

.gallery-stage {
  position: relative;
  height: 520px;
  max-width: 1250px;
  margin: 0 auto;
}

.gallery-carousel {
  position: relative;
  height: 100%;
}

.gallery-card {
  position: absolute;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(20, 20, 45, 0.14);
  transition: all 0.55s ease;
  opacity: 1;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 22px 20px;
  background: linear-gradient(to top, rgba(8, 10, 25, 0.75), rgba(8, 10, 25, 0));
  color: #ffffff;
}

.gallery-card-overlay span {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d8d9e8;
  margin-bottom: 8px;
}

.gallery-card-overlay h3 {
  font-family: 'Jost', sans-serif;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
}

.hidden-card {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
  z-index: 0;
}

.card-left {
  left: 6%;
  top: 145px;
  width: 230px;
  height: 230px;
  z-index: 1;
}

.card-mid-left {
  left: 17%;
  top: 95px;
  width: 290px;
  height: 290px;
  z-index: 2;
}

.card-center {
  left: 50%;
  top: 60px;
  width: 380px;
  height: 380px;
  transform: translateX(-50%);
  z-index: 5;
}

.card-mid-right {
  right: 17%;
  top: 95px;
  width: 290px;
  height: 290px;
  z-index: 2;
}

.card-right {
  right: 6%;
  top: 145px;
  width: 230px;
  height: 230px;
  z-index: 1;
}

.gallery-arrow {
  position: absolute;
  bottom: 10px;
  width: 54px;
  height: 54px;
  border: 1.5px solid #4c4e67;
  background: #ffffff;
  color: #111325;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s ease;
  z-index: 8;
}

.gallery-arrow:hover {
  background: #0d1034;
  color: #ffffff;
  border-color: #0d1034;
}

.gallery-arrow-left {
  left: calc(50% - 62px);
}

.gallery-arrow-right {
  right: calc(50% - 62px);
}

.gallery-side-blur {
  position: absolute;
  top: 110px;
  width: 170px;
  height: 680px;
  z-index: 1;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(239, 236, 236, 0.92), rgba(237, 235, 233, 0.84),  rgba(242, 240, 238, 0.92));
  filter: blur(10px);
  opacity: 0.85;
}

.gallery-side-left {
  left: 3.5%;
}

.gallery-side-right {
  right: 3.5%;
}

.gallery-mobile-grid {
  display: none;
}

/* gallery mobile cards */
.gallery-mobile-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(20, 20, 45, 0.08);
  margin-bottom: 22px;
}

.gallery-mobile-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.gallery-mobile-body {
  padding: 22px 18px;
}

.gallery-mobile-body span {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6e6596;
  margin-bottom: 10px;
}

.gallery-mobile-body h3 {
  font-family: 'Jost', sans-serif;
  font-size: 22px;
  line-height: 1.3;
  color: #111325;
}

/* responsive */
@media (max-width: 1200px) {
  .gallery-side-blur {
    width: 120px;
  }

  .card-left {
    left: 3%;
  }

  .card-mid-left {
    left: 13%;
  }

  .card-mid-right {
    right: 13%;
  }

  .card-right {
    right: 3%;
  }
}

@media (max-width: 992px) {
  .gallery-stage {
    display: none;
  }

  .gallery-mobile-grid {
    display: block;
    max-width: 700px;
    margin: 0 auto;
  }

  .gallery-side-blur {
    display: none;
  }

  .gallery-header h1 {
    font-size: 42px;
  }

  .gallery-header p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .gallery-showcase {
    padding: 50px 0 70px;
  }

  .gallery-header h1 {
    font-size: 34px;
  }

  .gallery-filters {
    gap: 10px;
  }

  .gallery-pill {
    padding: 10px 16px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .gallery-header h1 {
    font-size: 30px;
  }

  .gallery-mini-title {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .gallery-mobile-card img {
    height: 210px;
  }

  .gallery-mobile-body h3 {
    font-size: 19px;
  }
}
/* GALLERY PAGE GRID */
.gallery-page-section {
  background: #f7f7f7;
  padding: 70px 0 90px;
}

.gallery-page-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 36px;
}

.gallery-page-label {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #6e6596;
  font-weight: 700;
  margin-bottom: 14px;
}

.gallery-page-header h1 {
  font-family: 'Jost', sans-serif;
  font-size: 56px;
  line-height: 1.05;
  color: #111325;
  font-weight: 700;
  margin-bottom: 12px;
}

.gallery-page-header p {
  font-size: 18px;
  line-height: 1.7;
  color: #5f6280;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 42px;
  max-width: 1100px;
}

.gallery-pill {
  border: 1.6px solid #78719b;
  background: transparent;
  color: #4f4a6e;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s ease;
}

.gallery-pill:hover,
.gallery-pill.active {
  background: #0d1034;
  color: #ffffff;
  border-color: #0d1034;
}

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

.gallery-item {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(20, 20, 45, 0.08);
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.gallery-item-body {
  padding: 22px 20px;
}

.gallery-item-body span {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6e6596;
  margin-bottom: 10px;
}

.gallery-item-body h3 {
  font-family: 'Jost', sans-serif;
  font-size: 22px;
  line-height: 1.35;
  color: #111325;
  font-weight: 600;
}

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

  .gallery-page-header h1 {
    font-size: 42px;
  }
}

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

  .gallery-page-header h1 {
    font-size: 34px;
  }

  .gallery-page-header p {
    font-size: 16px;
  }

  .gallery-pill {
    padding: 10px 16px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .gallery-item img {
    height: 240px;
  }

  .gallery-item-body h3 {
    font-size: 19px;
  }
}
.partner-image {
  width: 100%;
  max-width: 300px;
  margin: 10px auto 28px;
}

.partner-image img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px;
  display: block;
}
.contact-social a i.fa-facebook-f {
  color: #1877F2;
}

.contact-social a i.fa-instagram {
  color: #E4405F;
}

.contact-social a i.fa-tiktok {
  color: #000000;
}

.contact-social a i.fa-whatsapp {
  color: #25D366;
}
.footer-social a i.fa-facebook-f {
  color: #1877F2;
}

.footer-social a i.fa-instagram {
  color: #E4405F;
}

.footer-social a i.fa-tiktok {
  color: #000000;
}

.footer-social a i.fa-whatsapp {
  color: #25D366;
}
/* DONATE PAGE */
.active-donate-btn {
  background: #d9603d;
}

.donate-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url("./images/do2.jpeg") center/cover no-repeat;
}

.donate-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(40, 23, 18, 0.45), rgba(40, 23, 18, 0.62));
}

.donate-hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  max-width: 820px;
}

.donate-mini-title {
  font-size: 14px;
  letter-spacing: 4px;
  color: #f3d7a6;
  margin-bottom: 18px;
  font-weight: 600;
}

.donate-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 74px;
  line-height: 0.98;
  font-weight: 600;
  margin-bottom: 20px;
}

.donate-hero-content p {
  font-size: 19px;
  max-width: 760px;
  margin: 0 auto;
}

.donate-page-section {
  background: #f5f4f3;
  padding: 100px 0;
}

.donate-page-wrapper {
  position: relative;
}

.donate-page-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 55px;
}

.donate-page-heading h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 62px;
  line-height: 1;
  color: #111111;
  font-weight: 600;
  margin-bottom: 16px;
}

.donate-page-heading p {
  color: #6b5b52;
  font-size: 18px;
}
.donate-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 35px;
}

.donate-card {
  background: #ffffff;
  border: 1px solid #ddd4cf;
  border-radius: 26px;
  padding: 34px 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  text-align: center;
}

.donate-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #f7eee8;
  color: #e67655;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.donate-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  line-height: 1.05;
  color: #111111;
  margin-bottom: 12px;
  font-weight: 600;
}

.donate-description {
  font-size: 17px;
  color: #5b5450;
  margin-bottom: 22px;
}

.donate-detail-box {
  background: #faf4ec;
  border: 1px solid #eadccf;
  border-radius: 18px;
  padding: 18px 16px;
  margin-bottom: 22px;
}

.donate-detail-label {
  display: block;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b07a2a;
  margin-bottom: 8px;
  font-weight: 600;
}

.donate-detail-box p {
  font-size: 20px;
  font-weight: 600;
  color: #4b2e2e;
  word-break: break-word;
}

.donate-card-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.donate-action-btn,
.copy-btn {
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s ease;
}

.donate-action-btn {
  background: #e56f4c;
  color: #ffffff;
}

.donate-action-btn:hover {
  background: #d9603d;
}

.copy-btn {
  background: #f1e5dc;
  color: #4b2e2e;
}

.copy-btn:hover {
  background: #e8d7ca;
}

.donate-note-box {
  background: #fffaf5;
  border: 1px solid #eadccf;
  border-radius: 24px;
  padding: 34px 30px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.donate-note-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  color: #111111;
  margin-bottom: 12px;
  font-weight: 600;
}

.donate-note-box p {
  font-size: 17px;
  color: #5b5450;
}

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

  .donate-hero-content h1 {
    font-size: 46px;
  }

  .donate-page-heading h2 {
    font-size: 42px;
  }
}

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

@media (max-width: 480px) {
  .donate-hero {
    min-height: 340px;
  }

  .donate-hero-content h1 {
    font-size: 36px;
  }

  .donate-hero-content p,
  .donate-page-heading p,
  .donate-description,
  .donate-note-box p {
    font-size: 16px;
  }

  .donate-card h3 {
    font-size: 30px;
  }

  .donate-note-box h3 {
    font-size: 30px;
  }

  .donate-detail-box p {
    font-size: 17px;
  }
}
.gallery-video-section {
  margin-bottom: 60px;
}

.gallery-video-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 30px;
}

.gallery-video-heading h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  line-height: 1.05;
  color: #111111;
  font-weight: 600;
  margin-bottom: 12px;
}

.gallery-video-heading p {
  font-size: 17px;
  color: #5f6280;
  line-height: 1.7;
}

.gallery-video-grid {
  display: grid;
  gap: 28px;
}

.gallery-video-grid.two-videos {
  grid-template-columns: repeat(2, 1fr);
  max-width: 950px;
  margin: 0 auto;
}

.gallery-video-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(20, 20, 45, 0.08);
}

.gallery-video-card video {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  background: #000;
}

.gallery-video-body {
  padding: 20px;
}

.gallery-video-body span {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6e6596;
  margin-bottom: 10px;
}

.gallery-video-body h3 {
  font-family: 'Jost', sans-serif;
  font-size: 20px;
  line-height: 1.35;
  color: #111325;
  font-weight: 600;
}

@media (max-width: 768px) {
  .gallery-video-grid.two-videos {
    grid-template-columns: 1fr;
  }

  .gallery-video-card video {
    height: 240px;
  }

  .gallery-video-heading h2 {
    font-size: 32px;
  }

  .gallery-video-heading p {
    font-size: 16px;
  }
}
.gallery-video-heading .gallery-page-label {
  margin-top: 20px;
}