/* Colors */
:root {
  --green: #228b22;
  --gold: #daa520;
  --pink: #ffc0cb;
  --light: #f9f9f9;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: "Open Sans", sans-serif;
  color: #333;
  line-height: 1.6;
  background: #fff;
  overflow-x: hidden;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  color: #228b22;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px; /* Tighter on mobile for full-width feel */
  }
}

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

/* Header */
/* ─────────────── Modern & Fully Responsive Header ─────────────── */

/* Header */
.header {
  background: var(--gold);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: background 0.3s ease;
}

/* Container */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Logo */
.logo img {
  height: 70px; /* Smaller for better balance */
  width: auto;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  transition: transform 0.4s ease;
}

.logo img:hover {
  transform: scale(1.08);
}

/* Navigation */
.nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.nav-list a {
  color: #111;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  padding: 8px 4px;
  transition: color 0.3s ease;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--green);
}

.nav-list a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-list a:hover::after,
.nav-list a.active::after {
  width: 60%;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 180px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  padding: 12px 0;
  margin-top: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: #333;
  font-size: 0.95rem;
}

.dropdown-menu li a:hover {
  background: #f8f9fa;
  color: var(--green);
}

/* Right Side: Donate + Toggle */
.header-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-donate {
  padding: 12px 36px;
  font-size: 1.05rem;
  font-weight: 600;
  background: var(--green);
  color: white;
  border-radius: 9999px;
  box-shadow: 0 6px 20px rgba(30,77,30,0.2);
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.nav-donate:hover {
  background: #164016;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(30,77,30,0.3);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--green);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.nav-toggle:hover {
  transform: rotate(90deg);
}

/* ─────────────── Mobile Menu ─────────────── */
/* ─────────────── Mobile Menu – Fixed, Smooth, No Overlap, Clean Icon ─────────────── */

@media (max-width: 992px) {
  /* Hide desktop nav layout */
  .nav {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    transition: 
      transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.45s ease,
      visibility 0.45s ease;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .nav.show {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    gap: 1.2rem;
    text-align: center;
    list-style: none;
    padding: 0 24px;
    margin: 0;
    width: 100%;
    max-width: 420px;
  }

  .nav-list a {
    font-size: 1.2rem;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    padding: 18px 0;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s, background 0.3s;
    border-radius: 12px;
  }

  .nav-list a:hover,
  .nav-list a:focus {
    color: var(--green);
    background: rgba(30, 77, 30, 0.08);
  }

  /* Dropdown in mobile – tap to expand with arrow */
  .dropdown > a::after {
    content: " ▼";
    font-size: 0.9rem;
    margin-left: 12px;
    transition: transform 0.3s;
  }

  .dropdown.active > a::after {
    transform: rotate(180deg);
  }

  .dropdown-menu {
    position: static;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 16px 0 0 0;
    margin: 0;
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    font-size: 1.8rem;
    padding: 14px 0;
  }

  /* Hamburger button – no rotation, only icon swap */
  .nav-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--green);
    cursor: pointer;
    z-index: 10001;
    padding: 12px;
    transition: transform 0.3s ease;
  }

  .nav-toggle:hover,
  .nav-toggle.active {
    transform: scale(1.12);
  }

  /* Force solid FA icons – fixes upside-down/broken × */
  .nav-toggle i {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
  }

  /* Hamburger → clean × when active */
  .nav-toggle.active i::before {
    content: "\f00d" !important; /* fa-times */
  }
}

/* Very small phones (< 480px) */
@media (max-width: 480px) {
  .nav-list a {
    font-size: 2rem;
    padding: 16px 0;
  }

  .nav-toggle {
    font-size: 2.2rem;
  }
}

/* Hero */
.hero {
  position: relative;
  background: url("../images/wog-19.jpeg") center/cover no-repeat;
  height: 110vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: bolder;
  color: #fff;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.4rem;
  font-weight: bolder;
  color: #fff;
  margin: 1.5rem 0;
  padding-bottom: 2.5rem;
}

/* Buttons */
.btn {
  padding: 15px 65px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.4s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background: #f5aa1d;
  color: white;
}

.btn-primary:hover {
  background: #fda502;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(34, 139, 34, 0.4);
}

.btn-secondary {
  background: var(--gold);
  color: #333;
}

