/* HEADER STYLING */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #fff;
  color: #1c0730;
}
  
/* Apply font to all elements for consistency */
* {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 400; /* Default weight */
}

/* Container to align header with page content */
.container {
  max-width: 1100px; /* match your main content width */
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px; /* fixed header height */
  position: relative;
  margin-top: 10px;
}

/* Header background and border */
.site-header {
  background: white;
  border-bottom: 3px solid gold;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Logo + Brand */
.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: -28px;
}
.logo {
  height: 50px;
  width: auto;
  margin-left: -50px;
  margin-top: 15px;
}

/* Hide checkbox */
#menu-toggle {
  display: none;
}

/* Hamburger (mobile only) */
.hamburger {
  display: none; /* hidden by default */
  font-size: 2.2rem;
  cursor: pointer;
  user-select: none;
  color:  #2f0755;
  padding: 6px;
  margin-top: -28px;
}

/* --- DESKTOP NAVIGATION --- */
.main-nav {
  display: flex;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  font-weight: 1200;
  font-size: 1.2rem;
  align-items: center;
}

.main-nav ul li {
  position: relative;
}

.main-nav ul li a {
  color:  #2f0755;
  text-decoration: none;
  padding: 5px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.main-nav ul li a:hover {
  border-bottom: 2px solid gold;
}

/* --- MOBILE NAVIGATION --- */
@media (max-width: 900px) {
  /* Hide desktop nav */
  .main-nav {
    display: none;
  }
  
  /* Show hamburger */
  .hamburger {
    display: block;
    margin-top: -10px;
  }

  /* Mobile Dropdown Menu */
  .mobile-dropdown-menu {
    position: absolute;
    top: 60px; /* just below header */
    left: 0;
    width: 100%;
    background:  #2f0755;
    border-top: 3px solid #bfa14f;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    z-index: 900;
  }

  /* Show menu when hamburger toggled */
  #menu-toggle:checked ~ .mobile-dropdown-menu {
    max-height: 100vh;
    overflow-y: auto;
  }

  .mobile-dropdown-menu ul > li {
    border-bottom: 0.90px solid goldenrod; /* gold separator line */
  }

  .mobile-dropdown-menu ul > li:last-child {
    border-bottom: none;
  }

  .mobile-dropdown-menu ul > li > a {
    padding: 25px 20px;
    font-size: 1.2rem;
    font-weight: 800;
    color:  white;
    cursor: pointer;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
  }
}

/* Smallest screens adjustments */
@media (max-width: 400px) {
  .site-name {
    font-size: 0.80rem;
    font-weight: 600;
    margin-top: 5px;
    margin-left: -28px;
    color:  #2f0755;
  }
  .site-submenu {
    font-size: 0.7rem;
    font-weight: 500;
    white-space: nowrap;
    color:  #2f0755;
    margin-top: 48px;
    margin-left: -148px;
    letter-spacing: 0.53rem;
  }

  .logo {
    height: 35px;
    width: auto;
    margin-left: -17px;
  }

  .mobile-dropdown-menu ul > li > a {
    font-size: 1rem;
    padding: 14px 16px;
  }
}

/* HIDE mobile menu on desktop */
@media (min-width: 901px) {
  .mobile-dropdown-menu {
    display: none !important;
  }
}

@media (min-width: 768px) {
  /* Styles for tablet and desktop */
  /* Header background and border */


.logo {
  height: 47px;
  width: auto;
  margin-left: -115px;
  margin-top: 9px;
}

.site-name {
  font-size: 1.1rem;
  margin-top: -13px;
  margin-left: -25px;
  font-weight: 680;
  white-space: nowrap;
  color: #2f0755;
}
  .site-submenu {
    margin-top: 40px;
    margin-left: -214px;
    letter-spacing: 12.5px;
    font-size: 1rem;
    font-weight: 600;
    color:  #2f0755;
  
  }

  .main-nav {
    margin-right: -62px;
  }
}

/* HEADER STYLING DONE!>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
/* HERO SLIDESHOW SECTION */
/* ===============================
   HERO SECTION
=================================*/
.hero-slideshow {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto', sans-serif; /* unified body font */
  color: white;
}

/* Slideshow container */
.slideshow-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* slides below overlay and text */
}

/* Each slide */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: fadeSlideshow 25s infinite;
}

/* Slide delays for sequential fading */
.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 5s; }
.slide:nth-child(3) { animation-delay: 10s; }
.slide:nth-child(4) { animation-delay: 15s; }
.slide:nth-child(5) { animation-delay: 20s; }

/* Slideshow fade animation */
@keyframes fadeSlideshow {
  0% { opacity: 0; }
  10% { opacity: 1; }
  20% { opacity: 1; }
  30% { opacity: 0; }
  100% { opacity: 0; }
}

/* Dark purple overlay */
.hero-overlay-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(102, 0, 153, 0.7); /* dark purple with 70% opacity */
  z-index: 1; /* overlay above slides but below text */
  pointer-events: none;
}

/* Hero text overlay */
.hero-overlay {
  position: relative;
  z-index: 3; /* text above overlay */
  max-width: 900px;
  padding: 20px;
  text-align: center;
}

/* Heading */
.hero-overlay h1 {
  font-family: 'Montserrat', sans-serif; /* consistent heading font */
  font-size: 2.8rem;
  color: gold; /* gold */
  margin-bottom: 15px;
  font-weight: 800;
  line-height: 1.2;
}

/* Paragraph */
.hero-overlay p {
  font-family: 'Roboto', sans-serif; /* consistent body font */
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 25px;
  font-weight: 400;
  line-height: 1.6;
}


.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fills the slide container without distortion */
  display: block;
  position: absolute; /* ensures it sits exactly in the slide */
  top: 0;
  left: 0;
}


/* Button */
.hero-btn {
  display: inline-block;
  background-color: #2f0755; /* dark purple */
  color: gold; /* gold text */
  padding: 12px 30px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.7rem;
  text-decoration: none;
  border: 2px solid gold;
  border-radius: 30px;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: 30px;
}

.hero-btn:hover {
  background-color: gold; /* gold hover */
  color: #2f0755; /* dark purple text */
}

/* Scroll down arrow */
.scroll-down-arrow {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 30px;
  height: 40px;
  cursor: pointer;
}

.scroll-down-arrow span {
  display: block;
  width: 6px;
  height: 6px;
  border-bottom: 2px solid #e9ab0d;
  border-right: 2px solid #e9ab0d;
  transform: rotate(45deg);
  margin: 8px auto;
  animation: scrollArrow 1.5s infinite;
}

