/* ========== GENERAL ========== */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #ffffff;
  color: #ffffff;
}

h1, h2, h3 {
  font-weight: 900;
}
p {
  font-size: 1rem;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}

/* ========== NAVIGATION ========== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #302423;
  border-bottom: 1px solid #302423;
}
.nav-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.logo {
  height: 120%;
  width: 120px;
}
.nav-title {
  font-weight: 900;
  color: #ffffff;
  font-size: 1.1rem;
}
.nav-links {
  list-style: none;
  color: #ffffff;
  display: flex;
  gap: 1.5rem;
}
.nav-links li a {
  font-weight: 600;
  transition: color 0.3s;
}
.nav-links li a:hover {
  color: #FBDE4A;
}
.donate-button {
  background-color: #FBDE4A;
  color: #302423;
  padding: 0.5rem 1rem;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.3s;
}
.donate-button:hover {
  background-color: #e8cb3e;
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  min-height: 100vh;
  background-color: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  overflow: hidden;
  box-sizing: border-box;
}

.carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #111 url('carousel1.png') center/cover no-repeat;
  background-size: cover;
  background-position: center;
  animation: slideShow 9s infinite;
  z-index: 1;
}

/* NEW: Overlay just behind the text */
.hero-text-overlay {
  position: relative;
  background-color: rgba(0, 0, 0, 0.45); /* transparent dark */
  padding: 2rem;
  border-radius: 12px;
  z-index: 2;
  max-width: 90%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-text-overlay:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.hero-text {
  position: relative;
  z-index: 3;
}  

.highlight-red-underline {
  display: inline; /* force inline so it doesn't behave like a block */
  text-decoration: underline;
  text-decoration-color: red;
  text-underline-offset: 5px;
  font-weight: 600;
  color: inherit;
  cursor: pointer;
}

@keyframes slideShow {
  0%, 33.33% {
    background-image: url('carousel1.png');
    background-size: cover;
    background-position: center;
  }
  33.34%, 66.66% {
    background-image: url('carousel2.png');
    background-size: cover;
    background-position: center;
  }
  66.67%, 100% {
    background-image: url('carousel3.png');
    background-size: cover;
    background-position: center;
  }
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-text h2 {
  font-style: italic;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.hero-text p {
  max-width: 700px;
  margin: 1rem auto 2rem;
  color: #eee;
}

.hero-donate {
  background-color: #FBDE4A;
  color: #302423;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.hero-donate:hover {
  background-color: #e8cb3e;
}

/* ========== CAMPAIGN SECTION ========== */
.campaign {
  position: relative;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  isolation: isolate;
}

.campaign-image {
  background: url('img1.png') center/cover no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: flex-end;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.campaign-image:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.campaign-bar {
  background-color: rgba(48, 36, 35, 0.8);
  color: #fff;
  padding: 1rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.progress-container {
  width: 80%;
  height: 10px;
  background: #ccc;
  border-radius: 5px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: #FBDE4A;
  width: 0%;
  transition: width 0.5s ease-in-out;
}

.goal {
  font-size: 0.9rem;
  color: #eee;
}


/* ========== REALITY SECTION ========== */
.reality {
  position: relative;             /* for overlay */
  padding: 4rem 2rem;
  background-color: #f9f9f9;
  color: #302423;
  box-sizing: border-box;
  isolation: isolate;

  background-image: url('congobg.png');
  background-size: cover;          /* cover ensures full background coverage */
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: multiply; /* better for darkening bg */
  min-height: 600px;               /* ensures space for image */
  z-index: 0;
}

/* Semi-transparent white overlay for text readability */
.reality::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(249, 249, 249, 0.85); /* close to your bg color but translucent */
  z-index: 1;
}

.reality > * {
  position: relative;
  z-index: 2;  /* content sits above overlay */
}

.reality h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.reality ul {
  list-style-type: "▪ ";
  max-width: 800px;
  margin: 0 auto;
  padding-left: 1rem;
}

.reality ul li {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.0;
  color: #8a0101;    /* blood red */
  font-weight: 600;  /* semi-bold */
}




/* ========== MISSION SECTION ========== */
.mission {
  padding: 4rem 2rem;
  background-color: #ffffff;
  color: #302423;
  text-align: center;
  margin-top: 2rem;
  clear: both;
  box-sizing: border-box;
  isolation: isolate;
  min-height: auto;
}
.mission h2 {
  margin-bottom: 1.5rem;
}
.mission p {
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.mission-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-yellow {
  background-color: #FBDE4A;
  color: #302423;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s;
}
.btn-yellow:hover {
  background-color: #e8cb3e;
}
.btn-dark {
  background-color: #302423;
  color: white;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s;
}
.btn-dark:hover {
  background-color: #4e3b39;
}

/* ========== FOOTER ========== */
.footer {
  background-color: #302423;
  color: #ffffff;
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.footer-left, .footer-center, .footer-right {
  flex: 1;
  min-width: 200px;
}
.footer-logo {
  height: 80px;
  width: 80px;
}
.footer h3 {
  margin-top: 0.5rem;
}
.footer-center p {
  margin: 0.5rem 0;
}
.footer-right ul {
  list-style: none;
  padding: 0;
}
.footer-right ul li {
  margin: 0.5rem 0;
}
.footer-right ul li a {
  color: #FBDE4A;
  font-weight: 600;
}
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  width: 100%;
  font-size: 0.9rem;
  color: #aaa;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #111;
  color: white;
}

.social-links a {
  margin: 0 10px;
  text-decoration: none;
  color: #f0f0f0;
  font-weight: 500;
}

.social-links a:hover {
  color: #fcd34d; /* gold highlight on hover */
}


/* ========== RESPONSIVE ========== */
.carousel-caption-bar {
  background-color: #ffffff;
  padding: 1rem 2rem;
  text-align: center;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.carousel-caption {
  font-size: 0.8rem;
  color: #777;
  font-style: italic;
  margin: 0;
}

/* ========== GLOBAL LAYOUT ========== */
html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  background: linear-gradient(to bottom right, #f6f3ee, #e4dbd1);
}

/* Wrapper takes all available vertical space pushing footer down */
.page-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}



/* ========== ABOUT US PAGE ========== */
.about-page {
  background: transparent;
  color: #302423;
  font-family: 'Segoe UI', sans-serif;
  padding: 4rem 2rem;
  line-height: 1.6;
}

/* ========== FOOTER ========== */
.footer {
  background: #302423;
  padding: 1rem;
  text-align: center;
  width: 100%;
  margin: 0;
  color: white;
  position: static; /* make sure footer flows naturally */
}

/* Section Titles */
.about-page h1,
.about-page h2 {
  color: #302423;
  text-align: center;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Accent Divider */
.divider {
  width: 60px;
  height: 4px;
  background-color: #FBDE4A;
  margin: 0 auto 3rem auto;
  border-radius: 3px;
}

p {
  color: black;
}

/* Footer text stays white on whatever background */
.footer p {
  color: white;
  margin: 0; /* Remove default paragraph margins in footer */
}


/* Section Containers */
.about-section {
  max-width: 900px;
  margin: 0 auto 4rem auto;
  padding: 2rem;
  background-color: #ffffff;
  border-left: 6px solid #FBDE4A;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Highlight Boxes */
.mission-box {
  background-color: #FBDE4A;
  color: #302423;
  padding: 2rem;
  font-weight: 600;
  text-align: center;
  margin: 4rem auto;
  max-width: 700px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(48, 36, 35, 0.2);
}

/* Responsive Grid (e.g., for future photo/stats use) */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.about-grid div {
  background-color: #fff;
  padding: 1.5rem;
  border-left: 4px solid #302423;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}


/* Hover Lift */
.about-section,
.mission-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-section:hover,
.mission-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(48, 36, 35, 0.15);
}

/* ========== READ THEIR STORIES PAGE ========== */

/* VOICES OF CONGO PAGE */



/* --- Page Titles --- */
.voc-page {
  padding: 4rem 2rem;
  font-family: 'Montserrat', sans-serif;
  background-color: #f6f3ee;
  color: #302423;
}

.voc-page h1 {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.voc-page p.subtitle {
  text-align: center;
  font-style: italic;
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 3rem;
}

/* --- Testimony Sections --- */
.testimony {
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimony img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.85);
  transition: filter 0.4s ease; /* Smooth transition */
}

.testimony:hover img {
  filter: brightness(1); /* Brighten to normal on hover */
}


.testimony-text {
  position: absolute;
  bottom: 40px;
  left: 0;
  padding: 2rem;
  width: 100%;
  height: auto;
  color: white !important;  /* Force white text */
  background: rgba(0, 0, 0, 0.4);
  font-size: 1.05rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  z-index: 10;
  box-sizing: border-box;
}

.testimony-text h3 {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 0.7rem;
  text-transform: uppercase;
  color: white !important; /* Just to be sure */
}

.testimony-text p {
  line-height: 1.6;
  color: white !important;
}

.photo-credit {
  font-size: 0.75rem;
  font-style: italic;
  margin-top: 0.5rem;
  color: #ddd;
}



/* --- Image Credits & Disclaimer --- */
.image-credit {
  font-size: 0.75rem;
  color: #666;
  font-style: italic;
  text-align: center;
  margin-top: 0.5rem;
}

.disclaimer {
  font-size: 0.8rem;
  text-align: center;
  color: #444;
  margin-top: 2rem;
  font-style: italic;
}

/* ========== DONATE NOW PAGE ========== */

/* Donate page container */
.donate-coming-soon {
  background-color: #fefbf8;
  padding: 4rem 2rem;
  text-align: center;
  border-top: 2px solid #d5c7b9;
}

.donate-coming-soon h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: #302423;
}

.donate-coming-soon .subheading {
  font-size: 1rem;
  color: #6c5c51;
  margin-bottom: 2rem;
}

/* MailerLite form styling overrides */
.ml-embedded form {
  background: #fff9f4 !important;
  border: 4px solid black !important;  /* Thick, solid black border */
  padding: 2.5rem 2rem 3rem 2rem !important;
  border-radius: 12px !important;
  /* Replace heavy shadow with subtle shadow */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1) !important;
  max-width: 440px !important;
  margin: 2rem auto !important;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
  color: #302423 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  box-sizing: border-box !important;
}


.ml-embedded form input[type="email"] {
  width: 100% !important;
  padding: 1rem !important;
  margin-bottom: 1.8rem !important;
  border: 1px solid #c7b6a7 !important;
  border-radius: 5px !important;
  font-size: 1.1rem !important;
  box-sizing: border-box !important;
  transition: all 0.3s ease;
  background-color: #fff9f4 !important;
  color: #302423 !important;
  outline: none;
}

  .ml-embedded form input[type="email"]:hover,
  .ml-embedded form input[type="email"]:focus {
    box-shadow: 0 0 5px #FBDE4A;
    border-color: #FBDE4A;
    outline: none;
  }



/* Add margin above the reCAPTCHA container to separate it */
.ml-embedded form .ml-block-captcha {
  margin-top: 1.8rem !important;
  align-self: center !important;
}

/* Submit button styling */
.ml-embedded form button {
  width: 100% !important;
  padding: 1rem !important;
  background-color: #302423 !important;
  color: white !important;
  font-size: 1.1rem !important;
  border: none !important;
  border-radius: 5px !important;
  cursor: pointer !important;
  transition: background-color 0.3s ease;
  margin-top: 2rem !important;
}

.ml-embedded form button:hover {
  background-color: #4b3b33 !important;
}

/* Center the entire form container */
.donate-form-wrapper {
  display: flex;
  justify-content: center;
  padding: 2rem 1rem;
  box-sizing: border-box;
  width: 100%;
}

  /* Responsive base fixes */
  *, *::before, *::after {
    box-sizing: border-box;
  }

  img, video {
    max-width: 100%;
    height: auto;
  }

  .navbar {
    flex-wrap: wrap;
  }

  /* Prevent horizontal scrolling */
  body {
    overflow-x: hidden;
  }

/* Consolidated mobile styles */
@media (max-width: 768px) {
  /* Body and base styles */
  body {
    font-size: 16px;
    line-height: 1.5;
  }

  /* Navigation */
  .navbar {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
  }
  .nav-left {
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }
  .nav-links {
    flex-direction: column;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    width: 100%;
  }
  .nav-links li {
    text-align: center;
  }
  .donate-button {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
    padding: 0.75rem 1rem;
  }
  .logo {
    width: 80px;
    height: auto;
  }
  .nav-title {
    font-size: 1rem;
    text-align: center;
  }

  /* Hero section */
  .hero {
    padding: 1rem 1rem 2rem 1rem;
    min-height: 80vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .hero-text h1 {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 0.8rem;
    word-break: break-word;
  }
  .hero-text h2 {
    font-size: 1.1rem;
    line-height: 1.3;
    margin-bottom: 0.8rem;
    word-break: break-word;
  }
  .hero-text p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    word-break: break-word;
  }
  .hero-text-overlay {
    padding: 1.5rem 1.5rem 2rem 1.5rem;
    max-width: 95%;
    margin: 0 auto;
  }
  .hero-donate {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    width: 100%;
    margin-top: 1rem;
  }

  /* Campaign section */
  .campaign {
    padding: 1rem;
    min-height: auto;
  }
  .campaign-image {
    height: 45vh;
    border-radius: 8px;
    min-height: 200px;
    max-height: 300px;
  }
  .campaign-bar {
    padding: 1rem;
    width: 95%;
    font-size: 0.85rem;
    gap: 0.4rem;
  }
  .campaign-bar span {
    text-align: center;
    line-height: 1.3;
    margin-bottom: 0.3rem;
  }
  .progress-container {
    margin: 0.5rem 0;
    width: 100%;
  }

  /* Reality section */
  .reality {
    background-color: rgba(255, 255, 255, 0.9);
    background-blend-mode: overlay;
    padding: 2rem 1rem;
    margin-bottom: 2rem;
  }
  .reality h2 {
    font-size: 1.5rem;
  }
  .reality ul li {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    word-break: break-word;
  }

  /* About page */
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-section {
    padding: 1.5rem;
  }

  /* Footer */
  .footer {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1rem;
  }
  .footer-left, .footer-center, .footer-right {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .footer-left {
    margin-bottom: 1rem;
  }
  .footer-center p {
    font-size: 0.9rem;
  }
  .social-links {
    margin-top: 1rem;
  }
  .social-links a {
    display: inline-block;
    margin: 0.25rem 0.5rem;
    font-size: 0.9rem;
  }
}

  /* Medium tablets and large phones */
  @media (max-width: 992px) {
    .hero-text-overlay {
      max-width: 85%;
    }
    .reality {
      padding: 3rem 1.5rem;
    }
    .mission {
      padding: 3rem 1.5rem;
    }
  }

  /* Small phones and narrow screens */
  @media (max-width: 480px) {
    .navbar {
      padding: 0.75rem;
    }
    .nav-title {
      font-size: 0.9rem;
      line-height: 1.2;
    }
    .logo {
      width: 60px;
    }

  .hero {
    min-height: 80vh;
    padding: 1rem 0.75rem 2rem 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-text h1 {
    font-size: 1.4rem;
    line-height: 1.1;
    margin-bottom: 0.6rem;
  }
  .hero-text h2 {
    font-size: 0.95rem;
    line-height: 1.2;
    margin-bottom: 0.6rem;
  }
  .hero-text p {
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 2.5rem;
  }
  .hero-text-overlay {
    padding: 1rem 1rem 2rem 1rem;
    max-width: 98%;
  }
  .hero-donate {
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    width: 100%;
    margin-top: 1.5rem;
  }    .reality {
      padding: 2rem 1rem;
      margin-bottom: 2rem;
    }

    .mission {
      padding: 2rem 1rem;
      margin-top: 2rem;
      clear: both;
    }
    .mission h2 {
      font-size: 1.5rem;
    }
    .mission p {
      font-size: 0.9rem;
    }
    .mission-buttons {
      flex-direction: column;
      gap: 0.75rem;
    }
    .btn-yellow, .btn-dark {
      width: 100%;
      padding: 0.75rem 1rem;
    }

    .campaign-image {
      min-height: 180px;
      max-height: 220px;
      height: 40vh;
    }
    .campaign-bar {
      padding: 0.75rem;
      width: 98%;
      font-size: 0.8rem;
      gap: 0.3rem;
    }
    .campaign-bar span {
      font-size: 0.8rem;
      line-height: 1.2;
      text-align: center;
    }
    .progress-container {
      margin: 0.4rem 0;
      width: 100%;
    }

    .footer {
      padding: 1rem 0.75rem;
    }
    .social-links a {
      font-size: 0.8rem;
      margin: 0.2rem 0.3rem;
    }
  }

.donation-tiers {
  margin: 2rem 0;
}

.tiers-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.tier-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 1.5rem;
  flex: 1 1 200px;
  max-width: 220px;
  text-align: center;
  transition: transform 0.2s;
}

.tier-card:hover {
  transform: translateY(-5px);
}

.tier-card h4 {
  margin-bottom: 0.5rem;
  color: #d32f2f; /* optional accent color */
}

.tier-card p {
  font-size: 0.95rem;
}

/* ========== GLOBAL STYLING ========== */

body {
  background-color: #f6f3ee;
  color: #302423;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.7;
  margin: 0;
  padding: 0;
}

main {
  display: block;
  width: 100%;
}

/* ========== PRIVACY POLICY PAGE STYLING ========== */

.privacy-content {
  max-width: 900px;
  margin: 100px auto;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

.privacy-content h1 {
  font-size: 2.6rem;
  font-weight: 900;
  margin-bottom: 30px;
  text-align: center;
  color: #302423;
  border-bottom: 3px solid #FBDE4A;
  padding-bottom: 10px;
}

.privacy-content h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 40px 0 15px;
  color: #302423;
  border-left: 6px solid #FBDE4A;
  padding-left: 16px;
}

.privacy-content p,
.privacy-content li {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #302423;
}

.privacy-content ul {
  margin-left: 20px;
  padding-left: 10px;
  list-style: disc;
}

.privacy-content em {
  font-style: italic;
  color: #666;
}

.privacy-content strong {
  font-weight: 700;
  color: #302423;
}

.container {
  max-width: 1000px; /* keeps content from stretching too wide */
  margin: 0 auto;    /* centers content horizontally */
  padding: 0 20px;   /* adds space from screen edges */
}

.donate-section h2,
.donation-tiers h3,
.donate-cta p,
.campaign-intro p {
  text-align: center; /* centers headings and paragraphs */
}

.donate-section h2 {
  font-size: 3rem;   /* bigger size, adjust as needed */
  font-weight: 900;  /* makes it bold and impactful */
  text-align: center; /* keep it centered */
  margin-bottom: 1rem; /* spacing below heading */
  color: #d32f2f;    /* optional accent color */
}

/* Mobile navigation toggle styles */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #FBDE4A;
  cursor: pointer;
  padding: 0.5rem;
}

/* VOC page specific styles */
.trigger-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.trigger-popup.active {
  display: flex;
}

.trigger-box {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  max-width: 400px;
  margin: 1rem;
  text-align: center;
  position: relative;
}

.trigger-box button {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.voices-page {
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* About page mission box fix */
.mission-box {
  position: relative;
  padding: 2rem 2rem 3rem 2rem !important;
}

/* Donate page Ko-fi iframe responsive */
#kofiframe {
  width: 100% !important;
  max-width: 600px;
  margin: 0 auto;
  display: block;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
    position: absolute;
    right: 1rem;
    top: 1.2rem;
    z-index: 10;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    background: #302423;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 5;
  }
  .nav-links.nav-open {
    display: flex;
  }

  /* VOC page testimonies mobile */
  .testimony {
    margin-bottom: 2rem;
    border-radius: 8px;
  }
  .testimony img {
    height: 300px;
    object-fit: cover;
  }
  .testimony-text {
    position: static;
    background: rgba(48, 36, 35, 0.9);
    padding: 1.5rem;
    margin-top: -5px;
  }
  .testimony-text h3 {
    font-size: 1.2rem;
  }
  .testimony-text p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  /* Trigger popup mobile */
  .trigger-box {
    max-width: 90%;
    padding: 1.5rem;
  }

  /* About page mobile */
  .mission-box {
    padding: 1.5rem 1.5rem 2.5rem 1.5rem !important;
    margin: 2rem auto !important;
  }

  /* Donate page mobile */
  .tiers-container {
    flex-direction: column;
    align-items: center;
  }
  .tier-card {
    max-width: 100%;
    width: 100%;
    margin-bottom: 1rem;
  }
  #kofiframe {
    height: 600px !important;
  }
}

@media (min-width: 769px) {
  .nav-toggle {
    display: none;
  }
  .nav-links {
    display: flex !important;
    position: static;
    background: none;
    box-shadow: none;
    flex-direction: row;
    width: auto;
    padding: 0;
  }
}

@media (max-width: 480px) {
  /* VOC page very small screens */
  .testimony img {
    height: 250px;
  }
  .testimony-text {
    padding: 1rem;
  }
  .testimony-text h3 {
    font-size: 1.1rem;
  }
  .testimony-text p {
    font-size: 0.85rem;
  }

  /* Reality and Mission sections spacing fix */
  .reality {
    padding: 1.5rem 0.5rem;
    margin-bottom: 3rem;
  }
  .mission {
    padding: 2rem 0.5rem;
    margin-top: 3rem;
    clear: both;
  }
  .mission h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  .mission p {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
  }

  /* About page very small screens */
  .about-section {
    padding: 1rem;
  }
  .mission-box {
    padding: 1rem 1rem 2rem 1rem !important;
  }

  /* Donate page very small screens */
  .donate-section h2 {
    font-size: 2rem;
  }
  #kofiframe {
    height: 550px !important;
  }
}

/* Additional responsive fixes for all pages */
/* Responsive base fixes */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Responsive typography */
h1, h2, h3, h4, h5, h6 {
  word-wrap: break-word;
  hyphens: auto;
}

p, li {
  word-wrap: break-word;
  hyphens: auto;
}

/* Responsive navigation base */
.navbar {
  position: relative;
}

/* Responsive forms and iframes */
iframe {
  max-width: 100%;
}

/* Additional mobile typography and spacing fixes */
@media (max-width: 768px) {
  /* General typography */
  h1 {
    font-size: 2rem !important;
    line-height: 1.2;
  }

  h2 {
    font-size: 1.5rem !important;
    line-height: 1.3;
  }

  h3 {
    font-size: 1.2rem !important;
  }

  p {
    font-size: 1rem;
    line-height: 1.6;
  }

  /* Privacy page specific */
  .privacy-content {
    margin: 20px auto;
    padding: 20px;
  }

  .privacy-content h1 {
    font-size: 2rem !important;
  }

  .privacy-content h2 {
    font-size: 1.3rem !important;
  }

  /* About page specific */
  .about-page {
    padding: 2rem 1rem;
  }

  .about-page h1 {
    font-size: 2rem !important;
  }

  /* All pages footer spacing */
  .footer-bottom {
    font-size: 0.8rem;
    padding: 1rem 0;
  }
}
