/* -----------------------------
   GLOBAL STYLES
------------------------------ */
** { 
  margin: 0; 
  padding: 0; 
}
html,body { 
  height: 100%; 
  scroll-behavior: smooth;
}
body {
  font-family: 'Poppins', sans-serif;
  background: #f7f7f7;
  color: #1f2937;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* container */
.container { 
  width: 90%; 
  max-width: 1200px; 
  margin: 0 auto;
}

/* HEADER - ensure stacking above page content */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  /* increased vertical breathing room so header doesn't feel cramped */
  padding: 6px 0;
}

/* NAV INNER */
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  /* more vertical space for stacked logo + controls */
  padding: 32px 0;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* LEFT (LOGO) */
.nav-left { justify-self: start; }
.logo {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  letter-spacing: 0.2px;
  /* ensure multi-line logo has comfortable spacing */
  display: inline-block;
  max-width: 260px;
  line-height: 1.4;
  word-break: break-word;
  padding-right: 6px;
}

/* CENTER (NAV LINKS) */
.nav-center {
  display: flex;
  gap: 34px;
  justify-content: center;
  align-items: center;
}

.nav-center a {
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2px;
  padding: 6px 8px;
  transition: color 0.3s, border-bottom 0.3s;
}

.nav-center a:hover,
.nav-center a.active {
  color: #F5C324;
  border-bottom: 2px solid #F5C324;
}

/* RIGHT (BOOK + HAMBURGER) */
.nav-right {
  justify-self: end;
  display:flex;
  align-items:center;
  gap:24px; /* increased gap for breathing room */
}

.book-btn {
  background: #F5C324;
  color: #1b1b1b;
  /* larger clickable area */
  padding: 12px 22px;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
  transition: transform .12s ease, box-shadow .12s ease;
  font-size: 15px;
}

/* REDESIGNED HAMBURGER (visible on small screens) */
.hamburger {
  display: none; /* shown in media query */
  align-items: center;
  justify-content: center;
  flex-direction: column; /* stack bars vertically */
  width: 48px;  /* slightly bigger for touch */
  height: 48px;
  background: #F5C324;
  border-radius: 10px;
  border: none;
  box-shadow: 0 6px 14px rgba(0,0,0,0.18);
  cursor: pointer;
  padding: 8px;
  transition: transform .15s ease, box-shadow .15s ease;
}

.hamburger:focus { outline: 3px solid rgba(0,0,0,0.08); outline-offset: 2px; }

.hamburger .bar {
  width: 22px;
  height: 3px;
  background: #111827;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
  display: block;
}

.hamburger .bar + .bar { margin-top: 7px; }

/* active/open state */
.hamburger.active .bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.active .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active .bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* MOBILE MENU - three large buttons */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  padding: 16px;
  z-index: 1001;
  gap: 12px;
  flex-direction: column;
  align-items: stretch;
  box-sizing: border-box;
}

/* shown when JS toggles "open" */
.mobile-menu.open {
  display: flex;
}

/* mobile buttons */
.mobile-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 16px;
  background: #f3f4f6;
  color: #111827;
  text-decoration: none;
  font-weight: 700;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}

.mobile-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

/* primary CTA button */
.mobile-btn.primary {
  background: #F5C324;
  color: #111827;
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

/* ensure old link styles don't override */
.mobile-menu a { color: inherit; text-decoration: none; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-center { display: none; }
  .hamburger { display: inline-flex; }
}


/* -----------------------------
   HERO
------------------------------ */
.hero {
  position: relative;
  height: 820px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* hero background image */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* dark overlay for contrast */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,5,5,0.45);
  z-index: 1;
}

/* content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 950px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 72px;
  line-height: 0.95;
  font-weight: 800;
  margin-bottom: 22px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

/* subtitle with dots */
.hero-sub {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.95);
  font-size: 18px;
}

.hero-sub .dot {
  width: 8px;
  height: 8px;
  background: #F5C324;
  border-radius: 50%;
  display: inline-block;
}

/* description */
.hero-desc {
  margin: 18px 0 26px;
  color: rgba(255,255,255,0.92);
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  line-height: 1.7;
}

/* hero CTA */
.hero-btn {
  background: #F5C324;
  color: #111827;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 26px rgba(0,0,0,0.28);
}

/* ------------------------------- */
/*        WHO WE ARE SECTION       */
/* ------------------------------- */

.who-we-are {
  background: #ffffff;
  padding: 90px 20px;
  text-align: center;
  color: #1f2937;
  font-family: "Poppins", sans-serif;
}

.who-we-are .subtitle {
  font-size: 1.1rem;
  color: #6b7280;
  margin-bottom: 16px;
  font-weight: 500;
}

.who-we-are h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1b1b1b;
}

.who-we-are p {
  max-width: 820px;
  margin: 0 auto 35px auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4b5563;
  font-weight: 400;
}