.btn-secondary:hover {
  background: #c4941b;
  transform: translateY(-5px);
}

.btn-outline {
  border: 3px solid white;
  color: white;
  background: transparent;
}

.btn-outline:hover {
  background: white;
  color: var(--green);
}

/* ─────────────── Mobile Fixes – Phones & Small Screens ─────────────── */

@media (max-width: 768px) {
  .hero {
    min-height: 60vh;
    padding: 80px 0 60px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 7vw, 3.8rem);
  }

  .hero p {
    font-size: clamp(1rem, 3.5vw, 1.3rem);
    margin-bottom: 2rem;
  }

  .hero-buttons {
    flex-direction: column;           /* Stack buttons vertically */
    align-items: center;
    gap: 18px;
  }

  .btn {
    width: 100%;                      /* Full-width on mobile */
    max-width: 340px;                 /* Caps width so it doesn't stretch edge-to-edge */
    padding: 16px 32px;
    font-size: 1.1rem;
    min-width: unset;                 /* Override desktop min-width */
  }
}

/* Extra small phones (< 480px) */
@media (max-width: 480px) {
  .hero {
    padding: 60px 0 50px;
  }

  .btn {
    padding: 14px 28px;
    font-size: 1rem;
    max-width: 100%;
  }
}
/* Our Mission Section */
.mission-section {
  padding: 100px 0;
  background: linear-gradient(
    to bottom,
    #fff5f8 0%,
    white 100%
  ); /* Soft warm gradient */
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mission-image img {
  width: 100%;
  height: auto;
  object-fit: fill;
  transform: scale(1);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.4s;
}

.mission-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 30px 60px rgba(34, 139, 34, 0.2);
}

.mission-content {
  padding: 20px;
}

.mission-content h2 {
  font-size: 2.8rem;
  color: var(--green);
  margin-bottom: 20px;
  font-weight: bolder;
}

.mission-subtitle {
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 600;
}

.mission-quote {
  font-size: 1.4rem;
  font-style: italic;
  color: var(--green);
  margin: 30px 0;
  padding: 20px;
  border-left: 5px solid var(--gold);
  background: rgba(255, 192, 203, 0.1);
  font-family: "Playfair Display", serif;
}

.mission-values {
  list-style: none;
  margin: 30px 0;
}

.mission-values li {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #555;
}

.mission-values i {
  color: var(--gold);
  margin-right: 10px;
  font-size: 1.3rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .mission-image {
    order: -1; /* Image on top for mobile */
  }
  .mission-content {
    text-align: center;
  }
  .mission-quote {
    font-size: 1.2rem;
    padding: 15px;
  }
}

/* Partners Section */
.partners-section {
  background: white;
  padding: 80px 0;
}

.partners-section h2 {
  color: var(--gold);
  font-size: 2.5rem;
  font-weight: bolder;
  margin-bottom: 40px;
}

.partners-subtitle {
  color: #666;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.partners-slider {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.partners-track {
  display: flex;
  animation: slide 30s linear infinite;
}

.partner-logo {
  flex: 0 0 auto;
  margin: 0 40px;
  transition: all 0.4s;
}

.partner-logo img {
  height: 80px;
  width: auto;
  filter: grayscale(100%);
  transition: all 0.4s;
}

.partner-logo:hover img {
  filter: grayscale(0%);
  transform: scale(1.15);
}

.partner-logo:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Infinite slide animation */
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause on hover */
.partners-slider:hover .partners-track {
  animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
  .partner-logo {
    margin: 0 20px;
  }

  .partner-logo img {
    height: 60px;
  }
}

/* Impact Stats Section */
.impact-stats {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    #f9f9f9 0%,
    #fff5f8 100%
  ); /* Subtle pink tint for warmth */
}

.impact-stats h2 {
  color: var(--green);
  font-size: 2.5rem;
  font-weight: bolder;
  margin-bottom: 40px;
}

.impact-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.impact-card {
  background: white;
  padding: 40px 20px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.impact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--green), var(--gold));
}

.impact-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(34, 139, 34, 0.2);
}

.impact-icon {
  font-size: 3.5rem;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.impact-card h3 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--green);
  margin: 15px 0;
  font-family: "Playfair Display", serif;
}

