<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* === GLOBAL === */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: #1e1e1e;
  background: #ffffff;
}
a {
  text-decoration: none;
}
.highlight-word {
  color: #99c1e2;
  font-weight: bold;
}
.btn-primary, .btn-secondary {
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 6px;
  display: inline-block;
  margin: 10px 10px 0 0;
  transition: background 0.3s ease, transform 0.3s ease;
}
.btn-primary {
  background-color: #99c1e2;
  color: white;
}
.btn-primary:hover {
  background-color: #5d9ccf;
  transform: scale(1.03);
}
.btn-secondary {
  background: transparent;
  border: 2px solid #99c1e2;
  color: #99c1e2;
}
.btn-secondary:hover {
  background: #99c1e2;
  color: white;
  transform: scale(1.03);
}

/* === HEADER === */
.site-header {
  background-color: #111;
  color: white;
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.site-logo img {
  height: 48px;
}
.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  z-index: 1001;
  padding: 0;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
}
.hamburger img {
  height: 25px;
  width: 32px;
  object-fit: contain;
  filter: brightness(100%);
}
.nav-links {
  display: flex;
  gap: 2rem;
  font-weight: bold;
  transition: max-height 0.3s ease;
}
.nav-links a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #87c1ff;
  transition: width 0.3s ease;
}
.nav-links a:hover::after {
  width: 100%;
}

/* === RESPONSIVE HEADER === */
@media (max-width: 1440px) {
  .hamburger {
    display: block;
  }
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background-color: #111;
    max-height: 0;
    overflow: hidden;
    border-bottom: 2px solid #222;
    z-index: 9998;
    padding-bottom: 1rem;
    visibility: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, visibility 0s linear 0.3s;
  }
  .nav-links.show {
    max-height: 1000px;
    visibility: visible;
    opacity: 1;
    transition: max-height 0.4s ease, opacity 0.3s ease, visibility 0s linear 0s;
  }
  .nav-links a {
    padding: 0.8rem 1rem;
    font-size: 14px;
    text-align: center;
  }
}

/* === HERO VIDEO (Homepage) === */
.hero-video {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
}
.bg-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: -2;
}
.overlay {
  position: absolute;
  background: rgba(0,0,0,0.5);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero-content {
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}
.hero-content h1 {
  font-size: 48px;
  margin-bottom: 10px;
}
.hero-content .highlight {
  color: #99c1e2;
}
.hero-content p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* === FEATURED SERMON === */
.featured-sermon {
  display: flex;
  flex-wrap: wrap;
  padding: 60px 10%;
  background: #f9f9f9;
  align-items: center;
  gap: 40px;
}
.sermon-text {
  flex: 1;
  min-width: 300px;
}
.sermon-img {
  flex: 1;
  min-width: 300px;
}
.sermon-img img {
  width: 100%;
  border-radius: 12px;
}

/* === JOIN VISUAL SECTION === */
.join-visual-section {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  background: #f2f2f2;
  overflow: hidden;
}
.join-left,
.join-right {
  flex: 1;
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: stretch;
}
.join-left img,
.join-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.join-overlay {
  position: absolute;
  background: rgba(153, 193, 226, 0.4);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.join-text {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  padding: 20px;
}
.store-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 10px;
}
.store-badges a img {
  height: 48px;
  transition: transform 0.3s ease;
}
.store-badges a img:hover {
  transform: scale(1.05);
}

/* === VISIT SECTION === */
.visit-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 60px 10%;
  background: #e9f1f8;
  flex-wrap: wrap;
}
.visit-left, .visit-right {
  flex: 1;
  min-width: 300px;
}
.visit-left h2, .visit-right h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #1e1e1e;
}
#timer {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  font-size: 24px;
  font-weight: bold;
  flex-wrap: wrap;
}
#timer div {
  background: white;
  padding: 20px;
  border-radius: 8px;
  color: #333;
  text-align: center;
}
#timer small {
  display: block;
  font-size: 12px;
  margin-top: 5px;
  color: #666;
}
.visit-right p {
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* === NEXT STEP === */
.next-step {
  position: relative;
  height: 500px;
  overflow: hidden;
}
.step-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}
.step-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: -1;
}
.step-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
}
.step-content h2 {
  font-size: 36px;
  margin-bottom: 10px;
}
.step-content p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* === FOOTER === */
.site-footer {
  background-color: #000;
  color: white;
  padding: 2.5rem 1rem;
  font-size: 14px;
  border-top: 2px solid #222;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-left {
  flex: 1;
  min-width: 180px;
}
.footer-logo {
  height: 100px;
}
.footer-center {
  flex: 2;
  min-width: 250px;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
}
.footer-center p {
  margin: 5px 0;
  color: #ccc;
}
.footer-right {
  flex: 1;
  min-width: 180px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.2rem;
}
.footer-right a img {
  height: 32px;
  width: 32px;
  filter: brightness(0) invert(1);
  transition: transform 0.2s ease;
}
.footer-right a img:hover {
  transform: scale(1.1);
}

