/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

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

  /* Background with overlay */
  background: 
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), /* dark overlay */
    url("img/overlay.jpeg") no-repeat center center fixed;
  background-size: cover;
  color: white; /* ensures text is readable */
}

/* Top Bar */
.top-bar {
  background: #c2185b;
  height: 40px;
  color: #fff;
  font-size: 15px;
  padding: 10px 20px;   /* slim like Spiegel */
  display: flex;
  justify-content: center;
  gap: 25px;
  padding-left: 154px; /* shift text right */
}


/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 15px 50px;   /* more left-right space */
  height: 80px;         /* Spiegel-style height */
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}

/* Logo + Title */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 50px;    /* Slightly bigger like Spiegel */
  height: auto;
}

.logo span {
  font-size: 22px;
  font-weight: bold;
  color: #c2185b;
  letter-spacing: 0.5px;
}

/* Navigation Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;   /* Spiegel-like spacing */
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 0;
  transition: 0.3s;
}

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

/* Social Icons */
.social-icons a {
  color: #333;
  margin-left: 15px;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #c2185b;   /* hover effect like Spiegel */
  transform: scale(1.1);
}


/* Slider */
.slider {
  margin-top: 0;
}

.slide {
  height: 650px;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  color: white;
}

/* Slide Backgrounds */
.slide1 { background-image: url('img/gdm.jpg'); }
.slide2 { background-image: url('img/gdm2.jpg'); }
.slide3 { background-image: url('img/church.jpeg'); }
.slide4 { background-image: url('img/coaching.jpeg'); }
.slide5 { background-image: url('img/counselling.jpeg'); }

.slide-content {
  background: rgba(0, 0, 0, 0.4);
  padding: 30px;
  margin-left: 10%;
  border-radius: 8px;
  max-width: 600px;
}

.slide-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.slide-content p {
  font-size: 1.2rem;
  line-height: 1.5;
}

/* Slick Arrows */
.slick-prev, .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.8);
  border: none;
  font-size: 2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: 20;
  cursor: pointer;
}

.slick-prev { left: 20px; }
.slick-next { right: 20px; }

.slick-dots {
  bottom: 20px;
}

.slick-dots li button:before {
  color: #82b440;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .slide {
    height: 450px;
  }

  .slide-content h2 {
    font-size: 1.6rem;
  }

  .slide-content p {
    font-size: 1rem;
  }

  .main-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
  }

  .navbar ul {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .slick-prev, .slick-next {
    display: none !important;
  }
}

/* About Section */
.about-section {
  padding: 80px 10%;
  background:#f8f6fb;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h4 {
  color: #c2185b;
  font-size: 3.5rem;   /* Bigger size */
  font-weight: 800;  /* Extra bold */
  margin-bottom: 20px;
}


.about-text h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #222;
}

.about-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}

.about-text h3 {
  margin-top: 20px;
  font-size: 22px;
  color: #333;
}

.about-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

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

  .about-text h3 {
    font-size: 20px;
  }
}

.about-section {
  background: #f8f6fb; /* Light background */
  padding: 60px 20px;
  font-family: 'Arial', sans-serif;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap; /* Responsive */
}

.about-image img {
  max-width: 500px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.about-content {
  flex: 1;
  min-width: 300px;
}

.about-content h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #222;
}

.about-content h3 {
  font-size: 22px;
  color: #c2185b; /* Pinkish like Spiegel site */
  margin-bottom: 20px;
}

.about-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-content ul {
  list-style: none;
  padding: 0;
}

.about-content ul li {
  margin: 10px 0;
  font-size: 16px;
  color: #333;
  position: relative;
  padding-left: 25px;
}

.about-content ul li::before {
  content: "•";
  color: #c2185b;
  font-size: 22px;
  position: absolute;
  left: 0;
  top: -2px;
}
.about-box-section {
  background: #f8f6fb;
   /* Light background */
  padding: 60px 20px;
  font-family: 'Arial', sans-serif;
}

.about-box-container {
  background: #f8f6fb;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap; /* Responsive */
}

.about-box-image img {
  max-width: 500px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.about-box-content {
  background: #f8f6fb;
  flex: 1;
  min-width: 300px;
}

.about-box-content h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #222;
}

.about-box-content h3 {
  font-size: 22px;
  color: #c2185b; /* Pinkish like Spiegel site */
  margin-bottom: 20px;
}

.about-box-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-box-content ul {
  list-style: none;
  padding: 0;
}

.about-box-content ul li {
  margin: 10px 0;
  font-size: 16px;
  color: #333;
  position: relative;
  padding-left: 25px;
}

.about-box-content ul li::before {
  content: "•";
  color: #c2185b;
  font-size: 22px;
  position: absolute;
  left: 0;
  top: -2px;
}