.impact-card p {
  font-size: 1.1rem;
  color: #555;
  margin: 0;
}

/* Optional Animated Counter (add this JS at bottom of page) */
.counter {
  font-weight: 800;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .impact-stats {
    padding: 80px 0;
  }
  .impact-subtitle {
    font-size: 1.1rem;
    padding: 0 20px;
  }
  .impact-grid {
    gap: 30px;
    padding: 0 20px;
  }
  .impact-card {
    padding: 30px 15px;
  }
  .impact-icon {
    font-size: 3rem;
  }
  .impact-card h3 {
    font-size: 3rem;
  }
}

/* Featured Programs Section */
.programs-section {
  padding: 100px 0;
  background: var(--light); /* Or #fff5f8 for soft warmth */
}

.programs-section h2 {
  color: var(--green);
  font-size: 2.5rem;
  font-weight: bolder;
  /* margin-bottom: 40px; */
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 40px;
}

.program-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  text-align: center;
}

.program-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(34, 139, 34, 0.15);
}

.program-image {
  position: relative;
  overflow: hidden;
}

.program-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.program-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  transition: opacity 0.4s;
}

.program-card:hover .program-overlay {
  opacity: 1;
}

.program-content {
  padding: 30px 20px;
}

.program-content h3 {
  font-size: 1.6rem;
  color: var(--green);
  margin-bottom: 15px;
}

.program-content p {
  color: #555;
  margin-bottom: 20px;
}

/* Mobile */
@media (max-width: 768px) {
  .programs-section {
    padding: 80px 0;
  }
  .programs-grid {
    gap: 10px;
  }
  .program-image img {
    height: 240px;
  }
  .program-overlay {
    font-size: 3rem;
  }
}

/* Upcoming Events Section */
/* Upcoming Events Section */
/* Featured Event Card */
.event-featured-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  max-width: 900px;
  margin: 0 auto;
  transition: transform 0.4s ease;
}

.event-featured-card:hover {
  transform: translateY(-12px);
}

.event-hero-image img {
  width: 100%;
  height: auto;
  max-height: 440px;
  object-fit: cover;
}

.event-content {
  padding: 40px 32px;
  text-align: center;
}

.event-badge {
  display: inline-block;
  background: var(--green);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.event-content h3 {
  color: var(--green);
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.event-content h4 {
  color: #555;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
  font-size: 1.1rem;
  color: #444;
}

.meta-item i {
  color: var(--gold);
  margin-right: 8px;
}

.event-theme {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--green);
  margin: 24px 0;
}

.event-cta p {
  font-size: 1.2rem;
  color: #555;
}

/* Modal */
/* Modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.show {
  display: flex;
}

.modal-content {
  background: white;
  border-radius: 20px;
  max-width: 580px;
  width: 100%;
  padding: 40px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2.8rem;
  color: #666;
  cursor: pointer;
}

.modal h2 {
  color: var(--green);
  margin-bottom: 32px;
  text-align: center;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #444;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
}

.form-message {
  padding: 16px;
  border-radius: 10px;
  margin-top: 20px;
  text-align: center;
}

/* Improved Modal Scroll & Button */
#registrationModal,
.modal-content {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

#registrationModal::-webkit-scrollbar,
.modal-content::-webkit-scrollbar {
  display: none;
}

#registrationForm button[type="submit"] {
  display: block;
  margin: 32px auto 0;
  width: 100%;
  max-width: 300px;
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 9999px;
  background: var(--green);
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

#registrationForm button[type="submit"]:hover {
  background: #164016;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(30,77,30,0.35);
}

/* Mobile – ensure button is easy to tap */
@media (max-width: 640px) {
  #registrationForm button[type="submit"] {
    padding: 16px 32px;
    font-size: 1.1rem;
    max-width: 100%;
  }
}

.form-success {
  background: rgba(30,77,30,0.1);
  color: var(--green);
}

.form-error {
  background: rgba(200,0,0,0.1);
  color: #c00;
}


/* Meet Our Team Section */
.team-section {
  padding: 100px 0;
  background: var(--light);
}

.team-section h2 {
  color: var(--green);
  font-size: 2.5rem;
  font-weight: bolder;
  /* margin-bottom: 40px; */
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.team-card {
  background: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  text-align: center;
}

.team-card:hover {
  transform: translateY(-20px);
  box-shadow: 0 30px 60px rgba(34, 139, 34, 0.15);
}

.team-image {
  position: relative;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.team-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, white 0%, transparent 100%);
}