@keyframes scrollArrow {
  0% { opacity: 0; transform: rotate(45deg) translate(0, 0); }
  50% { opacity: 1; transform: rotate(45deg) translate(0, 10px); }
  100% { opacity: 0; transform: rotate(45deg) translate(0, 0); }
}

/* Responsive */
@media (max-width: 600px) {
  .hero-overlay h1 { font-size: 1.9rem; }
  .hero-overlay p { font-size: 1rem; font-weight: 400; }
  .hero-btn { font-size: 1.3rem; padding: 10px 24px; }
}


/* PASTOR INTRO SECTION */
/* ===============================
   PASTOR INTRO SECTION
=================================*/
.pastor-intro-wrapper {
  max-width: 900px;
  margin: 3rem auto 5rem;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #3b0a45; /* dark purple */
  gap: 2rem;
  margin-top: 70px;
  font-family: 'Roboto', sans-serif; /* consistent body font */
}

/* Pastor Photo */
.pastor-photo-wrapper {
  flex-shrink: 0;
}

.pastor-photo {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #d4af37; /* gold */
  box-shadow: 0 6px 15px rgba(212, 175, 55, 0.6);
  transition: transform 0.3s ease;
}

.pastor-photo:hover {
  transform: scale(1.05);
}

/* Pastor Name in Stylish Box */
.pastor-name-box {
  display: inline-block;                       /* shrink to content */
  padding: 2px 4px;                            /* padding inside box */
  border: 2px solid #d4af37;                  /* gold border */
  background-color: rgba(47, 7, 85, 2);     /* subtle dark purple background */
  color: #d4af37;                              /* gold text */
  font-family: 'Montserrat', sans-serif;       /* consistent heading font */
  font-size: 1.8rem;                           /* larger font */
  font-weight: 700;                            /* bold */
  border-radius: 12px;                         /* rounded corners */
  margin-bottom: 15px;                         /* spacing from next paragraph */
}

/* Pastor Description Paragraphs */
.pastor-description p {
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.6;
  font-family: 'Roboto', sans-serif; /* consistent body font */
  color: #3b0a45;
}

/* Vision Highlight */
.vision-highlight {
  margin-top: 15px;
  font-size: 1rem;
  font-weight: 600;
  font-style: normal;
  font-family: 'Roboto', sans-serif; /* consistent body font */
}

