
:root {
  --blue: #2563EB;
  --pink: #EC4899;
  --yellow: #FACC15;
  --green: #22C55E;
  --red: #EF4444;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* NAVBAR */
.navbar {
  background: white;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
  position: fixed;        /* 📌 stick it to the top */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;         /* ensure it's above everything */
}


.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}
.navbar .logo {
  height: 40px;
}
.navbar nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.navbar nav ul li {
  margin-left: 20px;
}
.navbar nav ul li a {
  text-decoration: none;
  color: var(--black);
  font-weight: bold;
}
.navbar nav ul li a:hover {
  color: var(--pink);
}
/* Mobile responsive navbar */
.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--blue);
}

/* Default styles (desktop) */
#nav-menu {
  display: flex;
  z-index: 9999;
  position: relative;
}

/* Hide hamburger by default */
.hamburger {
  display: none;
}

/* Mobile styles */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  #nav-menu {
    display: none; /* hide by default on mobile */
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: white;
    border-top: 1px solid #ddd;
    z-index: 9999;
  }

  #nav-menu.show {
    display: flex; /* show when toggled */
  }

  #nav-menu ul {
    flex-direction: column;
    padding: 10px 20px;
  }

  #nav-menu ul li {
    margin: 10px 0;
  }

  .navbar .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}



/* HERO SLIDER */
.hero-slider {
  position: relative;
  width: 100%;
  height: 670px;
  overflow: hidden;
  margin-top: 70px; /* 👈 offset the fixed navbar */
}
.slider {
  position: absolute;
  width: 100%;
  height: 100%;
}
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.slide.active {
  opacity: 1;
}
.hero-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 20px;
}
.hero-logo {
  width: 150px;
  margin-bottom: 20px;
}
.hero-slider h1 {
  font-size: 48px;
  margin: 10px 0;
}
.tagline {
  font-style: italic;
  font-size: 20px;
}
.cta-buttons a {
  display: inline-block;
  background: white;
  padding: 10px 20px;
  margin: 10px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
}
.cta-buttons a:nth-child(1) { color: var(--blue); }
.cta-buttons a:nth-child(2) { color: var(--pink); }
.cta-buttons a:nth-child(3) { color: var(--yellow); }

