/* ===== Custom Ministry Vision Section ===== */
.ministry-vision {
  text-align: center;
  margin: 40px 0;
}

.ministry-vision h3 {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.ministry-vision p {
  font-size: 16px;
  line-height: 1.7;
  max-width: 750px;
  margin: 0 auto 20px;
  color: #555;
}

.ministry-vision blockquote {
  font-style: italic;
  font-size: 16px;
  color: #666;
  border-left: 4px solid #e47257;
  padding-left: 15px;
  margin: 15px auto;
  max-width: 650px;
}

/* ===== Partner Section Styling ===== */
.skills h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #e47257;
}

.skills ul {
  list-style: none;
  padding-left: 0;
}

.skills ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.skills ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #28a745;
  font-size: 14px;
}

/* ===== Swiper Slide Base Styling ===== */
.swiper-slide {
  position: relative;
}

.swiper-slide img {
  display: block;
  z-index: 1;
  position: relative;
}

/* ===== Slide Wrapper Setup ===== */
.slide-wrapper {
  position: relative;
}

/* ===== Slide Overlay (Text Container) ===== */
.slide-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 2rem;
  max-width: 90%;
  background: none;
  backdrop-filter: none;
  border-radius: 12px;
  z-index: 2;
  box-shadow: none;
}

/* ===== Slide Overlay Text Styling ===== */
.slide-overlay,
.slide-overlay h2,
.slide-overlay p,
.slide-overlay a {
  color: #ffffff !important;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
  opacity: 1 !important;
  filter: none !important;
}

/* ===== Slide Overlay Headline ===== */
.slide-overlay h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

/* ===== Slide Overlay Paragraph ===== */
.slide-overlay p {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* ===== Call-to-Action Button Styling ===== */
.cta-button {
  background-color: #e76f51;
  color: white;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #d85a3b;
}

/* ===== Slide Image Dark Filter Layer ===== */
.slide-filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25); /* Adjust opacity as needed */
  z-index: 1;
  pointer-events: none;
}

/* ===== Volunteer Section Styling ===== */
.volunteer {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background-color: #000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  height: 420px; /* ← You can tweak this (e.g. 380px or 400px) */
}
.volunteer img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center; /* Default: center center — try this or tweak as needed */
}

.volunteer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 30px 20px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.9));
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.volunteer-inner {
  max-width: 90%;
  margin: 0 auto;
}

.volunteer-inner span {
  display: block;
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.volunteer-inner strong {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #f66d4e;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.volunteer-inner p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.volunteer-inner .theme-btn {
  display: inline-block;
  background-color: #e76f51;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: capitalize;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.volunteer-inner .theme-btn:hover {
  background-color: #d85a3b;
}


/* ===== 2025 Thanksgiving Outreach Page ===== */
.hero-banner {
  background-size: cover;
  background-position: center;
  padding: 120px 0;
  color: #fff;
  text-align: center;
  margin-bottom: 60px; /* space between hero and next section */
}

.hero-banner .hero-text h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 15px;
}

.hero-banner .hero-text h1,
.hero-banner .hero-text p {
  color: #ffffff; /* Make both h1 and paragraph text white */
  text-shadow: 2px 2px 5px rgba(0,0,0,0.6); /* Optional: adds readability */
  font-size: 20px;
  margin-bottom: 30px;
}

.overview-section {
  padding: 60px 0;
}

.cta-buttons {
  background: #f2f2f2;
  padding: 40px 0;
}

.cta-buttons h3 {
  margin-bottom: 15px;
  font-size: 28px;
}

.cta-buttons .theme-btn {
  margin: 10px 5px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.quote-section {
  background: #333;
  color: #fff;
  padding: 60px 0;
}

.quote-section blockquote {
  font-size: 24px;
  font-style: italic;
  margin: 0 auto;
  max-width: 700px;
  line-height: 1.6;
}

.quote-section span {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}


/* Style for defined section background */
.defined-section {
  background-color: white; /* light gray background to distinguish */
  padding: 60px 0;
}

/* Existing responsive video styling */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  margin-bottom: 20px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ==== FYI Section Styles ==== */
.fyi-section {
  background: #f9f9f9;
  padding: 60px 20px;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  font-weight: bold;
  color: #333;
}

.fyi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.fyi-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.fyi-card:hover {
  transform: translateY(-5px);
}

.fyi-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #333;
}

