/* Base Styling */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #fdfdfd;
  color: #111;
  overflow-x: hidden;

}

/* Header */
.site-header.light {
  background: #ffffff;
  color: #111;
  position: sticky;
  top: 0;
  z-index: 999;
  transition: all 0.3s ease;
  padding: 20px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

/* Decorative underline */
.site-header.light::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 6%;
  right: 6%;
  height: 8px;
  background: linear-gradient(to right, #e6c57c, transparent, #e6c57c);
}

/* Shrink effect (no blur anymore) */
.site-header.light.shrink {
  padding: 10px 0;
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* Container */
.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
}

/* Logo */
.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 95px;
  max-width: 300px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.site-header.light.shrink .logo-img {
  height: 50px;
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex-grow: 1;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links li a {
  color: #555;
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links li a:hover {
  color: #a6763e;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 0;
  background-color: #a6763e;
  transition: width 0.3s ease;
}

.nav-links li a:hover::after {
  width: 80%;
}

/* Hamburger icon */
.menu-toggle {
  display: none;
  font-size: 30px;
  cursor: pointer;
  margin-left: 20px;
  color: #555;
}



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

  .mobile-header {
    justify-content: space-between;
  align-items: center;
  width: 100%;
    display: flex;
  }

  .main-nav {
    width: 100%;
  }

  .nav-links {
    flex-direction: column;
    background: #fff;
    width: 100%;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid #eee;
    display: none;
  }

  body.nav-open .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .logo-img {
    height: 100px;
    max-width: 300px;
  }

  .site-header.light.shrink .logo-img {
    height: 60px;
  }

  .nav-links li a:hover {
    background-color: #f9f9f9;
  }
}

/* Gallery and Sections */
.welcome, .ministries, .gallery {
  padding: 60px 20px;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}


/* Welcome, Ministries, Gallery Sections */
.welcome, .ministries, .gallery {
  padding: 60px 20px;
  text-align: center;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

.parallax {
  
  height: 100vh;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 0;
}

/* Custom background variants */
.bg-pastor {
  background-image: url('/images/pastor_home.jpeg');
}

.bg-youth {
  background-image: url('/images/youth_department1.png');
}

.parallax-content {
  background: rgba(255, 255, 255, 0.8);
  padding: 40px 20px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.parallax-content h1 {
  font-size: 3em;
  color: #333;
  margin-bottom: 10px;
}

.parallax-content p {
  font-size: 1.2em;
  color: #555;
}


@media (max-width: 768px) {
  .parallax {
    background-attachment: scroll;
  }
}


/* Footer */
.site-footer {
  position: relative;
  background: linear-gradient(to top, #f7f7f7, #ffffff);
  color: #111;
  text-align: center;
  padding: 40px 20px;
  font-size: 0.95em;
  border-top: 1px solid #e0e0e0;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 6%;
  right: 6%;
  height: 8px;
  background: linear-gradient(to right, #e6c57c, transparent, #e6c57c);
  z-index: 1;
  box-shadow: 0 -2px 8px rgba(230, 197, 124, 0.4);
}


.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  padding: 20px 0;
  text-align: left;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-section h3 {
  color: #333;
  margin-bottom: 10px;
  font-size: 1.2em;
  font-weight: 600;
}

.footer-section p,
.footer-section a,
.footer-section ul li {
  color: #444;
  line-height: 1.6;
  text-decoration: none;
}

.footer-section a:hover {
  color: #a6763e;
  text-decoration: underline;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.social-icons a {
  color: #444;
  margin-right: 10px;
  font-size: 1.2em;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #a6763e;
}

.footer-bottom {
  margin-top: 20px;
  color: #666;
  font-size: 0.85em;
}

.split-container {
  max-width: 100vw;
  overflow-x: hidden;
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
}

.left-half {
  flex: 1;
  overflow: hidden;
}

.left-half img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-width: 100%;
  display: block;
}

.right-half {
  flex: 1;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px;
}

.content {
  max-width: 500px;
}

.content-box {
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.right-half h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.right-half p {
  font-size: 1.1em;
  color: #555;
}

*, *::before, *::after {
  box-sizing: border-box;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
  .split-container {
    flex-direction: column;
  }

  .left-half,
  .right-half {
    width: 100%;
    height: auto;
  }

  .left-half img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 550px;
    display: block;
  }

  .right-half {
    padding: 40px 20px;
    display: block;
  }
}








.youth-section {
  background: #f9f9f9;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

.youth-container {
  max-width: 900px;
  margin: auto;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
  border-left: 5px solid #6c63ff;
}

.youth-container h2,
.youth-container h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: #222;
  margin-bottom: 16px;
  border-bottom: 2px solid #6c63ff;
  display: inline-block;
  padding-bottom: 4px;
}

.what-we-do {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 30px;
}

.what-we-do li {
  margin-bottom: 12px;
  line-height: 1.7;
  transition: all 0.3s ease;
}

.what-we-do li:hover {
  background: #f2f2ff;
  border-radius: 6px;
  padding-left: 10px;
}

.invitation-text {
  font-size: 1.05rem;
  margin-bottom: 25px;
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 12px;
}

.contact-details div {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-details i {
  color: #6c63ff;
  font-size: 1.2rem;
}

/**********************/
/* faith_and_practice */
/**********************/

.statements-section {
  padding: 50px 20px;
  background: #f9f9f9;
}

.statements-section h1 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2em;
  color: #333;
}

.statement-list {
  max-width: 900px;
  margin: auto;
  list-style-type: decimal;
  padding-left: 20px;
}

.statement-list li {
  margin-bottom: 20px;
  font-size: 1.1em;
  line-height: 1.6;
  color: #444;
}

.statement-list li strong {
  display: block;
  color: #222;
}

.statement-list li em {
  color: #777;
  font-size: 0.95em;
}

/**********************/
/* kitchen_and_market */
/**********************/

.soup-kitchen {
  background: #fffdf7;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

.soup-kitchen .container {
  max-width: 900px;
  margin: auto;
}

.soup-kitchen .section-title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  color: #2c2c2c;
  margin-bottom: 20px;
}

.soup-kitchen .section-title span {
  display: block;
  font-size: 22px;
  color: #6c757d;
}

.soup-kitchen .scripture-box {
  background: #fff3cd;
  border-left: 6px solid #f0ad4e;
  padding: 20px;
  margin: 30px 0;
  border-radius: 8px;
}

.soup-kitchen .scripture-box .verse {
  font-style: italic;
  font-size: 16px;
  margin-bottom: 10px;
}

.soup-kitchen .reference {
  text-align: right;
  font-size: 14px;
  color: #555;
}

.soup-kitchen .intro {
  font-size: 18px;
  font-weight: 500;
  margin-top: 30px;
}

.soup-kitchen .mission-box,
.soup-kitchen .offerings,
.soup-kitchen .service-times,
.soup-kitchen .how-to-help,
.soup-kitchen .cta-box {
  margin-top: 40px;
}

.soup-kitchen h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #222;
}

.soup-kitchen ul {
  list-style: none;
  padding-left: 0;
}

.soup-kitchen ul li {
  margin-bottom: 10px;
  font-size: 16px;
  padding-left: 24px;
  position: relative;
}

.soup-kitchen ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ff9900;
  font-size: 20px;
  top: -2px;
}

.soup-kitchen .cta-box {
  background-color: #f2f6ff;
  padding: 25px;
  border-left: 5px solid #007bff;
  border-radius: 8px;
  text-align: center;
}

.soup-kitchen .btn-cta {
  margin-top: 20px;
  display: inline-block;
  background: #007bff;
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.soup-kitchen .btn-cta:hover {
  background: #0056b3;
}



/**********************/
/*   men_and_women    */
/**********************/

.department-section {
  padding: 40px 20px;
  background-color: #f7f7f7;
}

.section-title {
  text-align: center;
  font-size: 2.2em;
  margin-bottom: 10px;
  color: #222;
}

.intro-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 1.1em;
  color: #444;
}

.department-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.department-box {
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 30px;
  max-width: 500px;
  flex: 1 1 350px;
  transition: transform 0.3s ease;
}

.department-box:hover {
  transform: translateY(-5px);
}

.department-box h3 {
  font-size: 1.5em;
  color: #2c3e50;
}

.department-box h4 {
  font-size: 1.2em;
  color: #555;
  margin-bottom: 10px;
}

.department-box ul {
  margin-top: 10px;
  padding-left: 20px;
}

.department-box ul li {
  margin-bottom: 8px;
}

.department-box blockquote {
  margin-top: 20px;
  font-style: italic;
  color: #777;
  border-left: 4px solid #ccc;
  padding-left: 15px;
}


/**********************************/
/*   gathering_of_the_anointed    */
/**********************************/




.flyer-container {
  max-width: 800px;
  margin: 40px auto;
  background-color: #fffdf9;
  padding: 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

h1 {
  font-size: 2.8em;
  color: #362b23;
  text-align: center;
  margin-bottom: 0.5em;
}

h2 {
  font-size: 1.3em;
  color: #5a4c43;
  font-style: italic;
  text-align: center;
  margin-bottom: 1.5em;
}

h3 {
  margin-top: 1.5em;
  color: #392f2b;
}

blockquote {
  font-style: italic;
  color: #6c5340;
  margin: 1em 0;
  padding-left: 1em;
  border-left: 4px solid #c9b79d;
}

ul {
  padding-left: 1.2em;
}

ul li {
  margin-bottom: 0.5em;
}

a {
  color: #7a4e0b;
  text-decoration: underline;
}

@media (max-width: 600px) {
  .flyer-container {
    padding: 20px;
  }

  h1 {
    font-size: 2em;
  }

  h2 {
    font-size: 1em;
  }
}

.gallery-section {
  margin-top: 40px;
  text-align: center;
}

.gallery-section h3 {
  margin-bottom: 20px;
  font-size: 1.5em;
  color: #3a2d24;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 0 10px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.02);
}


/**********************************/
/*   prayer_mountain    */
/**********************************/


.prayer-mountain {
  max-width: 800px;
  margin: 3rem auto;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.prayer-mountain h1 {
  text-align: center;
  font-size: 2rem;
  color: #0c2a57;
}

.prayer-mountain h1 span {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1b3979;
  display: block;
}

blockquote {
  font-style: italic;
  text-align: center;
  margin: 1rem 0;
  color: #444;
}

h2, h3 {
  margin-top: 2rem;
  color: #1b3979;
}

ul {
  padding-left: 1.2rem;
  line-height: 1.7;
}

.prayer-section,
.prayer-request {
  margin-top: 2rem;
  padding: 1rem;
  background: #eef3fc;
  border-left: 4px solid #1b3979;
  border-radius: 6px;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  background: #1b3979;
  color: white;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #0c2a57;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Adjust YouTube button for small screens */
@media (max-width: 600px) {
  .youtube-btn {
    display: block;
    width: 90%;
    margin: 15px auto;
    padding: 14px;
    font-size: 1rem;
  }
}