.about-us {
  background: linear-gradient(135deg, #000000, #1a1a1a); /* Smooth black gradient */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.about-us h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #FACC15; /* yellow highlight */
}

.about-us p {
  font-size: 18px;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #eeeeee;
}

.about-us .btn {
  background: #FACC15;
  color: #000;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.about-us .btn:hover {
  background: #ffe75b;
}

.our-programs {
  padding: 80px 20px;
  background : #ffffff;
  text-align: center;
}

.our-programs h2 {
  font-size: 36px;
  color: var(--black);
  margin-bottom: 40px;
}

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

.program-card {
  position: relative;
  height: 420px;
  background: #fff;
  border-radius: 100px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.prog-img {
  width: 100%;
  height: 60%;
  background-size: cover;
  background-position: center;
}

.prog-content {
  text-align: center;
  padding: 15px;
}

.prog-content h3 {
  font-size: 24px;
  color: var(--black);
  margin: 0;
}

.prog-slide {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(0, 30, 34, 0.932);
  color: white;
  overflow-y: auto; /* <-- allows scrolling if content overflows */
  padding: 30px 20px;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  transition: left 0.6s ease;
  z-index: 5;
  box-sizing: border-box;
}

.prog-slide::-webkit-scrollbar {
  width: 6px;
}
.prog-slide::-webkit-scrollbar-thumb {
  background: var(--yellow);
  border-radius: 3px;
}
.program-card.visible .prog-slide {
  left: 0;
}

.footer {
  background: linear-gradient(135deg, #1f2937, #111827);
  color: #f3f4f6;
  padding: 60px 20px 30px;
  font-size: 14px;
}

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

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

.footer-logo {
  width: 80px;
  margin-bottom: 10px;
}

.footer-tagline {
  font-size: 15px;
  line-height: 1.6;
  color: #e5e7eb;
}

.footer-links ul,
.footer-help ul {
  list-style: none;
  padding: 0;
}

.footer-links h4,
.footer-help h4,
.footer-contact h4 {
  color: #FACC15;
  margin-bottom: 10px;
  font-size: 16px;
}

.footer-links ul li,
.footer-help ul li {
  margin-bottom: 6px;
}

.footer-links a,
.footer-help a,
.footer-contact a {
  color: #f3f4f6;
  text-decoration: none;
}

.footer-links a:hover,
.footer-help a:hover {
  color: #FACC15;
}

.footer-contact p {
  margin: 6px 0;
  color: #d1d5db;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.footer-socials a .icon {
  width: 24px;
  height: 24px;
  color: #facc15; /* logo yellow */
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-socials a:hover .icon {
  transform: scale(1.2);
  color: #ffffff;
}

.footer-socials a:hover img {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #374151;
  padding-top: 20px;
  color: #9ca3af;
}

/*ABOUT US PAGE*/
.about-intro, .about-unique {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f472b6, #facc15);
  color: #1f2937;
  text-align: center;

}

.about-intro h2,
.about-unique h2 {
  font-size: 36px;
  color: var(--white);
  margin-bottom: 20px;
}

.about-intro p,
.about-unique p {
  max-width: 900px;
  margin: auto;
  font-size: 18px;
  line-height: 1.7;
}

.about-values {
  position: relative;
  overflow: hidden;
  color: #f3f4f6;
  padding: 80px 20px;
}

.about-values::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('images/valuesbg.jpg') center/cover no-repeat;
  z-index: -2;
  transform: scale(1);
  transition: transform 10s ease;
  filter: brightness(0.3);
}

.about-values:hover::before {
  transform: scale(1.1);
}

.about-values .overlay {
  position: relative;
  z-index: 1;

  padding: 60px 20px;
}
.about-values .values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  padding-top: 20px;
}

.value-box {
  background: rgba(31, 41, 55, 0.8); /* dark card */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 0 12px rgba(0,0,0,0.2);
}

.value-box h3 {
  font-size: 22px;
  color: #FACC15;
  margin: 10px 0;
}

.value-box p, .value-box ul {
  font-size: 16px;
  line-height: 1.6;
  color: #f3f4f6;
}

.value-box ul {
  list-style-type: square;
  text-align: left;
  margin-top: 10px;
  padding-left: 20px;
}

.value-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}
/* Call to Action */
.about-cta {
  background: linear-gradient(135deg, #1f2937, #111827);
  color: #f3f4f6;
  padding: 80px 20px;
  text-align: center;
}

.about-cta h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #FACC15;
}

.about-cta p {
  max-width: 700px;
  margin: auto;
  font-size: 18px;
  margin-bottom: 30px;
}

.cta-btn {
  background-color: #FACC15;
  color: #1f2937;
  padding: 12px 24px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background-color: #eab308;
}
/* PROGRAMS PAGE*/


.programs-page-hero {
  background: url(images/11.jpg )center;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.programs-page-overlay {
  background: rgba(0, 0, 0, 0.5);
  padding: 40px;
  width: 100%;
}

.programs-page-hero h1 {
  font-size: 48px;
  color: #facc15;
}

.programs-page-hero p {
  font-size: 18px;
  max-width: 700px;
  margin: 20px auto 0;
}

/* SECTION */
.programs-page-section {
  padding: 80px 20px;
}

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

.programs-page-card {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.programs-page-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.programs-page-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: brightness(0.9);
}

.programs-page-text {
  padding: 20px;
}

.programs-page-text h3 {
  font-size: 22px;
  color: #facc15;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.programs-page-text p {
  font-size: 16px;
  line-height: 1.5;
}

.programs-page-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(45deg, #f472b6, #facc15, #2563eb);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.programs-page-card:hover::after {
  opacity: 1;
}


.programs-cta-section {
  background: linear-gradient(135deg, #f472b6, #facc15);
  padding: 80px 20px;
  color: #111827;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.programs-cta-container {
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-in-out;
}

.programs-cta-heading {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1f2937;
}

.programs-cta-subtext {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #1f2937;
  line-height: 1.6;
}

.programs-cta-button {
  background: #111827;
  color: #facc15;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1rem;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.programs-cta-button:hover {
  background: #1f2937;
  color: #fff;
  transform: scale(1.05);
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  color: #1f2937;
}

/* HERO */
.donate-hero {
  background: linear-gradient(135deg, #f472b6, #facc15);
  height: 65vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.donate-hero-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 40px;
  width: 100%;
  color: #fff;
}

.donate-hero h1 {
  font-size: 40px;
  margin-bottom: 20px;
  color: #fff;
}

.scripture-text {
  font-size: 18px;
  font-style: italic;
  color: #facc15;
  transition: opacity 1s ease;
}

/* IMPACT */
.donate-impact {
  padding: 60px 20px;
  text-align: center;
  background-color: #fafafa;
}

.donate-impact h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.donate-impact-grid {
  display: grid;
  gap: 20px;
  max-width: 900px;
  margin: 30px auto 0;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.impact-card {
  background: #111827;
  color: #f3f4f6;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.impact-card h3 {
  font-size: 24px;
  color: #facc15;
}

/* HOW TO GIVE */
.donate-how {
  background: #fefce8;
  padding: 60px 20px;
  text-align: center;
}

.donate-how h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.donate-how ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 500px;
  font-size: 18px;
}

.donate-how li {
  margin: 10px 0;
}

.coming-soon {
  margin-top: 30px;
  font-style: italic;
  color: #6b7280;
}

/* FINAL CTA */
.donate-final-cta {
  background: linear-gradient(135deg, #f472b6, #facc15);
  padding: 60px 20px;
  text-align: center;
  color: #111827;
}

.donate-final-cta h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.donate-btn {
  background: #111827;
  color: #facc15;
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
}

.donate-btn:hover {
  background: #1f2937;
  color: white;
}

.donate-thankyou {
  margin-top: 20px;
  font-style: italic;
  color: #1f2937;
}

.contact-section {
  padding: 4rem 2rem;
  background: linear-gradient(to right, #fff7f9, #fffdf2);
  font-family: 'Segoe UI', sans-serif;
}

.contact-hero {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #e91e63;
}

.contact-subtitle {
  font-size: 1.2rem;
  color: #555;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
}

.contact-info, .contact-form {
  flex: 1 1 300px;
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-info h2,
.contact-form h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #222;
}

.contact-info p,
.contact-info a {
  margin: 0.4rem 0;
  color: #333;
  text-decoration: none;
}

.social-icons {
  margin-top: 0.8rem;
  display: flex;
  gap: 1rem;
}

.social-icons img {
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  font-size: 1rem;
}

.btn-submit {
  background: #ffc107;
  color: #000;
  padding: 0.8rem 1.2rem;
  border: none;
  font-weight: bold;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-submit:hover {
  background: #ffb300;
}

.scripture-banner {
  text-align: center;
  margin-top: 3rem;
  padding: 1rem;
  font-style: italic;
  font-size: 1.1rem;
  background: #fce4ec;
  border-left: 4px solid #e91e63;
  color: #880e4f;
  animation: fadeInScripture 5s ease-in-out infinite alternate;
}

@keyframes fadeInScripture {
  0% { opacity: 0.3; }
  100% { opacity: 1; }
}