.fyi-card p,
.fyi-card ul {
  font-size: 16px;
  color: #555;
}

.fyi-card ul {
  list-style: disc inside;
  margin: 10px 0;
  padding-left: 0;
}

.fyi-note {
  font-style: italic;
  color: #777;
  margin-top: 10px;
}

.fyi-buttons {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fyi-buttons .theme-btn {
  background: #e6634b;
  color: white;
  padding: 10px 16px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
}

.fyi-buttons .theme-btn:hover {
  background: #c9503c;
}

/* ===== Smooth Scrolling ===== */
html {
  scroll-behavior: smooth;
}

/* ===== Event Banner ===== */
.event-banner {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #e76f51, #f4a261); /* warm orange gradient */
  display: flex;
  align-items: center;
  padding: 15px 25px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  border-radius: 8px;
  z-index: 10;
  width: 90%;
  max-width: 900px;
  justify-content: space-between;
  flex-wrap: wrap;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0,0.15);
}

.event-date {
  text-align: center;
  margin-right: 20px;
}

.event-date .day {
  font-size: 32px;
  font-weight: bold;
  display: block;
  color: #d75d32;
}

.event-date .month {
  font-size: 14px;
  color: #555;
}

.event-info h4 {
  margin: 0;
  font-size: 20px;
}

.event-info p {
  margin: 0;
  font-size: 14px;
  color: #fff;
}

.event-cta a.theme-btn {
  margin-top: 10px;
}

@media (max-width: 768px) {
  .event-banner{
    flex-direction: column;
    text-align: center;
  }

  .event-date {
    margin: 0 0 10px 0;
  }

  .event-cta a.theme-btn {
    margin-top: 15px;
  }

.event-date .day {
  font-size: 28px;
  font-weight: bold;
  color: #fff; /* Make it consistent */
}

.event-date .month {
  font-size: 16px;
  color: #ffe0b2;
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
}

.event-date .day {
  font-size: 32px;
  font-weight: bold;
}

.event-date .month {
  font-size: 16px;
}

.event-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px; /* Add spacing between flex items */
  padding: 15px 30px;
}

.event-date {
  text-align: center;
  flex-shrink: 0;
}

.event-date .day {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
  line-height: 1;
}

.event-date .month {
  font-size: 14px;
  color: #ffe0b2;
}

.event-info {
  flex-grow: 1;
  min-width: 200px;
}

.event-info h4 {
  margin: 0;
  font-size: 20px;
  color: #fff;
}

.event-info p {
  margin: 5px 0;
  font-size: 14px;
  color: #fff;
}

.countdown-timer {
  font-size: 20px;
  margin-top: 8px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.countdown-timer span {
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 10px;
  border-radius: 4px;
  color: #fff;
}

/* ===== Refined Event Banner Styling Fix ===== */
.event-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  flex-wrap: nowrap;
  gap: 30px;
}

.event-date {
  flex: 0 0 auto;
  text-align: center;
}

.event-info {
  flex: 1 1 auto;
  text-align: center;
}

.event-info h4,
.event-info p {
  margin: 0;
  padding: 0;
}

.event-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.countdown-timer {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}


/* ===== Responsive Styles for Slider Text ===== */
@media (max-width: 768px) {
  .slide-overlay {
    padding: 1rem;
    max-width: 95%;
  }

  .slide-overlay h2 {
    font-size: 1.6rem; /* Reduced from desktop size */
    margin-bottom: 0.8rem;
  }

  .slide-overlay p {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.4;
  }

  .cta-button {
    font-size: 0.9rem;
    padding: 0.6rem 1.4rem;
  }
}

@media (max-width: 480px) {
  .slide-overlay h2 {
    font-size: 1.3rem;
  }

  .slide-overlay p {
    font-size: 0.95rem;
  }

  .cta-button {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
}

.countdown-timer {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  margin-top: 10px;
  display: flex;
  gap: 8px;
  justify-content: center;
}

.countdown-timer span {
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 10px;
  border-radius: 4px;
}