.vision-highlight a {
  color: #b68e2e;        /* darker gold for better contrast */
  font-weight: 600;       /* slightly bolder */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.vision-highlight a:hover {
  color: #2f0755; /* dark purple hover */
}

/* MOBILE STYLING */
@media (max-width: 600px) {
  
  /* Pastor Name Box on Mobile */
  .pastor-name-box {
    font-size: 1.4rem;            /* smaller text */
    padding: 8px 20px;            /* smaller padding */
    border-radius: 10px;          /* slightly smaller corners */
  }

  /* Paragraphs on Mobile */
  .pastor-description p {
    font-size: 0.85rem;           /* smaller text for easier reading */
    line-height: 1.4;             /* tighter line spacing */
  }

  /* Vision Highlight on Mobile */
  .vision-highlight {
    font-size: 0.9rem;
  }
}


/* ===============================
   TSHWANE TV BROADCAST SECTION
=================================*/

/* Broadcast Section Container */
.ari-broadcast-ad {
  background: linear-gradient(135deg, #2f0755, #5a0fcf);
  color: white;
  padding: 1.5rem;
  border-radius: 16px;
  max-width: 100%;
  margin: 3rem auto;
  overflow: hidden;
  position: relative;
  font-family: 'Roboto', sans-serif;
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

/* Marquee wrapper */
.ari-broadcast-marquee {
  display: flex;
  overflow: hidden;
  position: relative;
}

/* Scrolling content */
.ari-broadcast-content {
  display: inline-flex;
  white-space: nowrap;
  animation: ari-scroll-left 20s linear infinite;
  align-items: center;
  gap: 2rem;
}

/* Text styling */
.ari-anim-text {
  font-weight: 700;
  font-size: 1.3rem;
  color: gold;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* CTA text styling (no button) */
.ari-cta-text {
  font-weight: 900;
  font-size: 1.35rem;
  color: #ffd700;
  text-shadow: 0 0 12px gold, 0 0 18px goldenrod;
  font-family: 'Montserrat', sans-serif;
  animation: ari-glow 2s ease-in-out infinite alternate;
}

/* Scroll animation */
@keyframes ari-scroll-left {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* Glow animation for CTA */
@keyframes ari-glow {
  0% { text-shadow: 0 0 8px gold, 0 0 12px goldenrod; }
  50% { text-shadow: 0 0 18px gold, 0 0 24px goldenrod; }
  100% { text-shadow: 0 0 8px gold, 0 0 12px goldenrod; }
}

/* Responsive */
@media (max-width: 768px) {
  .ari-anim-text { font-size: 1rem; }
  .ari-cta-text { font-size: 1.1rem; }
}

@media (max-width: 480px) {
  .ari-anim-text { font-size: 0.85rem; }
  .ari-cta-text { font-size: 0.95rem; }
}


/* ===============================
   VIDEO GALLERY SECTION HOMEPAGE YOUTUBE VIDEOS
================================ */
.video-gallery-section {
  max-width: 1100px;
  margin: 4rem auto 6rem;
  padding: 0 20px;
  color: #1c0730; /* dark purple */
  text-align: center;
  line-height: 1.6;
  font-family: 'Roboto', sans-serif; /* consistent body font */
}

.video-gallery-title {
  font-family: 'Montserrat', sans-serif; /* consistent heading font */
  font-size: 2rem;
  color: #2f0755; /* dark purple */
  margin-bottom: 0.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.video-gallery-intro {
  font-family: 'Roboto', sans-serif; /* consistent body font */
  font-size: 1rem;
  color: #3b0a45; /* slightly lighter purple */
  margin-bottom: 2rem;
  line-height: 1.5;
}

/* ===============================
   VIDEO CARDS
================================ */
.video-gallery-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px; /* spacing between cards */
}

.video-card {
  background-color: #f9f9f9; /* optional card background */
  border-radius: 12px;
  overflow: hidden;
  max-width: 320px;
  width: 100%;
  box-shadow: 0px 6px 20px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s;
  font-family: 'Roboto', sans-serif; /* consistent body font */
}

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

.video-card iframe {
  width: 100%;
  height: 180px; /* adjusts automatically on desktop */
  border: none;
}

.video-title {
  font-family: 'Montserrat', sans-serif; /* consistent heading font */
  color: #1c0730; /* dark purple */
  font-size: 1.2rem;
  margin: 12px 0 6px;
  font-weight: 600;
}

.video-description {
  font-family: 'Roboto', sans-serif; /* consistent body font */
  color: #3b0a45; /* slightly lighter purple */
  font-size: 1rem;
  padding: 0 10px 15px;
  line-height: 1.5;
}

/* ===============================
   RESPONSIVE MOBILE
================================ */
@media (max-width: 767px) {
  .video-gallery-list {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .video-card iframe {
    height: 200px; /* slightly taller on small screens */
  }
}



/* WE BRING HEALING , HOMEPAGE STYLING */
/* ===== Church Mission Section ===== */
.church-mission {
  position: relative;
  background-color: rgb(199, 185, 211);
  padding: 60px 20px;
  color: white;
  font-family: 'Roboto', sans-serif; /* consistent body font */
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ===== Slideshow ===== */
.church-mission-slideshow {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 400px;
  overflow: hidden;
  margin-bottom: 40px;
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.9);
}

.church-mission-slideshow .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: crossfade 12s infinite;
}

.church-mission-slideshow .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

/* Slide delays */
.church-mission-slideshow .slide:nth-child(1) { animation-delay: 0s; }
.church-mission-slideshow .slide:nth-child(2) { animation-delay: 4s; }
.church-mission-slideshow .slide:nth-child(3) { animation-delay: 8s; }

/* Overlay */
.slideshow-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(128, 0, 128, 0.2); /* semi-transparent purple */
  z-index: 1;
  pointer-events: none;
  border-radius: 10px;
}

/* Crossfade animation */
@keyframes crossfade {
  0%, 33.33% { opacity: 1; }
  33.34%, 100% { opacity: 0; }
}

/* ===== Text Content ===== */
.church-mission-content {
  max-width: 700px;
  text-align: center;
  background-color: rgb(96, 75, 114); /* translucent background */
  padding: 30px;
  border-radius: 10px;
  opacity: 0;
  animation: textFadeIn 2s ease forwards;
  animation-delay: 1s; /* fade after slideshow starts */
  font-family: 'Roboto', sans-serif; /* consistent body font */
}

/* Text fade-in animation */
@keyframes textFadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Heading */
.church-mission-heading {
  font-family: 'Montserrat', sans-serif; /* consistent heading font */
  font-size: 2rem;
  color: goldenrod;
  margin-bottom: 20px;
  font-weight: 700;
}

/* Paragraph */
.church-mission-text {
  font-family: 'Roboto', sans-serif; /* consistent body font */
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  font-weight: 400;
}

/* Button */
.church-mission-btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: goldenrod;
  color: #1a0a3c;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.church-mission-btn:hover {
  background-color: white;
  transform: translateY(-3px);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .church-mission-slideshow {
    height: 300px;
  }

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

@media (max-width: 576px) {
  .church-mission-slideshow {
    height: 200px;
  }

  .church-mission-heading {
    font-size: 1.6rem;
  }

  .church-mission-text {
    font-size: 0.95rem;
  }

  .church-mission-btn {
    font-size: 0.95rem;
    padding: 10px 20px;
  }
}

/* Responsive height for smaller screens */
@media (max-width: 480px) {
  .map-container {
    height: 300px;
    margin-bottom: 150px;
  }
}

/* END OF HOME PAGE STYLING>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
/* ===== PASTOR SLIDESHOW SECTION ===== */
.pastor-slideshow-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem;
  font-family: 'Roboto', sans-serif; /* consistent body font */
}

/* ===== PHOTO FRAME WITH WHITE BORDER ===== */
.pastor-photo-frame {
  width: 320px;
  aspect-ratio: 4 / 5; /* portrait style */
  border: 6px solid white; /* white border */
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  overflow: hidden;
  position: relative;
  background: #fff;
  margin-bottom: 0.9rem;
}

/* ===== PHOTO SLIDE CONTAINER ===== */
.pastor-photo-slide {
  display: flex;
  width: 300%; /* 3 images */
  height: 100%;
  animation: pastorSlide 18s infinite;
  transition: none; /* reset for desktop */
}

/* ===== EACH IMAGE IN SLIDE ===== */
.pastor-photo-slide img {
  width: 33.3333%; /* 1/3 of container */
  height: 100%;
  object-fit: cover;
}

/* ===== SLIDE ANIMATION ===== */
@keyframes pastorSlide {
  0%   { transform: translateX(0); }
  25%  { transform: translateX(0); }
  30%  { transform: translateX(-33.3333%); }
  55%  { transform: translateX(-33.3333%); }
  60%  { transform: translateX(-66.6666%); }
  90%  { transform: translateX(-66.6666%); }
  95%  { transform: translateX(0); }
  100% { transform: translateX(0); }
}

/* ===== PASTOR INFO TEXT ===== */
.pastor-info h2 {
  font-family: 'Montserrat', sans-serif; /* consistent heading font */
  font-size: 1.5rem;
  color: #4B006E; /* dark purple */
  margin: 0.3rem 0;
  text-align: center;
  margin-top: 5px;
}

.pastor-info p {
  font-family: 'Roboto', sans-serif; /* consistent body font */
  font-size: 1rem;
  color: #555;
  text-align: center;
  margin: 0;
  margin-top: -5px;
  line-height: 1.5;
}

/* ===== MOBILE ===== */
@media (max-width: 480px) {
  .pastor-photo-frame {
    width: 250px;  /* smaller width on mobile */
  }
  
  .pastor-info h2 {
    font-size: 1.3rem;
  }
  
  .pastor-info p {
    font-size: 0.9rem;
  }
}

/* ===== DESKTOP: SHOW 2 IMAGES SIDE BY SIDE ===== */
@media (min-width: 769px) {
  .pastor-photo-slide {
    width: 200%; /* only 2 images visible width */
    animation: pastorSlideDesktop 24s infinite;
  }
  
  .pastor-photo-slide img {
    width: 50%; /* 2 images fit */
  }
}

/* ===== DESKTOP SLIDE ANIMATION ===== */
@keyframes pastorSlideDesktop {
  0%   { transform: translateX(0); }
  40%  { transform: translateX(0); }
  45%  { transform: translateX(-50%); }
  85%  { transform: translateX(-50%); }
  90%  { transform: translateX(0); }
  100% { transform: translateX(0); }
}



/* ===== CORE BELIEFS CONTAINER ===== */
/* ====== GLOBAL STYLING ====== */
body {
  font-family: 'Roboto', sans-serif; /* consistent body font */
  background-color: #ffffff;
  color: #333;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

h2 {
  font-family: 'Montserrat', sans-serif; /* consistent headings */
  font-weight: bold;
  margin-bottom: 10px;
}

/* ====== ABOUT PROPHET SECTION ====== */
.about-prophet {
  background-color: #ffffff;
  border-left: 5px solid #6a0dad; /* Dark Purple */
  padding: 30px;
  margin: 20px auto;
  max-width: 900px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.about-prophet .about-title {
  font-family: 'Montserrat', sans-serif;
  color: #6a0dad; /* Dark Purple */
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.about-prophet p {
  font-family: 'Roboto', sans-serif;
  color: #444;
  margin-bottom: 15px;
  font-size: 0.90rem;
}

.about-prophet .bible-verse-text {
  font-family: 'Roboto', sans-serif;
  font-style: italic;
  color: #b8860b; /* Gold */
  font-weight: bold;
  margin-top: 20px;
  border-left: 3px solid #b8860b;
  padding-left: 10px;
  font-size: 0.90rem;
}

/* ====== VISION SECTION ====== */
.vision {
  background-color: #fdfdfd;
  border-top: 3px solid #b8860b; /* Gold */
  padding: 25px;
  margin: 20px auto;
  max-width: 900px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.vision .vision-title {
  font-family: 'Montserrat', sans-serif;
  color: #b8860b; /* Gold */
  font-size: 1.6rem;
}

.vision p {
  font-family: 'Roboto', sans-serif;
  color: #333;
  font-size: 0.90rem;
}

/* ====== MISSION SECTION ====== */
.mission {
  background-color: #ffffff;
  border: 2px dashed #6a0dad; /* Purple outline */
  padding: 25px;
  margin: 20px auto;
  max-width: 900px;
  border-radius: 10px;
}

.mission .mission-title {
  font-family: 'Montserrat', sans-serif;
  color: #6a0dad;
  font-size: 1.6rem;
}

.mission p {
  font-family: 'Roboto', sans-serif;
  color: #555;
  font-size: 0.90rem;
}

/* ====== FAITH STATEMENT SECTION ====== */
.faith-statement {
  background-color: #fefefe;
  border: 1px solid #e6e6e6;
  padding: 30px;
  margin: 20px auto;
  max-width: 900px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  font-family: 'Roboto', sans-serif;
  font-size: 0.90rem;
}

.faith-statement .section-header {
  font-family: 'Montserrat', sans-serif;
  color: #b8860b; /* Gold */
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.faith-statement ul {
  list-style: none;
  padding: 0;
}

.faith-statement ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: #333;
}

.faith-statement ul li::before {
  content: "✦"; /* Gold bullet */
  color: #6a0dad; /* Purple accent */
  position: absolute;
  left: 0;
  font-size: 1rem;
}





/* SAW A SEED   button STYLING>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
.sow-seed-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background-color: #28a745; /* green */
  color: white;
  font-weight: bold;
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.5);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1rem;
  text-decoration: none;
  z-index: 10000;
  transition: background-color 0.3s ease, transform 0.6s ease-in-out;
  animation: pulse-grow 3s infinite;
}

.sow-seed-btn:hover,
.sow-seed-btn:focus {
  background-color: #1e7e34;
  outline: none;
  transform: scale(1.05);
  animation-play-state: paused;
}

.seed-icon {
  stroke: #d4af37; /* gold stroke */
  fill: none;
  margin-top: -5px;
  transform: scale(1.4);
}

/* Pulse animation */
@keyframes pulse-grow {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.5);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.7);
  }
}
/* SAW A SEED button STYLING DONE>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */


/* ===== Giving Section - New Style ===== */
.give-section {
  background: linear-gradient(135deg, #ffffff, #ead0f8); /* Light purple gradient */
  color: #fff;
  padding: 4rem 2rem;
  text-align: center;
  border-top: 5px solid #FFD700; /* Gold accent on top */
  border-bottom: 5px solid #FFD700; /* Gold accent on bottom */
  font-family: 'Roboto', sans-serif; /* consistent body font */
}

.give-section .give-wrapper {
  max-width: 720px;
  margin: auto;
  background: #2f0755;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.give-section h2 {
  font-family: 'Montserrat', sans-serif; /* consistent heading font */
  font-size: 2rem; /* slightly adjusted for consistency */
  color: goldenrod; /* Gold heading */
  font-weight: 700;
  margin-bottom: 1rem;
}

.give-section p {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem; /* consistent paragraph size */
  line-height: 1.7;
  margin-bottom: 2rem;
  color: #fff;
}

.give-section h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem; /* slightly smaller than h2 */
  color: #FFD700;
  margin-bottom: 1rem;
}

.give-section ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 450px;
}

.give-section ul li {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  margin-bottom: 0.7rem;
  color: #fff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.give-section ul li strong {
  color: #FFD700; /* Highlight labels */
}

.give-section ul li:hover {
  transform: scale(1.05);
  color: #FFD700;
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
  .give-section h2 {
    font-size: 1.7rem;
  }
  
  .give-section h3 {
    font-size: 1.2rem;
  }

  .give-section p,
  .give-section ul li {
    font-size: 0.95rem;
  }
}
/* GIVE PAGE   STYLING  DONE>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */


/* TESTIMONY  STYLING */
:root {
  --brand-dark-purple: #2f0755;
  --brand-gold: #d4af37;
  --brand-white: #ffffff;
}

.testimony-banner {
  position: relative;
  height: 200px; /* adjust height as needed */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  margin-bottom: 50px;
}

.testimony-banner .banner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures image covers the section */
  opacity: 0.4; /* low opacity for faded effect */
  z-index: 1;
}