.goodlife-box-section {
  background: #f8f6fb;
  padding: 60px 20px;
  font-family: 'Arial', sans-serif;
}

.goodlife-box-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.goodlife-box-image img {
  max-width: 500px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.goodlife-box-content {
  flex: 1;
  min-width: 300px;
}

.goodlife-box-content h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #222;
}

.goodlife-box-content h3 {
  font-size: 22px;
  color: #c2185b; /* Accent color similar to your original */
  margin-bottom: 20px;
}

.goodlife-box-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}

.goodlife-box-content ul {
  list-style: none;
  padding: 0;
}

.goodlife-box-content ul li {
  margin: 10px 0;
  font-size: 16px;
  color: #333;
  position: relative;
  padding-left: 25px;
}

.goodlife-box-content ul li::before {
  content: "•";
  color: #c2185b;
  font-size: 22px;
  position: absolute;
  left: 0;
  top: -2px;
}

.what-we-do-section {
  background: #ffffff;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

.what-we-do-container {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.what-we-do-image img {
  max-width: 500px;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.what-we-do-content {
  flex: 1;
  min-width: 300px;
}

.what-we-do-content h2 {
  font-size: 30px;
  color: #222;
  margin-bottom: 10px;
}

.what-we-do-content h3 {
  font-size: 24px;
  color: #c2185b;  /* Spiegel-like accent color */
  margin-bottom: 20px;
}

.what-we-do-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}

.what-we-do-content ul {
  list-style: none;
  padding: 0;
}

.what-we-do-content ul li {
  margin: 10px 0;
  font-size: 16px;
  color: #333;
  position: relative;
  padding-left: 25px;
}

.what-we-do-content ul li::before {
  content: "•";
  color: #c2185b;
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 0;
}


/* Footer */
/* Footer Styling - Larger + Light Grey */
.site-footer {
  background: #f3eded;   /* light grey background */
  color: #333;           /* darker text for contrast */
  padding: 100px 40px 40px;  /* more spacious padding */
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: auto;
  gap: 60px;   /* more gap between columns */
}

.footer-col {
  flex: 1;
  margin: 20px;
  min-width: 320px;   /* wider columns */
}

.footer-logo {
  width: 240px;       /* much larger logo */
  margin-bottom: 25px;
}

.footer-col h3 {
  color: #111;
  margin-bottom: 25px;
  font-size: 26px;    /* bigger heading */
  font-weight: bold;
}

.footer-col p {
  font-size: 18px;    /* larger paragraph text */
  line-height: 1.9;
  color: #444;
}

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

.footer-col ul li {
  margin: 14px 0;
}

.footer-col ul li a {
  text-decoration: none;
  color: #444;
  font-size: 18px;    /* larger links */
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #c2185b;     /* accent hover */
}

.social-icons a {
  display: inline-block;
  margin: 14px;
  color: #444;
  font-size: 26px;    /* larger icons */
  transition: color 0.3s;
}

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


.footer-bottom {
  text-align: center;
  padding: 30px 0 0;
  margin-top: 50px;
  border-top: 1px solid #ccc;
  font-size: 16px;    /* slightly larger text */
  color: #666;
}

.site-footer {
  background: #f3eded;
  color: #333;
  padding: 120px 60px 60px;  /* more breathing space */
}


/* --- Event Ticker Styles --- */
.event-ticker {
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
  height: 40px;
  background: #c2185b;
  border-bottom: 1px solid #e5e7eb;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
  font: 900 14px/1 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: ticker-scroll 35s linear infinite;
}

.event-ticker:hover .ticker-track,
.event-ticker:focus-within .ticker-track {
  animation-play-state: paused;
}

.ticker-list {
  color: white;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.ticker-list li {
  display: inline-block;
  padding: 0 2rem;
  line-height: 40px;
  white-space: nowrap;
}

/* Seamless infinite scroll */
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* Mobile */
@media (max-width: 480px) {
  .event-ticker { height: 36px; }
  .ticker-list li {
    line-height: 36px;
    padding: 0 1rem;
    font-size: 13px;
  }
}

/* Make slide content clickable */
.slide-content h2 a {
  color: white;              /* custom color */
  text-decoration: none;     /* remove underline */
  cursor: pointer;
  position: relative;
  z-index: 10;               /* keep above overlays */
}

/* Optional hover effect */
.slide-content h2 a:hover {
  color: plum;
}

/* Submenu for Program */
.nav-links li {
  position: relative;
}

.submenu {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff; /* match your theme */
  display: none;
  padding: 0;
  margin: 0;
  border-radius: 6px;
  min-width: 180px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 1000;
}

.submenu li a {
  display: block;
  padding: 10px 15px;
  color: #333; /* adjust to match your menu */
  text-decoration: none;
  white-space: nowrap;
}

.submenu li a:hover {
  background: #f1f1f1;
  color: #c2185b; /* hover color */
}

.dropdown:hover .submenu {
  display: block;
}

  .church-section {
    background: linear-gradient(180deg, #0b0f1a, #101726);
    padding: 60px 20px;
    color: #f5f5f5;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  }

  .church-container {
    max-width: 1100px;
    margin: 0 auto 40px auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    align-items: center;
  }

  .church-text h2 {
    margin-bottom: 15px;
    color: #c2185b;
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .church-text p {
    margin-bottom: 14px;
    color: #e0d7df;
    line-height: 1.6;
    font-size: 1rem;
  }

  .church-image {
    width: 100%;
    aspect-ratio: 16/11;
    border-radius: 16px;
    overflow: hidden;
    background: #0e162a;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  }

  .church-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* ===== Core Values Styling ===== */
  .core-values {
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 40px;
  }

  .core-values h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: #c2185b;
  }

  .core-values ol {
    counter-reset: value-counter;
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }

  .core-values ol > li {
    counter-increment: value-counter;
    background: #1d2233;
    border-radius: 12px;
    padding: 20px 20px 15px 70px;
    position: relative;
    box-shadow: 0 3px 8px rgba(0,0,0,0.4);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  /* Overlay effect */
  .core-values ol > li::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(194, 24, 91, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .core-values ol > li:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 18px rgba(194, 24, 91, 0.6);
  }

  .core-values ol > li:hover::after {
    opacity: 1;
  }

  /* Number styling */
  .core-values ol > li::before {
    content: counter(value-counter);
    position: absolute;
    left: 20px;
    top: 20px;
    width: 36px;
    height: 36px;
    background: #c2185b;
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 1;
  }

  .core-values ol > li strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #ffffff;
    position: relative;
    z-index: 2;
  }

  .core-values ol ul {
    margin: 0;
    padding-left: 20px;
    position: relative;
    z-index: 2;
  }

  .core-values ol ul li {
    margin-bottom: 6px;
    color: #e0d7df;
    line-height: 1.5;
  }

  /* Responsive */
  @media (max-width: 900px) {
    .church-container {
      grid-template-columns: 1fr;
    }
    .church-image {
      aspect-ratio: 16/9;
    }
    .core-values ol > li {
      padding-left: 60px;
    }
    .core-values ol > li::before {
      width: 28px;
      height: 28px;
      font-size: 1rem;
    }
  }

  /* ===== Counselling Services Styling (Wide Boxes) ===== */
.services-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
}

.services-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  color: #c2185b;
}

.services-section .services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns */
  gap: 25px; /* space between boxes */
}

.services-section .service {
  background: #1d2233;
  border-radius: 12px;
  padding: 30px;
  min-height: 250px; /* ensures wide rectangular look */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Overlay hover effect */
.services-section .service::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(194, 24, 91, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.services-section .service:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(194, 24, 91, 0.5);
}

.services-section .service:hover::after {
  opacity: 1;
}

.services-section .service h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #fff;
  position: relative;
  z-index: 2;
}

.services-section .service p {
  color: #e0d7df;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* Responsive: stack on small screens */
@media (max-width: 900px) {
  .services-section .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Headings */
h1, h2, h3, h4, .section-title {
  font-family: 'Cinzel', serif;
}

/* Body text */
body, p, li, strong {
  font-family: 'Lora', serif;
}

/* Section Styling */
.gl-gallery-section {
  text-align: center;
  padding: 40px 20px;
}

.gl-gallery-heading {
   color: #c2185b;
  font-size: 3.5rem;   /* Bigger size */
  font-weight: 800;  /* Extra bold */
  margin-bottom: 20px;
}

.gl-gallery-subheading {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #222;
}

/* Grid Layout */
.gl-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Gallery Item */
.gl-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.gl-gallery-item.wide {
  grid-column: span 2;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;  /* keep caption inside */
  position: relative; /* needed for caption positioning */
}

.gl-gallery-item.wide img {
  width: 80%;
  max-width: 900px;
  border-radius: 0;
}

.gl-gallery-item.wide .gl-caption {
  position: absolute;
  bottom: 10px;         /* place caption inside image */
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 16px;
  padding: 6px 12px;
  border-radius: 5px;
  text-align: center;
}


.gl-gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gl-gallery-item:hover img {
  transform: scale(1.05);
}

.gl-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 14px;
  padding: 10px;
  text-align: left;
  opacity: 0.9;
}

.blessing-video {
  opacity: 0;
  transform: translateX(-100px);   /* move from left */
  transition: all 5s ease-in-out;  /* smooth effect */
  will-change: transform, opacity; /* performance boost */
}

.blessing-video.visible {
  opacity: 1;
  transform: translateX(0);        /* reset to normal */
}