.team-content {
  padding: 30px 25px;
}

.team-content h3 {
  font-size: 1.7rem;
  color: var(--green);
  margin-bottom: 8px;
}

.team-title {
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: bold;
  margin-bottom: 15px;
  display: block;
}

.team-bio {
  color: #555;
  line-height: 1.6;
  font-size: 1rem;
}

.mt-50 {
  margin-top: 50px;
}

/* Mobile */
@media (max-width: 768px) {
  .team-section {
    padding: 80px 0;
  }
  .team-grid {
    gap: 40px;
  }
  .team-image img {
    height: 320px;
  }
  .team-content {
    padding: 25px 20px;
  }
}

@media (min-width: 1200px) {
  .impact-grid,
  .programs-grid,
  .events-grid,
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Past Events Gallery */
.gallery-section {
  padding: 100px 0;
  background: var(--light);
}

.gallery-section h2 {
  color: var(--green);
  font-size: 2.5rem;
  font-weight: bolder;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); */
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: all 0.4s ease;
}

.gallery-img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(34, 139, 34, 0.2);
}

/* Lightbox Modal */
.lightbox {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.show {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 3rem;
  color: white;
  cursor: pointer;
  font-weight: bold;
}

#lightbox-caption {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1.2rem;
  background: rgba(0, 0, 0, 0.6);
  padding: 10px 20px;
  border-radius: 50px;
}

/* Responsive Grid */
@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
  }
  .gallery-img {
    height: 260px;
  }
}

/* Call to Action Section */
.cta-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(rgba(34, 56, 34, 0.85), rgba(171, 129, 25, 0.85)),
    url("../images/wog-003.jpeg") center/cover no-repeat;
  color: white;
  text-align: center;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4); /* Soft darken for text readability */
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.cta-section h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.cta-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  opacity: 0.95;
}

.cta-text {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 50px;
}

.btn-large {
  padding: 16px 40px;
  font-size: 1.3rem;
  font-weight: bold;
  border-radius: 50px;
  min-width: 220px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-primary.btn-large {
  background: var(--gold);
  color: #333;
}

.btn-primary.btn-large:hover {
  background: #c4941b;
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(218, 165, 32, 0.4);
}

.btn-secondary.btn-large {
  background: white;
  color: var(--green);
}

.btn-secondary.btn-large:hover {
  background: #f0f0f0;
  transform: translateY(-6px);
}

.btn-outline.btn-large {
  background: transparent;
  color: white;
  border: 3px solid white;
}

.btn-outline.btn-large:hover {
  background: white;
  color: var(--green);
}

/* Faith Quote */
.cta-quote {
  font-size: 1.3rem;
  font-style: italic;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
  line-height: 1.7;
}

.cta-quote i {
  font-size: 2rem;
  opacity: 0.6;
  margin: 0 10px;
}

/* Mobile */
@media (max-width: 768px) {
  .cta-section {
    padding: 100px 0;
  }
  .cta-section h2 {
    font-size: 2.4rem;
  }
  .cta-subtitle {
    font-size: 1.3rem;
  }
  .cta-text {
    font-size: 1.1rem;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .btn-large {
    width: 80%;
    max-width: 300px;
  }
  .cta-quote {
    font-size: 1.1rem;
    padding: 0 20px;
  }
}

/* Impact Stories Section */
.stories-section {
  padding: 100px 0;
  background: white;
}

.stories-section h2 {
  color: var(--green);
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.stories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .stories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
  }
}

.story-card {
  background: #f8f8f8;
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border-left: 6px solid var(--gold);
  position: relative;
  overflow: hidden;
}

.story-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(34, 139, 34, 0.15);
}

.story-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.story-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--gold);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.story-meta {
  margin-left: 20px;
}

.story-meta h3 {
  font-size: 1.6rem;
  color: var(--green);
  margin: 0 0 8px 0;
}

.location {
  font-size: 1rem;
  color: #666;
  margin: 0;
}

.story-quote {
  font-size: 1.3rem;
  font-style: italic;
  color: #444;
  line-height: 1.8;
  margin: 0 0 25px 0;
  padding-left: 20px;
  border-left: 4px solid var(--green);
}