.testimony-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(44, 5, 80, 0.6); /* purple overlay */
  z-index: 2;
  
}

.testimony-banner .banner-content {
  position: relative;
  z-index: 3;
  color: #ffffff; /* white text */
  padding: 0 20px;
}

.testimony-banner h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: goldenrod;
  text-transform: uppercase;
}

.testimony-banner p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.4;
}

/* Responsive for mobile */
@media (max-width: 767px) {
  .testimony-banner {
    height: 130px;
  }

  .testimony-banner h2 {
    font-size: 1.4rem;
  }

  .testimony-banner p {
    font-size: 0.85rem;
  }
}


/* ===== Testimony Scripture Section (Responsive) ===== */
.verse-section {
  position: relative;
  /* Replace with your image */
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;        /* base vertical spacing */
  overflow: hidden;
}

/* Brand purple overlay with low opacity for readability */
.verse-overlay {
  position: absolute; inset: 0;
  background: rgba(52, 21, 80, 0.6); /* #1c0730 @ 60% */
  z-index: 1;
}

/* Centered inner box with side whitespace + gold borders */
.verse-content {
  position: relative; z-index: 2;
  max-width: 960px;
  margin: 0 auto;
  margin-top: -50px;
  margin-bottom: -50px;

  /* Left/right whitespace */
  padding: 32px 24px;

  /* Gold side borders to frame the verse */
  border-left: 3px solid #d8ac1b;
  border-right: 3px solid #d8ac1b;

  /* Subtle backdrop to lift text from image (optional) */
  background: rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* Typography */
.verse-title {
  font-size: 1.7rem;
  line-height: 1.2;
  margin: 0 0 14px;
  color: #d8ac1b;            /* Gold */
  font-weight: 800;
  letter-spacing: 0.3px;
}

.verse-text {
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
  font-style: italic;
  color: #ffffff;
}

.verse-reference {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #ffffff;
}

/* ===== Responsive Tweaks ===== */
@media (min-width: 640px) {
  .verse-content {
    padding: 40px 40px;         /* more inner whitespace on tablets+ */
    border-left-width: 4px;
    border-right-width: 4px;
  }
  .verse-title { font-size: 2.2rem; }
}

@media (min-width: 1024px) {
  .verse-section { padding: 110px 24px; }
  .verse-content {
    padding: 48px 64px;         /* generous whitespace on desktop */
    border-left-width: 5px;
    border-right-width: 5px;
  }
  .verse-title { font-size: 2.4rem; }
  .verse-text  { font-size: 1.2rem; }
}


.testimonies-videos {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top:  50px;
  margin-bottom: -50px;
}

/* Base styles for all videos */
.testimony-video {
  flex: 1 1 320px;
  max-width: 320px;
  padding: 1rem;
  border-radius: 12px;
  color: var(--brand-dark-purple);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimony-video iframe {
  width: 100%;
  height: 180px;
  border-radius: 8px;
  margin-bottom: 0.75rem;
}

.video-description {
  font-size: 1rem;
  text-align: center;
  font-style: italic;
}

/* Video 1: Dark purple bg, gold border, white text */
.video-style-1 {
  background-color: var(--brand-white);
  border: 3px solid var(--brand-dark-purple);
  color: var(--brand-white);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
  margin-bottom: 120px;
}

.video-style-1 iframe {
  border-radius: 8px;
  box-shadow: 0 0 10px var(--brand-dark-purple);
}

/* Video 2: White bg, gold drop shadow, dark purple border */
.video-style-2 {
  background-color: var(--brand-white);
  border: 3px solid var(--brand-dark-purple);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
  margin-bottom: 120px;
}

.video-style-2 iframe {
  border-radius: 12px;
  box-shadow: 0 0 12px var(--brand-dark-purple);
}

/* Video 3: Gold bg, dark purple border, white text */
.video-style-3 {
  background-color: var(--brand-white);
  border: 3px solid var(--brand-gold);
  color: var(--brand-white);
  box-shadow: 0 6px 20px rgba(59, 10, 69, 0.5);
  margin-bottom: 120px;
}

/* Responsive */
@media (max-width: 900px) {
  .testimonies-videos {
    flex-direction: column;
    align-items: center;
  }
  .testimony-video {
    max-width: 90%;
  }
}

/* Make videos mobile-friendly */
@media (max-width: 768px) {
  .video-style-1,
  .video-style-2,
  .video-style-3 {
    margin-bottom: 10px; /* less margin for mobile */
  }

  .testimony-page-title {
  font-size: 2.5rem;
  font-weight: 900;
}

.testimony-subtitle {
  font-size: 1.8rem;
}

.testimony-description {
  font-size: 1rem;
}
}

@media (max-width: 768px) {
  .video-style-3 {
    margin-bottom: 120px; /* less margin for mobile */
  }
}
/* TESTIMONY PAGE STYLING DONE>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */

/* =====================================================
   MINISTRIES PAGE — BANNER SECTION STYLING
   ===================================================== */

/* Ministries Banner Container */
/* Banner container */
.ministries-banner {
  position: relative;
  width: 100%;
  height: 150px; /* default desktop height */
  overflow: hidden;
  font-family: 'Roboto', sans-serif; /* default body font */
}

/* Banner image */
.ministries-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  display: block;
}

/* Overlay */
.overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(59, 0, 102, 0.7);
  z-index: 1;
}