/* === MINISTRIES HERO REDUCED === */
.ministries-hero-reduced {
  position: relative;
  height: 75vh;
  max-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.ministries-hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  top: 0;
  left: 0;
  z-index: -2;
}
.ministries-hero-overlay {
  position: absolute;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(153, 193, 226, 0.4));
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.ministries-hero-text {
  max-width: 900px;
  padding: 40px 20px;
  text-align: center;
}
.ministries-hero-text h1,
.ministries-hero-text p {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.ministries-hero-text h1 {
  font-size: 38px;
  line-height: 1.4;
  font-weight: 800;
  margin-bottom: 15px;
}
.ministries-hero-text p {
  font-size: 18px;
  margin-bottom: 25px;
  color: #f1f1f1;
}

/* === MINISTRY GRID â€“ BOXED LAYOUT === */
.ministry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  margin: 0;
  padding: 0;
}
.ministry-card {
  position: relative;
  height: 300px;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  overflow: hidden;
  margin: 0;
  padding: 0;
  transition: transform 0.3s ease;
  display: flex;
  align-items: flex-end;
  justify-content: start;
}
.ministry-card .card-overlay {
  position: absolute;
  background: rgba(0, 0, 0, 0.3);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: background 0.3s ease;
  z-index: 1;
}
.ministry-card:hover .card-overlay {
  background: rgba(0, 0, 0, 0.55);
}
.ministry-card h3 {
  position: relative;
  z-index: 2;
  color: white;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 20px 20px;
  background: rgba(0, 0, 0, 0.4);
  padding: 8px 12px;
  border-radius: 6px;
}
.ministry-card a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.ministry-card:hover {
  transform: scale(1.01);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}


/* === MOBILE FIXES === */
@media (max-width: 768px) {
  .footer-container,
  .featured-sermon,
  .visit-section,
  .join-visual-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
  }

  .footer-right {
    flex-direction: row;
    gap: 1.2rem;
  }

  .join-left,
  .join-right {
    width: 100%;
    height: auto;
    min-height: unset;
    aspect-ratio: 16 / 9;
  }

  .hero-content h1,
  .hero-left h1,
  .ministries-hero-text h1 {
    font-size: 28px;
  }

  .hero-left p,
  .ministries-hero-text p {
    font-size: 16px;
  }

  #timer {
    justify-content: center;
  }

  .join-text {
    font-size: 16px;
    padding: 15px;
  }

  .ministries-hero-reduced {
    height: auto;
    padding-top: 60px;
    padding-bottom: 40px;
  }

  .ministries-hero-bg {
    height: 100%;
    max-height: 400px;
  }

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

  .ministry-card {
    height: 240px;
  }
}

.ministries-hero-text {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out 0.2s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === NEW MINISTRIES BANNER STYLE === */
.ministries-hero-banner {
  position: relative;
  width: 100%;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: black;
  padding-top: 80px; /* Ensures space below fixed header */
  box-sizing: border-box;
}

.ministries-banner-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  top: 0;
  left: 0;
  z-index: 0;
}

.ministries-banner-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(0, 123, 255, 0.25));
  z-index: 1;
}

.ministries-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.text-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.ministries-banner-content h1 {
  font-size: 80px;
  font-weight: 900;
  color: white;
  margin: 0;
  line-height: 1.1;
}

.ministries-banner-content .tagline {
  font-size: 20px;
  font-weight: 500;
  color: #f0f0f0;
  margin: 15px 0 25px;
}