.story-impact {
  background: rgba(218, 165, 32, 0.1);
  padding: 15px 20px;
  border-radius: 15px;
  font-weight: bold;
  color: var(--green);
  font-size: 1.1rem;
}

/* Mobile */
@media (max-width: 768px) {
  .stories-section {
    padding: 80px 0;
  }
  .story-card {
    padding: 30px;
  }
  .story-header {
    flex-direction: column;
    text-align: center;
  }
  .story-meta {
    margin-left: 0;
    margin-top: 15px;
  }
  .story-quote {
    font-size: 1.2rem;
  }
}

/* Testimonials Section */
.testimonials-section {
  padding: 100px 0;
  background: linear-gradient(to bottom, var(--light), #fff5f8);
}

.testimonials-section h2 {
  color: var(--green);
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.testimonials-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.carousel-track {
  display: flex;
  transition: transform 0.8s ease-in-out;
}

.testimonial-slide {
  min-width: 100%;
  padding: 60px 40px;
  background: white;
  text-align: center;
}

.testimonial-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid var(--gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
}

.testimonial-quote {
  font-size: 1.6rem;
  font-style: italic;
  color: #444;
  line-height: 1.8;
  margin: 0 auto 30px;
  max-width: 800px;
  position: relative;
}

.testimonial-quote::before,
.testimonial-quote::after {
  content: '"';
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
}

.testimonial-quote::before {
  top: -20px;
  left: -40px;
}

.testimonial-quote::after {
  bottom: -50px;
  right: -40px;
}

.testimonial-name {
  font-weight: bold;
  color: var(--green);
  font-size: 1.2rem;
}

/* Carousel Dots */
.carousel-dots {
  margin-top: 30px;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 8px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.4s;
}

.dot.active,
.dot:hover {
  background-color: var(--gold);
}

/* Auto-slide (optional – remove if you want manual only) */
@keyframes carouselAuto {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-100%);
  }
  45% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(-200%);
  }
  70% {
    transform: translateX(-200%);
  }
  75% {
    transform: translateX(-300%);
  }
  95% {
    transform: translateX(-300%);
  }
  100% {
    transform: translateX(0);
  }
}

.carousel-track {
  animation: carouselAuto 30s infinite linear;
}

.testimonials-carousel:hover .carousel-track {
  animation-play-state: paused;
}

/* Mobile */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 80px 0;
  }
  .testimonial-slide {
    padding: 40px 20px;
  }
  .testimonial-avatar {
    width: 100px;
    height: 100px;
  }
  .testimonial-quote {
    font-size: 1.4rem;
  }
}

/* Footer */
.footer {
  background: #1a3d1a; /* Deep green for elegance */
  color: white;
  padding: 80px 0 30px;
  margin-top: 50px;
}

.footer-container {
  max-width: 1400px;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}

.footer-col h4 {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: var(--gold);
}

.footer-logo img {
  height: 100px;
  border-radius: 50%;
  border: 4px solid var(--gold);
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 0.8rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 15px;
}

.tax-info {
  font-size: 0.6rem;
  opacity: 0.8;
  font-style: italic;
}

.footer-links,
.footer-contact {
  list-style: none;
}

.footer-links a,
.footer-contact li {
  margin-bottom: 12px;
  display: block;
  color: #ddd;
  transition: color 0.3s;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact i {
  color: var(--gold);
  margin-right: 10px;
  width: 20px;
}

.social-links {
  margin-top: 20px;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--gold);
  color: #333;
  transform: translateY(-5px);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.newsletter-form input {
  padding: 14px 20px;
  border-radius: 50px;
  border: none;
  font-size: 1rem;
  outline: none;
}

.newsletter-form .btn {
  padding: 14px;
  font-size: 1.1rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-bottom a {
  color: var(--gold);
  text-decoration: underline;
}

.footer-credit {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-credit a {
  color: var(--gold);
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px) {
  .footer {
    padding: 60px 0 30px;
  }
  .footer-grid {
    gap: 40px;
    text-align: center;
  }
  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .newsletter-form {
    align-items: center;
  }
  .newsletter-form input {
    width: 100%;
    max-width: 300px;
  }
}
