/* =======================
   GLOBAL STYLES
========================== */
body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  color: #333;
  background: #fefefe;
}
a {
  text-decoration: none;
  color: inherit;
}
.section-subtitle {
  font-size: 1.1em;
  color: #555;
  margin-top: 10px;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =======================
   NAVIGATION BAR
========================== */
header {
  background: linear-gradient(to right, #fff7d6, #fddcab); /* warm & bright gradient */
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: baseline;
  font-family: 'Great Vibes', cursive;
  font-size: 1.8rem;
  flex-shrink: 0;
}
.logo-main {
  color: goldenrod;
  font-weight: bold;
  font-size: 1.6rem;
  margin-right: 5px;
}
.logo-sub {
  color: darkgreen;
  font-weight: 400;
  font-style: italic;
  font-size: 1.3rem;
}

/* Desktop nav links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
}
.nav-links li a {
  font-weight: 500;
  padding: 8px 10px;
  transition: color 0.3s ease;
  color: #333;
}
.nav-links a:hover {
  color: #0078D7;
}

.shop-cta {
  background-color: #ff9800;
  color: white !important;
  padding: 8px 16px;
  border-radius: 5px;
  font-weight: bold;
}
.shop-cta:hover {
  background-color: #e08800;
}

/* Hamburger icon (hidden on desktop) */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}
/* Highlight active link */
.nav-links a.active {
  color: #e69500; /* soft gold to match branding */
  font-weight: 600;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 6px 12px;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

/* =======================
   RESPONSIVE NAVIGATION
========================== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff9e3;
    padding: 15px 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    text-align: center;
    padding: 10px 0;
  }
}

/* ============================ */
/*      SECTION TITLE STYLES   */
/* ============================ */
.section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #222;
  position: relative;
  display: inline-block;
  text-align: center;
}

.section-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background-color: goldenrod;
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

/* =======================
   HERO SECTION VIDEO BG
========================== */
#hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.scroll-down {
  margin-top: 20px;
  font-size: 2rem;
  animation: bounce 2s infinite;
  color: #fff;
}

/* Scroll cue bounce animation */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* dark overlay for contrast */
}

.hero-overlay h1 {
  font-size: 3rem;
  font-family: 'Great Vibes', cursive;
  color: gold;
  margin-bottom: 10px;
}

.tagline-main {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.tagline-sub {
  font-size: 1.1rem;
  font-style: italic;
  color: #ddd;
  margin-bottom: 20px;
}

/* Reusing CTA styles */
.hero-btn {
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
  background-color: #0078D7;
  color: white;
}
.hero-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}
.hero-overlay h1,
.hero-overlay .tagline-main,
.hero-overlay .tagline-sub {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}


/* =======================
   RESPONSIVE VIDEO HERO
========================== */
@media (max-width: 768px) {
  .hero-overlay h1 {
    font-size: 2rem;
  }

  .tagline-main {
    font-size: 1.2rem;
  }

  .tagline-sub {
    font-size: 1rem;
  }
}

/* ======================= 
   About Section 
========================== */
.about-section {
  padding: 60px 20px;
  background: #ffffff;
  text-align: center;
  margin-bottom: 40px;
}

.about-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #c08401; /* golden accent or similar brand color */
  font-weight: bold;
  position: relative;
  display: inline-block;
}

.about-section h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background-color: goldenrod;
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

.about-section p,
.about-section ul {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #444;
}

.about-section ul {
  list-style-type: disc;
  margin-left: 20px;
}

/* Fix for bullet list alignment in about section */
.about-section ul {
  text-align: left;
  padding-left: 40px;
  margin-top: 20px;
}

.about-section li {
  text-align: left;
  line-height: 1.8;
  margin-bottom: 10px;
}

.centered-list {
  display: flex;
  justify-content: center;
  text-align: left;
}

.centered-list ul {
  list-style-position: outside;
  padding-left: 1.5rem;
  max-width: 800px;
  width: 100%;
}

.about-section .centered-list ul {
  padding-left: 1.5rem !important;
  margin-left: auto;
  margin-right: auto;
}

/* =======================
   MEDIA SECTION
========================== */
.media-section {
  background: #f7f7f7;
  padding: 80px 20px;
  text-align: center;
}

.media-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.media-section h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background-color: goldenrod;
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