/* Text container */
.ministries-banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  text-align: center;
  white-space: nowrap;
}

/* Title */
.ministries-banner-title {
  font-family: 'Montserrat', sans-serif; /* heading font */
  font-size: 2.8rem; /* desktop */
  color: #dbb22c; /* gold */
  margin: 0 0 10px 0;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

/* Subtitle */
.ministries-banner-subtitle {
  font-family: 'Roboto', sans-serif; /* body font */
  font-size: 1.25rem;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
  font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .ministries-banner {
    height: 180px;
  }
  .ministries-banner-title {
    font-size: 2.2rem;
  }
  .ministries-banner-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .ministries-banner {
    height: 140px;
  }
  .ministries-banner-title {
    font-size: 1.6rem;
  }
  .ministries-banner-subtitle {
    font-size: 0.95rem;
  }
  .ministries-banner-text p {
    text-align: center;
    white-space: normal;
    font-size: 0.95rem;
  }
}


/* =====================================================
   MINISTRIES PAGE — OUTREACH MINISTRY (REVIVALS) STYLING
   ===================================================== */

.outreach-ministry-container {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 40px auto 0 auto;
  padding: 0 15px;
  flex-wrap: wrap; /* allow wrapping on small screens */
  font-family: 'Roboto', sans-serif; /* default body font */
}

.outreach-ministry-image {
  flex: 0 0 550px; /* fixed width for image container */
}

.outreach-ministry-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(59, 10, 69, 0.3);
  object-fit: cover;
}

.outreach-ministry-text {
  flex: 1;
  min-width: 250px; /* prevent text from shrinking too much */
}

/* Heading */
.outreach-ministry-text h2 {
  font-family: 'Montserrat', sans-serif; /* heading font */
  font-size: 2.5rem; /* desktop */
  color: var(--brand-dark-purple);
  margin-bottom: 15px;
  font-weight: 700;
}