.ministries-banner-content .btn-primary {
  font-size: 18px;
  padding: 14px 28px;
  border-radius: 8px;
  background-color: #ffffff;
  color: #1e1e1e;
  font-weight: bold;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.ministries-banner-content .btn-primary:hover {
  background-color: #99c1e2;
  color: white;
}

.underline-decor {
  width: 40px;
  height: 3px;
  background-color: white;
  margin-top: 20px;
  border-radius: 2px;
}

/* === MOBILE === */
@media (max-width: 768px) {
  .ministries-hero-banner {
    height: auto;
    padding: 120px 20px 60px;
    text-align: center;
  }

  .ministries-banner-content h1 {
    font-size: 48px;
  }

  .ministries-banner-content .tagline {
    font-size: 16px;
    margin: 10px 0 20px;
  }

  .ministries-banner-content .btn-primary {
    font-size: 16px;
    padding: 12px 24px;
  }

  .underline-decor {
    width: 30px;
    margin-top: 16px;
  }
}







/* === SECTION STYLES === */
.section-content {
  padding: 80px 20px;
}
.section-content.white {
  background: #ffffff;
  color: #111;
}
.section-content.blue {
  background: #002244;
  color: white;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* === GRID LAYOUT === */
.section-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}
.video-block {
  flex: 1;
  min-width: 300px;
}
.video-block img {
  width: 100%;
  border-radius: 10px;
}
.video-caption {
  margin-top: 12px;
  color: #333;
}
.video-caption p {
  font-weight: 600;
}
.play-button {
  display: inline-block;
  margin-top: 10px;
  background: #99c1e2;
  padding: 10px 18px;
  color: white;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
}
.text-block {
  flex: 1;
}
.text-block h2 {
  font-size: 36px;
  margin-bottom: 20px;
}
.text-block p {
  font-size: 16px;
  line-height: 1.6;
}
.underline-blue {
  border-bottom: 4px solid #99c1e2;
}

/* === SECTION 2 === */
.section-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}
.section-left {
  flex: 1;
  text-align: center;
}
.section-left h5 {
  color: #99c1e2;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.section-left h2 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 20px;
}
.section-right {
  flex: 2;
}
.section-right p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.bullets {
  list-style: none;
  padding-left: 0;
}
.bullets li {
  margin-bottom: 12px;
  font-weight: bold;
}
.bullets li span {
  color: #99c1e2;
  margin-right: 10px;
}

/* === FAQ SECTION === */
.section-faq {
  background: #222;
  color: white;
  padding: 80px 20px;
}
.faq-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.faq-inner h4 {
  color: #99c1e2;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 5px;
}
.faq-inner h2 {
  font-size: 36px;
  margin-bottom: 40px;
}
.faq-item {
  margin-bottom: 20px;
  text-align: left;
}
.faq-item button {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  font-weight: bold;
  width: 100%;
  padding: 16px;
  text-align: left;
  border-bottom: 2px solid #99c1e2;
  cursor: pointer;
}
.faq-item button.open {
  color: #99c1e2;
}
.faq-item .answer {
  display: none;
  padding: 16px;
  font-size: 16px;
  color: #ddd;
  background: #333;
}
.faq-item .answer.show {
  display: block;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .section-grid,
  .section-2 {
    flex-direction: column;
    text-align: center;
  }
  .text-block h2 {
    font-size: 28px;
  }
}