.video-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.video-card iframe {
  width: 100%;
  max-width: 360px;
  height: 215px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* CTA Button */
.media-btn {
  display: inline-block;
  background-color: #0078D7;
  color: white;
  padding: 12px 24px;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.media-btn:hover {
  background-color: #005fa3;
}

/* Responsive */
@media (max-width: 768px) {
  .video-card iframe {
    max-width: 100%;
    height: 200px;
  }
}
/* ============================ */
/*    SHOP / PRODUCT LISTING    */
/* ============================ */

#shop {
  background: #fff8ec;
  padding: 80px 20px 10px;
  text-align: center;
}

.shop-subheadline {
  font-size: 1.2em;
  color: #444;
  margin-bottom: 40px;
}

.section-line {
  width: 50px;
  height: 4px;
  background-color: #f4c04e;
  margin: 10px auto 30px auto;
  border-radius: 2px;
}

.item-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Use product-card everywhere */
.product-card {
  position: relative; /* for badge */
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  width: 300px;
  padding: 20px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  margin: 0 auto;
  text-align: center;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #0099ff;
  color: white;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 20px;
  font-weight: bold;
  text-transform: uppercase;
  z-index: 2;
  display: block; /* always visible */
}

.product-image {
  height: 200px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  margin-bottom: 20px;
}

.product-title {
  font-size: 1.3em;
  font-weight: bold;
  color: #333;
  margin: 10px 0 5px 0;
}

.product-subtitle {
  font-size: 1em;
  color: #666;
  margin-bottom: 10px;
}

.product-price {
  font-size: 1.1em;
  font-weight: bold;
  color: #e69500; /* gold accent */
  margin-bottom: 15px;
}

.product-price small {
  font-size: 0.85em;
  color: #666;
  margin-right: 4px;
}

.button-group {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 10px 24px;
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.btn-primary {
  background-color: #007bff;
}

.btn-primary:hover {
  background-color: #0056b3;
}

.btn-secondary {
  background-color: #f0ad4e;
}

.btn-secondary:hover {
  background-color: #d98900;
}

/* Placeholder / disabled style */
.product-card.placeholder .btn-primary,
.product-card.placeholder .btn-secondary,
.product-button.disabled {
  background-color: #ccc;
  cursor: not-allowed;
  pointer-events: none;
}

.shop-items {
  padding-top: 40px;     /* adds space at the top */
  padding-bottom: 40px;  /* keeps spacing below products */
  margin-bottom: 20px;   /* keeps spacing before next section */
}

.format-selector {
  margin: 20px 0;
  text-align: left;
}

.format-selector label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
}

.format-selector select {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  min-width: 250px;
}

/* ========================= */
/*      NEWSLETTER FORM      */
/* ========================= */
#newsletter {
  background-color: #eaf4ff;
  text-align: center;
  padding: 60px 20px;
}

.newsletter-form {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
  padding: 10px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
  min-width: 250px;
}

.newsletter-form button {
  padding: 10px 20px;
  font-size: 1em;
  background-color: #1a73e8;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.newsletter-form button:hover {
  background-color: #0c5ad7;
}

/* =======================
   FOOTER
========================== */
footer {
  background: #222;
  color: #ccc;
  padding: 40px 20px;
  font-size: 0.9em;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Left side */
.footer-left {
  flex: 1 1 auto;
  text-align: left;
}

/* Right side */
.footer-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 0 1 auto;
}

/* Navigation links */
.footer-nav a {
  color: #ddd;
  margin-right: 16px;
  text-decoration: none;
}

.footer-nav a:hover {
  color: #fff;
}

/* Social icons */
.social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-link {
  color: #ccc;
  font-size: 1.25em;
  text-decoration: none;
}

.social-link:hover {
  color: #fff;
}


/* =======================
   Purpose Overview Page
========================== */
.section-intro {
  background-color: #fdf6e3;
  padding: 60px 20px;
  text-align: center;
}

.projects-grid .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 40px 20px;
}

.project-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  padding: 30px;
  max-width: 300px;
  text-align: center;
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-icon {
   width: 100%;
  max-width: 250px;  /* Adjust this as needed */
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
}

.project-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #333;
}

.project-card p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

.project-btn {
  background-color: #0078D7;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}
.project-btn:hover {
  background-color: #005fa3;
}

/* CTA Section */
.cta-section {
  background-color: #f7f7f7;
  text-align: center;
  padding: 60px 20px;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.cta-btn {
  background-color: #e0912b;
  color: white;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}
.cta-btn:hover {
  background-color: #cc7a14;
}

/* =======================
   Ministry Page
========================== */
.ministry-cards-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.card p {
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
}

.btn-primary {
  background-color: #007bff;
  color: #fff;
  padding: 10px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: #0056b3;
}

/* =======================
   Speaking Page
========================== */
.speaking-options-section {
  background-color: #f7f7f7;
  padding: 80px 20px;
  text-align: center;
}

.blog-post-hero {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  background-color: #fddcab;
}

.featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

/* =======================
   Blog
========================== */
.blog-hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
}

.blog-content {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  line-height: 1.8;
  color: #333;
}

.blog-content blockquote {
  font-style: italic;
  border-left: 4px solid goldenrod;
  padding-left: 16px;
  color: #555;
  margin: 20px 0;
}

.share-buttons {
  margin-top: 40px;
  font-size: 1.2rem;
}

.share-buttons span {
  margin-right: 10px;
  font-weight: bold;
}

.share-icon {
  margin-right: 10px;
  color: #0078D7;
  text-decoration: none;
}

.share-icon:hover {
  color: #005fa3;
}

.comments-section {
  margin-top: 60px;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 6px;
}

.blog-meta {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 20px;
}

.blog-meta {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 20px;
}

.meta-separator {
  display: inline-block;
  margin: 0 12px;
  color: #aaa;
}
.blog-section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #FFD966; /* 👈 This is the line to change */
  position: relative;
  display: inline-block;
  text-align: center;
}