/* Paragraph */
.outreach-ministry-text p {
  font-family: 'Roboto', sans-serif; /* body font */
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .outreach-ministry-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .outreach-ministry-image {
    flex: none;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .outreach-ministry-text {
    width: 100%;
    margin-top: -60px;
  }

  .outreach-ministry-text h2 {
    font-size: 1.7rem;
    margin-top: 5px;
    text-align: left;
  }

  .outreach-ministry-text p {
    margin-top: 5px;
    text-align: left;
    font-size: 0.90rem;
  }
}

/* OUTREACH MINISTRIES DONE>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */

/* ==========================================================
   DELIVERANCE & HEALING MINISTRIES
   ========================================================== */
.deliverance-healing-wrapper {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 15px;
  display: flex;
  gap: 30px;
  flex-wrap: nowrap;
  margin-bottom: 90px;
}

.deliverance-ministry-box,
.healing-ministry-box {
  background-color: var(--brand-dark-purple);
  border: 4px solid var(--brand-gold);
  border-radius: 16px;
  color: var(--brand-white);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
  flex: 1 1 48%;
  display: flex;
  flex-direction: column;
  padding: 40px 25px;
}

.deliverance-ministry-content,
.healing-ministry-content {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: nowrap;
}

.deliverance-ministry-text h2,
.healing-ministry-text h2 {
  font-family: 'Montserrat', sans-serif; /* heading font */
  font-size: 2.3rem;
  color: var(--brand-gold);
  margin-bottom: 20px;
  font-weight: 400;
}

.deliverance-ministry-text p,
.healing-ministry-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.deliverance-ministry-video,
.healing-ministry-video {
  flex: 1 1 50%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.6);
}

.deliverance-ministry-video iframe,
.healing-ministry-video iframe {
  width: 100%;
  height: 250px;
  border-radius: 12px;
}

/* ==========================================================
   PROPHECY & WORD MINISTRIES
   ========================================================== */
.prophecy-word-wrapper {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 15px;
  display: flex;
  gap: 30px;
  flex-wrap: nowrap;
  margin-bottom: 90px;
}

.prophecy-ministry-box,
.word-ministry-box {
  background-color: var(--brand-dark-purple);
  border: 4px solid var(--brand-gold);
  border-radius: 16px;
  color: var(--brand-white);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
  flex: 1 1 48%;
  display: flex;
  flex-direction: column;
  padding: 40px 25px;
  
}

.prophecy-ministry-content,
.word-ministry-content {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: nowrap;
}

.prophecy-ministry-text h2,
.word-ministry-text h2 {
  font-size: 2.3rem;
  color: var(--brand-gold);
  margin-bottom: 20px;
  font-weight: 400;
  font-family: 'Montserrat', sans-serif; /* heading font */
}

.prophecy-ministry-text p,
.word-ministry-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.prophecy-ministry-video,
.word-ministry-video {
  flex: 1 1 50%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.6);
}

.prophecy-ministry-video iframe,
.word-ministry-video iframe {
  width: 100%;
  height: 250px;
  border-radius: 12px;
}

/* ==========================================================
   RESPONSIVE DESIGN
   ========================================================== */
@media (max-width: 900px) {
  .deliverance-healing-wrapper,
  .prophecy-word-wrapper {
    flex-wrap: wrap;
  }

  .deliverance-ministry-box,
  .healing-ministry-box,
  .prophecy-ministry-box,
  .word-ministry-box {
    flex: 1 1 100%;
    margin-bottom: 15px;
  }

  .deliverance-ministry-content,
  .healing-ministry-content,
  .prophecy-ministry-content,
  .word-ministry-content {
    flex-direction: column;
    gap: 0px;
  }

  .deliverance-ministry-video iframe,
  .healing-ministry-video iframe,
  .prophecy-ministry-video iframe,
  .word-ministry-video iframe {
    height: 130px;
  }
}
  
/* MINISTRIES SECTION PAGE DONE ..it share styling with event BANNER>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */


/* === EVENT SECTION CONTAINER === */
.events-section {
  max-width: 1200px;          /* Max width to center content */
  margin: 40px auto;          /* Vertical margin + center horizontally */
  padding: 0 15px;            /* Side padding */
  color: #3b0066;             /* Dark purple text */
  font-family: 'Roboto', sans-serif; /* consistent body font */
}

/* Section Title Styling */
.events-section h2 {
  font-family: 'Montserrat', sans-serif; /* heading font */
  text-align: center;
  color: #d4af37;             /* Gold */
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
}


/* Flex Container for Event Cards */
.events-container {
  display: flex;
  gap: 20px;                 /* Space between cards */
  flex-wrap: wrap;           /* Wrap cards on smaller screens */
  justify-content: center;   /* Center cards horizontally */
}

/* Individual Event Card Styling */
.event-card {
  background: #f9f7f1;        /* Light background */
  border: 2px solid #3b0066; /* Dark purple border */
  border-radius: 8px;
  overflow: hidden;
  width: 18%;                /* About A5 size width on desktop */
  min-width: 220px;          /* Prevent too narrow */
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;    /* Stack flyer and info vertically */
  transition: transform 0.3s ease; /* Hover zoom effect */
  margin-bottom:  50px;
}

/* Hover Zoom Effect on Event Cards */
.event-card:hover {
  transform: scale(1.05);
}