/* BUTTON */
.btn.mission-btn {
  background: #facc15;
  color: #111827;
  font-weight: 600;
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.25s ease;
  display: inline-block;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.btn.mission-btn:hover {
  background: #eab308;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

/* Responsive */
@media (max-width: 600px) {
  .who-we-are h2 {
    font-size: 2rem;
  }
  .who-we-are p {
    font-size: 1rem;
  }
}

/* ------------------------------- */
/*        SERVICES SECTION         */
/* ------------------------------- */

.services {
  padding: 90px 0;
  background: #f9fafb;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  color: #1b1b1b;
  font-family: "Poppins", sans-serif;
}

.section-sub {
  font-size: 16px;
  text-align: center;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto 50px auto;
  font-family: "Poppins", sans-serif;
}

/* Grid layout */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Service card */
.service-card {
  background: #ffffff;
  padding: 30px 26px;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
}

.service-card p {
  font-size: 15px;
  color: #4b5563;
  margin-bottom: 16px;
  font-family: "Poppins", sans-serif;
}

/* Bullet list */
.service-card ul {
  padding-left: 20px;
  margin-top: 12px;
  text-align: left;
}

.service-card ul li {
  font-size: 14px;
  color: #374151;
  margin-bottom: 8px;
  position: relative;
  font-family: "Poppins", sans-serif;
}

/* Custom bullet */
.service-card ul li::before {
  content: "•";
  color: #f5c324;    /* gold */
  font-weight: 900;
  position: absolute;
  left: -14px;
  top: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}



/* -----------------------------
   PASTOR SECTION
------------------------------ */
.pastor {
    padding: 60px 20px;
    background: #f9fafb;
}

.pastor-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.pastor-img img {
    width: 100%;
    border-radius: 12px;
    max-width: 400px;
    height: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: block;

}

.pastor-content {
    flex: 1;
    min-width: 300px;
}

.pastor-content h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #111827;
}
.pastor-name {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #1f2937;
}

.pastor-role {
  font-weight: bold;
    color: #6b7280;
    margin-bottom: 20px;
}
.pastor-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #374151;
  margin-bottom: 15px;
}

.pastor-btn {
  display: inline-block;
  background-color: #facc15;
  color: #111827;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.pastor-btn:hover {
  background-color: #eab308;
}
/* WHY CHOOSE SECTION */
.why-choose {
  background: #f9fafb;
  padding: 80px 20px;
  text-align: center;
}

.why-choose h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-choose .subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  background: white;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  text-align: left;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #111827;
}

.feature-card p {
  color: #555;
  line-height: 1.6;
}
/* BOOKING & CONTACT SECTION CONTAINER */
.booking-contact-section {
    padding: 60px 20px;
    background: #f9fafb;
}

.booking-contact-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap; /* allows stacking on mobile */
}

/* CONTACT FORM */
.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 14px 16px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font-size: 1rem;
    width: 100%;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #facc15;
    box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.2);
}

.contact-form button {
    padding: 14px 20px;
    background-color: #facc15;
    color: #111827;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s, transform 0.2s;
}

.contact-form button:hover {
    background-color: #eab308;
    transform: scale(1.05);
}

/* BOOKING SECTION */
.booking {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 300px;
}

.booking h2 {
    font-size: 2rem;
    color: #111827;
    margin-bottom: 10px;
}

.booking .subtitle {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 20px;
}

.booking-steps .step {
    margin-bottom: 12px;
    font-size: 1rem;
    color: #374151;
}

.contact-details p {
    margin-bottom: 10px;
    color: #374151;
}

.booking-btn {
    display: inline-block;
    margin-top: 15px;
    background-color: #facc15;
    color: #111827;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.booking-btn:hover {
    background-color: #eab308;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .booking-contact-container {
        flex-direction: column; /* stack vertically on small screens */
    }
}


/* PARTNER SECTION */
.partner {
  background: #f9fafb;
  padding: 80px 20px;
  text-align: center;
  color: #333;
}

.partner h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.partner .subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.partner .mission {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.partner-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn.partner-btn {
  background: #facc15;
  color: #111827;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.btn.partner-btn:hover {
  background: #eab308;
}

.btn.partner-btn.alt {
  background: #3b82f6;
  color: white;
}

.btn.partner-btn.alt:hover {
  background: #2563eb;
}
/* DONATION SECTION */
.donation {
  padding: 80px 20px;
  background: #f9fafb;
  color: #333;
  text-align: center;
}

.donation-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.donation h2 {
  font-size: 2.2rem;
  color: #111827;
  margin-bottom: 10px;
  font-weight: 700;
  text-align: center;
}

.donation-subtext {
  font-size: 1rem;
  color: #6b7280;
  margin-top: 10px;
  margin-bottom: 40px;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.donation-box, .qr-box {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  margin: 20px auto;
  max-width: 500px;
}

.donation-box h3,
.qr-box h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #1f2937;
}

.donation-box p {
  font-size: 1rem;
  color: #374151;
  margin: 6px 0;
}

.donate-whatsapp {
  display: inline-block;
  margin-top: 20px;
  background: #25D366;
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.donate-whatsapp:hover {
  background: #1ebe5d;
}

.qr-img {
  width: 180px;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.1);
}

/* Responsive */
@media (min-width: 900px) {
  .donation-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: flex-start;
    text-align: left;
    flex-wrap: wrap;
  }
}

/* -----------------------------
   FOOTER
------------------------------ */
footer {
    background: #111827;
    color: #d1d5db;
    padding: 60px 0;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 40px;
}

.footer-col h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
    color: white;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    text-decoration: none;
    color: #d1d5db;
    transition: 0.3s;
}

.footer-col a:hover {
    color: #3b82f6;
}

footer p {
    color: #9ca3af;
}

.copy {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #374151;
    padding-top: 20px;
}
@media (max-width: 768px) {
    .pastor-container {
        flex-direction: column;
        text-align: center;
    }

    .pastor-content {
        margin-top: 20px;
    }
}
.social-links {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 20px;
}

.social-links a {
  text-decoration: none;
  color: #fff; /* adjust to your footer color */
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-links a:hover {
  color: #ffd700; /* highlight color on hover */
}

.social-links i {
  font-size: 20px;
}