/* === SECTION 1 SPLIT HERO === */
.section-hero-split {
  background-color: #666;
  color: white;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.section-split {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.hero-left {
  flex: 1;
  min-width: 300px;
}

.hero-left h2 {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero-left .underline-blue {
  border-bottom: 4px solid #99c1e2;
}

.hero-left p {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 600px;
}

.hero-right {
  flex: 1;
  text-align: center;
}

.counter-box {
  background-color: #333;
  padding: 40px 30px;
  border-radius: 10px;
  max-width: 300px;
  margin: 0 auto;
}

.counter-number {
  font-size: 64px;
  font-weight: bold;
  color: #99c1e2;
}

.counter-label {
  margin-top: 10px;
  font-size: 18px;
  color: #ddd;
}

/* === MOBILE FIX === */
@media (max-width: 768px) {
  .section-hero-message {
    padding: 60px 16px;
  }

  .hero-inner-text h2 {
    font-size: 1.7rem;
    line-height: 1.4;
  }

  .hero-inner-text p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .hero-inner-text .underline-blue {
    border-bottom-width: 2px;
  }
}


/* === MOBILE === */
@media (max-width: 768px) {
  .section-hero-message {
    padding: 50px 20px;
    min-height: 300px;
  }

  .hero-inner-text h2 {
    font-size: 26px;
  }

  .hero-inner-text p {
    font-size: 15px;
  }
}


/* === MOBILE === */
@media (max-width: 768px) {
  .section-hero-message {
    padding: 60px 20px;
  }

  .hero-inner-text h2 {
    font-size: 30px;
  }

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

/* === MOBILE === */
@media (max-width: 768px) {
  .section-split {
    flex-direction: column;
    text-align: center;
  }

  .hero-left h2 {
    font-size: 1.7rem;
  }

  .hero-left p {
    font-size: 1rem;
  }

  .counter-number {
    font-size: 48px;
  }
}








/* === GLOBAL MISSIONS PAGE STYLES === */

/* SECTION 1: WHY MISSIONS */
.section-content.light {
  background: #ffffff;
  color: #111;
  padding: 80px 20px;
}

.section-title {
  font-size: 36px;
  font-weight: 900;
  color: #99c1e2;
  text-align: center;
  margin-bottom: 30px;
}

.section-paragraph {
  font-size: 18px;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

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

/* === MISSIONS PAGE STYLES === */

.section-content.cream {
  background: #f9f9f4;
  color: #111;
  padding: 80px 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h5.highlight-title {
  color: #002244;
  letter-spacing: 1px;
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: bold;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
}

.location-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.location-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.location-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.location-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #111;
}

.location-card p {
  font-size: 15px;
  margin: 4px 0;
}

.location-card a {
  color: #ff7a3d;
  text-decoration: underline;
}

.trip-full {
  color: red;
  font-weight: bold;
}

.mission-cards {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

.mission-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  width: 320px;
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-4px);
}

.mission-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.mission-card-content {
  padding: 20px;
}

.mission-card h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.mission-card p {
  font-size: 14px;
  margin: 4px 0;
}

.mission-card a {
  font-size: 14px;
  color: #e64424;
  text-decoration: underline;
}




/* === FAQ Section Blue Styling === */
.section-faq {
  background: #222;
  color: white;
  padding: 80px 20px;
}

.faq-inner h4 {
  color: #99c1e2; /* blue instead of orange */
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 5px;
}

.faq-inner h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

.faq-item button {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  font-weight: bold;
  width: 100%;
  padding: 16px;
  text-align: left;
  border-bottom: 2px solid #99c1e2; /* blue underline */
  cursor: pointer;
}

.faq-item button.open {
  color: #99c1e2;
}

.faq-item .answer {
  display: none;
  padding: 16px;
  font-size: 16px;
  color: #ddd;
  background: #333;
}

.faq-item .answer.show {
  display: block;
}

/* === Button Styles === */
.btn-primary {
  background: #99c1e2;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}

.btn-primary:hover {
  background: #336699;
}

/* === Responsive Adjustments === */
@media (max-width: 768px) {
  .location-grid {
    flex-direction: column;
    align-items: center;
  }

  .location-card {
    width: 100%;
    max-width: 360px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-paragraph {
    font-size: 16px;
  }
}

.centered-button {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}






/* === LOCAL MISSIONS PAGE STYLES === */

/* SECTION 1: WHY LOCAL MISSIONS */
.section-content.local-light {
  background: #ffffff;
  color: #111;
  padding: 80px 20px;
}

.section-content.local-light h2 {
  font-size: 36px;
  font-weight: 900;
  color: #99c1e2;
  text-align: center;
  margin-bottom: 30px;
}

.section-content.local-light p {
  font-size: 18px;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* SECTION 2: SERVE OUR CITY */
.serve-our-city {
  background: #f9f9f4;
  padding: 80px 20px;
}

.serve-our-city .split-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.serve-our-city .video-wrapper {
  flex: 1 1 500px;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.serve-our-city .video-wrapper iframe {
  width: 100%;
  height: 100%;
}

.serve-our-city .content {
  flex: 1 1 400px;
}

.serve-our-city h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}

.serve-our-city p {
  font-size: 17px;
  line-height: 1.8;
}

.serve-our-city .btn-primary {
  margin-top: 20px;
}

/* SECTION 3: YEAR-ROUND COMMUNITY SERVICE */
.year-round-service {
  background: #ffffff;
  padding: 80px 20px;
}

.year-round-service .split-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.year-round-service .content {
  flex: 1 1 400px;
}

.year-round-service h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}

.year-round-service p {
  font-size: 17px;
  line-height: 1.8;
}

/* Auto Gallery */
.gallery-wrapper {
  flex: 1 1 500px;
  max-width: 600px;
  height: 400px;
  overflow: hidden;
  position: relative;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}


.gallery-slider {
  display: flex;
  height: 100%;               /* ðŸ‘ˆ Ensure height is enforced */
  animation: slideGallery 20s infinite;
}

.gallery-slider img {
  width: 100%;
  height: 100%;               /* ðŸ‘ˆ Enforce same height as wrapper */
  object-fit: cover;          /* ðŸ‘ˆ CROP */
  object-position: center;
  flex-shrink: 0;
}

@keyframes slideGallery {
  0%   { transform: translateX(0%); }
  20%  { transform: translateX(-100%); }
  40%  { transform: translateX(-200%); }
  60%  { transform: translateX(-300%); }
  80%  { transform: translateX(-400%); }
  100% { transform: translateX(0%); }
}

/* === LOCAL FAQ DESIGN FIX (UNIFORM WITH GLOBAL) === */

.faq-section {
  background: #222;
  color: white;
  padding: 80px 20px;
}

.faq-section .container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-section h4 {
  color: #99c1e2;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 14px;
  text-align: center;
  margin-bottom: 5px;
}

.faq-section h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 40px;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-item button {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  font-weight: bold;
  width: 100%;
  padding: 16px 0;
  text-align: left;
  border-bottom: 2px solid #99c1e2;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-item button.open {
  color: #99c1e2;
}

.faq-answer {
  display: none;
  padding: 16px 0;
  font-size: 16px;
  color: #ddd;
  background: #333;
}

.faq-answer.show {
  display: block;
}



/* === Responsive Fixes === */
@media (max-width: 768px) {
  .split-section {
    flex-direction: column;
    padding: 60px 20px;
  }

  .gallery-wrapper {
    height: 300px;
  }

  .serve-our-city .video-wrapper,
  .year-round-service .gallery-wrapper {
    width: 100%;
  }
}










/* === KIDS &amp; STUDENTS PAGE STYLES === */

.toggle-nav {
  background: #f9f9f9;
  padding: 20px 0;
  text-align: center;
}

.toggle-nav .tab-button {
  background: transparent;
  border: 2px solid #99c1e2;
  color: #333;
  font-size: 16px;
  font-weight: bold;
  padding: 12px 24px;
  margin: 0 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-nav .tab-button.active,
.toggle-nav .tab-button:hover {
  background: #99c1e2;
  color: white;
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.tab-content.active {
  display: block;
}

.section-content {
  padding: 80px 20px;
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
}

.section-cream {
  background: #f9f9f4;
  width: 100%;
  padding: 80px 0;
}

.section-cream .inner-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-content h2,
.section-cream h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #222;
}

.section-content p,
.section-content ul,
.section-cream p,
.section-cream ul {
  font-size: 17px;
  line-height: 1.7;
  color: #333;
}

.section-content ul,
.section-cream ul {
  padding-left: 20px;
}

.section-content ul li,
.section-cream ul li {
  margin-bottom: 12px;
}

.teaching-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.teaching-pillars &gt; div {
  flex: 1 1 250px;
  background: #fff;
  border-left: 5px solid #99c1e2;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.teaching-pillars &gt; div:hover {
  transform: translateY(-5px);
}

.teaching-pillars h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.teaching-pillars p {
  font-size: 16px;
  color: #666;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === CUSTOM GALLERY GRID === */
.custom-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 10px;
  margin-top: 30px;
}

.custom-gallery-grid .grid-item {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Layout Mapping */
.custom-gallery-grid .item-1 { grid-column: 1 / 2; grid-row: 1 / 2; }
.custom-gallery-grid .item-2 { grid-column: 2 / 3; grid-row: 1 / 2; }
.custom-gallery-grid .item-3 { grid-column: 3 / 4; grid-row: 1 / 2; }
.custom-gallery-grid .item-4 { grid-column: 1 / 4; grid-row: 2 / 3; height: 350px; }
.custom-gallery-grid .item-5 { grid-column: 1 / 2; grid-row: 3 / 4; height: 200px; }
.custom-gallery-grid .item-6 { grid-column: 2 / 4; grid-row: 3 / 4; height: 200px; }

.custom-gallery-grid .item-1,
.custom-gallery-grid .item-2,
.custom-gallery-grid .item-3 {
  height: 200px;
}

/* Responsive */
@media (max-width: 768px) {
  .custom-gallery-grid {
    display: flex;
    flex-direction: column;
  }

  .custom-gallery-grid .grid-item {
    height: 200px;
  }

  .teaching-pillars {
    flex-direction: column;
  }

  .toggle-nav .tab-button {
    display: block;
    margin: 10px auto;
    width: 80%;
  }

  .section-content,
  .section-cream .inner-container {
    padding: 60px 16px;
  }
}







/* === LEADERSHIP PAGE STYLES === */

.section-content {
  padding: 60px 20px 10px;
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
}


.section-content h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #222;
  text-align: center;
}


.underline-line {
  height: 4px;
  width: 60px;
  background: #2a80da;
  margin: 0 auto 40px auto; /* Centers it horizontally */
}


.leader-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center; /* &lt;-- centers the whole grid */
}


.leader-card {
  flex: 0 0 calc(33.333% - 40px); /* 3 cards per row with gap */
  max-width: 300px;
  text-align: center; /* center text + icon */
}


.leader-card img {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 10px;
}

.leader-card h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 4px;
  color: #111;
}

.leader-card .role {
  font-size: 14px;
  color: #888;
  margin-bottom: 6px;
}

.leader-card .email-icon {
  width: 18px;
  height: 18px;
}


@media (max-width: 900px) {
  .leader-card {
    flex: 0 0 48%;
  }
}

@media (max-width: 600px) {
  .leader-card {
    flex: 0 0 100%;
  }
}







/* === IM NEW PAGE STYLES === */

/* Hero Section */
.hero-section.imnew-hero {
  position: relative;
  height: 90vh;
  background-image: url('../images/imnew-hero.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

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

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

.hero-content h1 {
  font-size: 56px;
  font-weight: bold;
  margin-bottom: 20px;
}

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

/* Welcome Section */
.welcome-section {
  position: relative;
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 120px 20px;
}

.welcome-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.welcome-overlay {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.welcome-overlay h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.gathering-times {
  margin-top: 20px;
  font-size: 18px;
  font-weight: bold;
}

/* Video Row */
.video-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.video-embed {
  flex: 1 1 500px;
}

.video-text {
  flex: 1 1 400px;
}

.video-text h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

.video-text p {
  font-size: 17px;
  line-height: 1.6;
}

.btn-light {
  display: inline-block;
  background: #99c1e2;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 20px;
}

/* Weekender Section */
.flex-split {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
}

.weekender-left {
  flex: 1;
  text-align: center;
}

.highlight-label {
  text-transform: uppercase;
  color: #e86938;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.big-date {
  font-size: 42px;
  color: #222;
  font-weight: bold;
  margin-bottom: 15px;
}

.weekender-right {
  flex: 1;
}

.weekender-right h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

.bullet-list {
  list-style: none;
  padding-left: 0;
}

.bullet-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 16px;
}

.bullet-list li::before {
  content: "â–¶";
  position: absolute;
  left: 0;
  color: #99c1e2;
}

/* FAQ Grid (Vertical Split Default) */
.faq-grid {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
}

.faq-column {
  flex: 1 1 50%;
  padding: 60px 40px;
  box-sizing: border-box;
}

.faq-column h2 {
  font-size: 26px;
  margin-bottom: 30px;
}

.faq-column.light-bg {
  background: #f9f9f9;
  color: #111;
}

.faq-column.dark-bg {
  background: #222;
  color: #fff;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-item button {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 18px;
  font-weight: bold;
  padding: 10px 0;
  color: inherit;
  cursor: pointer;
  border-bottom: 2px solid #99c1e2;
  transition: all 0.3s ease;
}

.faq-item button.open {
  color: #e86938;
}

/* âœ… Accordion Animation Fix */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 5s ease, opacity 5s ease, padding 5s ease;
  opacity: 0;
  padding-top: 0;
  font-size: 16px;
}

.faq-answer.show {
  max-height: 300px;
  opacity: 1;
  padding-top: 10px;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
  .video-row,
  .flex-split,
  .faq-grid {
    flex-direction: column;
  }

  .weekender-left,
  .weekender-right,
  .video-embed,
  .video-text,
  .faq-column {
    width: 100%;
    text-align: center;
    padding: 40px 20px;
  }
}
</pre></body></html>