/* Flyer Image Styling */
.event-flyer {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Event Info Container */
.event-info {
  padding: 15px;
  flex-grow: 1; /* Take up remaining space */
}

/* Event Title */
.event-info h3 {
  margin: 0 0 10px;
  color: #3b0066;
  font-size: 1.2rem;
}

/* Event Date and Time */
.event-date-time {
  font-weight: bold;
  color: #d4af37;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

/* Event Description */
.event-description {
  font-size: 0.95rem;
  line-height: 1.3;
  color: #3b0066;
}

/* === Responsive Styles === */

/* Tablet and smaller: 2 cards per row */
@media (max-width: 1024px) {
  .event-card {
    width: 45%;
    min-width: unset;
  }
}

/* Mobile: Full width cards stacked */
@media (max-width: 600px) {
  .event-card {
    width: 100%;
  }
}
/* EVENT PAGE DONE >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
/* ===== Contact Form Section ===== */
/* === CONTACT FORM SECTION === */
.contact-form-section {
  background: #fdf8f0;
  padding: 3rem 2rem;
  text-align: center;
  font-family: 'Roboto', sans-serif; /* consistent body font */
}

.contact-form-section h2 {
  font-family: 'Montserrat', sans-serif; /* heading font */
  font-weight: 700;
  color: #6A0DAD;
  margin-bottom: 0.5rem;
}

.contact-form-section p {
  color: #444;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.contact-form-section form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form-section input,
.contact-form-section textarea {
  padding: 0.8rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
}

.contact-form-section textarea { min-height: 120px; }

.contact-form-section button {
  background: gold;
  border: none;
  color: #6A0DAD;
  padding: 0.9rem;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif; /* optional for button emphasis */
}

.contact-form-section button:hover {
  background: #6A0DAD;
  color: white;
}

/* === CONTACT CARD SECTION === */
.contact-section {
  background: #fdf8f0;
  color: #ffffff;
  padding: 50px 30px;
  max-width: 500px;
  margin: 40px auto;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
  font-family: 'Roboto', sans-serif; /* consistent body font */
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-section h2 {
  font-family: 'Montserrat', sans-serif; /* heading font */
  color: #6A0DAD;
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.contact-section h2::after {
  content: "";
  display: block;
  width: 60%;
  height: 3px;
  background: goldenrod;
  margin: 8px auto 0;
  border-radius: 2px;
}

/* Contact Items */
.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 18px 0;
  padding: 14px 20px;
  border-left: 4px solid goldenrod;
  border-radius: 12px;
  background-color: #3b0066;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  font-family: 'Roboto', sans-serif;
}

.contact-item i {
  color: goldenrod;
  font-size: 22px;
  min-width: 25px;
  text-align: center;
}

.contact-item:hover {
  transform: translateX(8px);
  background-color: goldenrod;
}

.contact-item:hover i {
  color: #2e005c;
}

.contact-item a {
  color: #ffffff;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-item:hover a {
  color: #2e005c;
}

.contact-item .whatsapp,
.contact-item a[href^="mailto:"] {
  padding: 6px 14px;
  border-radius: 25px;
  transition: all 0.3s ease;
  margin-left: -20px;
  font-weight: 500;
}

.contact-item .whatsapp:hover,
.contact-item a[href^="mailto:"]:hover {
  background-color: #ffffff;
  color: #2e005c;
  border-color: goldenrod;
  transform: scale(1.05);
}




/* CONTACT PAGE DONE  it also share DONATION FORM STYLE>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */



/* =============================
   Branch Section Container
   ============================= */
.branch-map {
  background-color: #ffffff; /* White background */
  color: #2e005c;            /* Dark purple text */
  padding: 30px 20px;        
  margin: 30px auto;         
  border-radius: 15px;       
  max-width: 800px;          
  box-shadow: 0 8px 20px rgba(0,0,0,0.1); /* Soft shadow */
  font-family: 'Arial', sans-serif; 
  text-align: center;
  transition: transform 0.3s ease;
  margin-top: 50px;
}

.branch-map:hover {
  transform: scale(1.02); 
}

/* =============================
   Branch Section Heading
   ============================= */
.branch-map h2 {
  color: #2e005c;          /* Gold heading */
  font-size: 28px;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;    
  font-weight: 500;           /* Space between icon and text */
}

/* =============================
   Branch Section Text
   ============================= */
.branch-map p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #2e005c;          /* Dark purple text */
}

/* =============================
   Map Container Styling
   ============================= */


.map-container iframe {
  width: 100%;                  
  height: 300px;                
  border: 0;
  border-radius: 12px;
}

/* =============================
   Responsive Mobile Styling
   ============================= */
@media (max-width: 600px) {
  .branch-map {
    padding: 20px 15px;        
  }

  .branch-map h2 {
    font-size: 24px;            
  }

  .branch-map p {
    font-size: 14px;            
  }

  .map-container iframe {
    height: 350px; 
          
  }
}

/* THIS  IS GIVE STYLING>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
.give-banner {
  position: relative;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 0 20px;
}

.give-banner .background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* No opacity on image */
  z-index: 1;
}

.give-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(48, 17, 77, 0.4); /* low opacity dark purple */
  z-index: 2;
}

.give-banner .banner-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  padding: 0 10px;
}

.give-banner h1 {
  font-size: 3.2rem;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
  color: gold; /* Gold color for main heading */
  font-size: 3rem;
  margin-bottom: 0.5rem;
  font-weight: 800;
  letter-spacing: 2px;
}

.give-banner p {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  color: white; /* Subtitle text white */
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
}

.give-banner .overlay {
  background-color: rgba(81, 1, 105, 0.6); /* lighter dark purple overlay, very low opacity */
}


/* Responsive styles */
@media (max-width: 768px) {
  .give-banner {
    height: 220px;
  }
  .give-banner h1 {
    font-size: 2rem;
  }
  .give-banner p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .give-banner {
    height: 180px;
  }
  .give-banner h1 {
    font-size: 1.5rem;
    margin-top: 15px;
  }
  .give-banner p {
    font-size: 0.9rem;
  }

.give-banner {
  height: 150px;
  }
}

/* ===== Encouraging Words + Bank Section (Isolated) ===== */
.encouraging-bank-section-2025 {
  text-align: center;
  padding: 40px 15px;
}

.encouraging-bank-wrapper-2025 {
  max-width: 800px;
  margin: auto;
  background-color: #1c0730;
  padding: 35px 25px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 11);
}

.encouraging-bank-wrapper-2025 h2,
.encouraging-bank-wrapper-2025 h3 {
  color: goldenrod;
  margin-bottom: 25px;
  text-align: left;
}

.encouraging-bank-wrapper-2025 h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.encouraging-bank-wrapper-2025 h3 {
  text-align: left;
  font-size: 1.4rem;
}

.encouraging-bank-wrapper-2025 p {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  text-align: left;
}

.encouraging-bank-wrapper-2025 ul {
  list-style: none;
  padding: 0;
}

.encouraging-bank-wrapper-2025 li {
  margin: 8px 0;
  text-align: left;
  color: #fff;
}

.encouraging-bank-wrapper-2025 strong {
  color: goldenrod;
}

/* ===== Partner Section ===== */
.ari-partner-section {
  background-color: #2f0755; /* Dark purple */
  padding: 40px 20px;
  text-align: center;
}

.ari-partner-container {
  max-width: 800px;
  margin: auto;
  border: 2px solid gold;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.ari-partner-container h2 {
  color: goldenrod;
  margin-bottom: 15px;
  text-align: left;
}

.ari-partner-container p {
  color: white;
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: left;
}

/* ===== FAQ Section ===== */
.ari-faq-section {
  background-color: #f8f8f8;
  padding: 50px 20px;
}

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

.ari-faq-container h2 {
  text-align: center;
  color: #1c0730;
  margin-bottom: 30px;
}

/* FAQ Item Styling */
.ari-faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  background-color: white;
  border-left: 4px solid gold;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* Hide checkbox */
.ari-faq-toggle {
  display: none;
}

.ari-faq-question {
  display: block;
  padding: 15px 20px;
  cursor: pointer;
  color: #1c0730;
  font-weight: bold;
  position: relative;
}

.ari-faq-question::after {
  content: '▼';
  position: absolute;
  right: 20px;
  transition: transform 0.3s ease;
  font-size: 0.8rem;
}

.ari-faq-toggle:checked + .ari-faq-question::after {
  transform: rotate(180deg);
}

/* Answer Section */
.ari-faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: #333;
  line-height: 1.5;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.ari-faq-toggle:checked ~ .ari-faq-answer {
  max-height: 500px;
  padding: 15px 20px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .ari-partner-container,
  .ari-faq-container {
    padding: 20px;
  }
}

/* =GIVE PAGE DONE>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>===== */

/* Privacy Policy Page Styling */
.privacy-main-container {
  max-width: 900px;
  margin: 3rem auto;
  background-color: rgba(28, 7, 48, 0.9); /* dark purple low opacity */
  padding: 2.5rem 3rem;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5); /* gold shadow */
  color: white;
  line-height: 1.6;
   margin-bottom: 100px;
}

.privacy-main-container h1,
.privacy-main-container h2 {
  color: #d4af37; /* gold */
}

.privacy-main-container h1 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.privacy-main-container p {
  margin-bottom: 1rem;
}

.privacy-main-container a {
  color: #d4af37; /* gold */
  text-decoration: underline;
}

/* Responsive for smaller screens */
@media (max-width: 600px) {
  .privacy-main-container {
    padding: 1.5rem 1.5rem;
    margin: 2rem 1rem;
    margin-bottom: 105px;
  }
}
/* =PRIVACY POLICY, terms and condition and disclaimer uses one styling.... PAGE DONE >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>===== */

/* ===============================
   FOOTER BASE STYLING
================================ */
.custom-footer {
  background-color: #1c0730; /* Dark Purple */
  color: #ffffff;
  width: 100%;
  padding: 3rem 1rem;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
  text-align: center;
}

/* ===============================
   VISIT US SECTION
================================ */
.footer-visit-us {
  background-color: #1c0730; /* Dark Purple */
  color: #ffffff;
  padding: 50px 20px;
  border-radius: 12px;
  max-width: 1000px;
  margin: 0 auto 40px;
}

.footer-visit-us .visit-title {
  font-size: 2rem;
  margin-bottom: 12px;
  color: goldenrod; /* Gold */
}

.footer-visit-us .visit-intro {
  color: #ffffff;
  margin-bottom: 35px;
}

.footer-visit-us .locations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 70px;
}

.footer-visit-us .location-card {
  background-color: #2a0f4b; /* Slightly lighter purple */
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.2s;
}

.footer-visit-us .location-card:hover {
  transform: translateY(-5px);
}

.footer-visit-us .location-card h4 {
  color: goldenrod; /* Gold */
  margin-bottom: 10px;
}

.footer-visit-us .location-card p {
  color: #ffffff;
  margin-bottom: 12px;
}

.footer-visit-us .map-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: goldenrod; /* Gold */
  color: #1c0730; /* Dark Purple text */
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s;
}

.footer-visit-us .map-link:hover {
  background-color: #ffffff;
  color: #1c0730;
}

/* Make Google Maps iframe responsive only on mobile */
@media (max-width: 768px) {
  .footer-visit-us .location-card iframe {
    width: 100% !important;
    height: 250px !important; /* adjust height as needed */
    border: 0;
    border-radius: 8px;
  }

  /* Make sure the link-style maps (anchor tags) still look fine */
  .footer-visit-us .map-link {
    display: block;
    text-align: center;
    margin-top: 12px;
  }
}
  

/* Church Info Section */
.church-info {
  margin-top: 30px;
  margin-bottom: -30px;
  color: #ffffff;
  font-size: 0.91rem;
  line-height: 1.6;
  text-align: center;
}

.church-info a {
  color: goldenrod;
  text-decoration: none;
  font-weight: 600;
}

.church-info a:hover {
  text-decoration: underline;
}

/* ===============================
   MAIN ROW (Contact | Logo | Links)
================================ */
.footer-main-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Contact Box */
.footer-contact-box {
  background-color: goldenrod; /* Gold */
  color: #1c0730; /* Dark Purple */
  padding: 25px;
  border-radius: 10px;
  max-width: 320px;
  text-align: center;
}

.footer-contact-box .contact-entry {
  display: block;
  text-decoration: none;
  color: #1c0730;
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 8px;
  transition: background-color 0.3s, color 0.3s;
}

.footer-contact-box .contact-entry:hover {
  background-color: rgba(255,255,255,0.2);
  color: #ffffff;
}

.footer-contact-box hr {
  border: none;
  border-top: 2px solid #1c0730;
  margin: 15px 0;
}

/* Logo & Social */
.footer-logo-social .footer-logo {
  width: 220px;
  margin: 0 auto 15px;
  display: block;
}

.footer-logo-social .follow-us {
  color: #d8ac1b; /* Gold */
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-logo-social .social-icons a {
  color: #ffffff;
  font-size: 20px;
  margin: 0 5px;
  transition: color 0.3s;
}

.footer-logo-social .social-icons a:hover {
  color: #d8ac1b; /* Gold */
}

/* Quick Links & Legal */
.footer-columns {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.footer-columns .footer-column h3 {
  border-bottom: 2px solid #d8ac1b; /* Gold underline */
  color: #ffffff;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

.footer-columns .footer-column ul {
  list-style: none; /* Remove bullets */
  padding: 0;
  margin: 0;
}

.footer-columns .footer-column ul li {
  margin: 6px 0;
}

.footer-columns .footer-column ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-columns .footer-column ul li a:hover {
  color: #d8ac1b; /* Gold hover */
}

/* Footer Bottom */
.footer-bottom {
  font-size: 13px;
  color: #ffffff;
  border-top: 1px solid #d8ac1b; /* Gold line */
  padding-top: 20px;
  margin-top: 20px;
}

.footer-bottom .arigraphix {
  color: #d8ac1b; /* Gold */
  font-style: italic;
}

/* ===============================
   RESPONSIVE MOBILE
================================ */
@media (max-width: 767px) {
  .footer-main-row {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .footer-columns {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}


/* ===============================
   RESPONSIVE MOBILE
================================ */
@media (max-width: 767px) {
  /* Stack main row vertically and center all items */
  .footer-main-row {
    flex-direction: column;
    gap: 30px;
    text-align: center;
    align-items: center; /* centers horizontally */
  }

  /* Center columns in quick links */
  .footer-columns {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    align-items: center; /* centers horizontally */
  }

  /* Ensure contact box and logo/social are centered */
  .footer-contact-box,
  .footer-logo-social {
    margin: 0 auto;
  }

  .footer-visit-us .locations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 70px;
}
}















/* Keep your other styles unchanged (contact-entry, social-icons, etc.) */



/* FOOTER STYLING DONE!>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
