@charset "utf-8";

body {
  font-family: "Open Sans", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
}

h1, h2, h3 {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}


/* Logo hover swap */
.logo-link {
  display: inline-block;
  position: relative;
  width: 120px; 
  height: auto;
}

.logo-link img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.3s ease;
}

.hover-logo {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.logo-link:hover .hover-logo {
  opacity: 1;
}

.logo-link:hover .default-logo {
  opacity: 0;
}

/* ===== Navbar ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: white;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  padding: 1rem;
  text-decoration: none;
  font-weight: 700;
  color: black;
  border-bottom: 1px solid transparent;
  transition: color 0.3s, border-bottom 0.3s;
}

.nav-links li a:hover {
  color: #4a7ca8;

}

/* Main page */


.bg-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center; /* Ensure image is centered */
  z-index: 0;
}


/* Mission Section */
.mission-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.mission-section .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.7;
}

.mission-overlay {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  color: #333;
}

.mission-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 30px;
	margin-top: 5px;
  color: #333;
  text-transform: uppercase;
  position: relative;
}

.mission-box {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 50px;
	padding-top: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 0 auto;
}

.mission-quote {
  margin-bottom: 40px;
}

.main-quote {
  font-size: 38px;
  font-weight: 700;
  font-style: italic;
  color: #4D7798;
  margin-bottom: 15px;
}

.quote-line {
  width: 500px;
  height: 2px;
  background-color: #4D7798;
  margin: 0 auto 15px;
}


.mission-text {
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
}

.mission-text p {
  margin-bottom: 20px;
}



/* Vision Section Styles */
.vision-section {
  padding: 60px 0;
  font-family: 'Arial', sans-serif;
  color: #333;
}

.vision-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.vision-left {
  flex: 1;
  padding-right: 40px;
}

.vision-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.section-title {
  margin-bottom: 30px;
  text-transform: uppercase;
	  font-size: 48px;
  font-weight: 700;
	margin-top: 5px;
  color: #333;
}

.vision-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 50px;
}

.vision-spacer {
  height: 120px; 
}

.dna-text {
  margin-top: 40px;
}

.dna-description {
  font-size: 18px;
  line-height: 1.6;
}

.values-section {
  margin-top: 40px;
}

.values-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.values-list li {
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

/* Our Pastors Section */
.pastors-section {
  padding: 30px 40px;
  background-color: #fff;
  text-align: center;
}

.pastors-title {
  font-size: 48px;
  font-weight: 700;
  color: #000;
  margin-bottom: 40px;
}

.pastors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.pastor-card {
  text-align: center;
}

.pastor-card img {
  width: 100%;
  height: auto;
  max-width: 240px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-bottom: 12px;
}

.pastor-name {
  font-weight: 600;
  font-size: 16px;
  margin: 4px 0;
}

.pastor-role {
  font-size: 14px;
  color: #555;
  text-transform: uppercase;
}




/* contact section */
.contact-section .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.7; 
}

.contact-section h2 {
  text-align: center;
  font-size: 48px; 
  font-weight: bold;
  margin-bottom: 30px;
}

.contact-image {
  flex: 1;
  max-width: 500px;
  min-width: 300px; 
}

.contact-title{
	  font-size: 48px;
  font-weight: 700;
  margin-bottom: 30px;
	margin-top: 5px;
  color: #333;
  text-transform: uppercase;
  position: relative;
}


.contact-image img {
  max-width: 500px;
  width: 100%;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"] {
  width: 100%;
  box-sizing: border-box; 
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  max-width: 400px;
}
.contact-form {
  flex: 0 0 300px;  
  max-width: 300px;
  background-color: rgba(255,255,255,0.95);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Contact Section - Revised */
.contact-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.contact-overlay {
  position: relative;
  z-index: 1;

  border-radius: 8px;
  margin: 0 auto;
  width: 90%;
  max-width: 1200px; 
}

.contact-flex {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
}

.contact-image {
  flex: 1;
  min-width: 0; 
}

.contact-image img {
  width: 100%;
  height: auto;
  max-width: 600px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-form label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

.contact-form input {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 4px;
  border: 1px solid #ccc;
}
.button-container {
  text-align: right;
}

.contact-form button {
  padding: 10px 20px;
  background-color: #4D7798;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

.contact-form button:hover {
    background-color: white;
  color: #4D7798;
}


/* Articles Section */
.articles-background {
  position: fixed; 
  top: 0;
  left: 0;
  width: 100vw; 
  height: 100vh; 
  z-index: -1; /* Behind all content */
  overflow: hidden;
}

.articles-background img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  object-position: center; 
  opacity: 0.8; 
}

/* Articles Section - Make transparent */
.articles-section {
  background: transparent; 
  padding: 80px 40px;
  max-width: 1200px;
  margin: 40px auto;
}

/* Article Cards  */
.article-card {
  background: rgba(255, 255, 255, 0.95); 
}
/* Articles Section  */
.articles-section {
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.articles-title {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #333;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.article-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.article-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5; /* Fallback background */
}

.article-image img {
  width: 100%;
  height: auto;
  max-height: 400px; 
  object-fit: contain; 
}

.article-content {
  padding: 20px;
  flex-shrink: 0;
}

.article-content h2 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #4D7798;
  text-align: center;
  line-height: 1.3;
}

.article-date {
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
  text-align: center;
}

.article-excerpt {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  text-align: center;
}
/* Articles */
  .articles-background img {
    object-position: 60% center; /* Adjust focus point on mobile */
  }
  



	/* Article Cards with Hover Effects */
.article-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

/* Image hover effect */
.article-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s ease;
}

.article-image img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  transition: transform 0.5s ease;
}

/* Content hover effect */
.article-content {
  padding: 20px;
  transition: all 0.3s ease;
}

.article-content h2 {
  color: #4D7798;
  transition: color 0.3s ease;
}

/* Hover States */
.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.article-card:hover .article-image img {
  transform: scale(1.05);
}

.article-card:hover .article-content {
  background-color: rgba(255, 255, 255, 0.98);
}

.article-card:hover .article-content h2 {
  color: #3a5f7a;
	
}.article-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(77, 119, 152, 0.05);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.article-card:hover::before {
  opacity: 1;
}


/* Prayer */	
	 .prayer-content {
    flex-direction: column;
    gap: 30px;
  }
.prayer-section {
  padding: 60px 40px;
  background-color: white ;
}

.prayer-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.prayer-left {
  flex: 1;
  text-align: center;
}

.prayer-title {
  font-size: 48px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.prayer-button-container {
  text-align: center;
}

.prayer-button {
  display: inline-block;
  background-color: #4D7798;
  color: white;
  padding: 16px 40px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  border: 2px solid #4D7798;
}

.prayer-button:hover {
  background-color: white;
  color: #4D7798;
}

.prayer-right {
  flex: 2;
}

.prayer-description {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 10px;
}

.prayer-divider {
  width: 80px;
  height: 3px;
  background-color: #4D7798;
  margin-top: 15px;
  margin-bottom: 20px;
}
/* Sunday Service Section */

.community-title{
	align-content: center;
	font-size: 48px;
	text-align: center;
}

.sunday-service-section {
  padding: 60px 40px;

}

.sunday-service-container {
  max-width: 1200px;
  margin: 0 auto;
}

.sunday-service-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

/* Image on LEFT */
.sunday-service-image {
  flex: 1;
  max-width: 500px;
}

.sunday-service-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Content on RIGHT */
.sunday-service-content {
  flex: 1;
  max-width: 600px;
}

.service-times {
  margin: 30px 0;
}

.time-block {
  margin-bottom: 25px;
}

.time-block h3 {
  font-size: 18px;
  color: #4D7798;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.time-block p {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  margin: 0;
}



/* Care Groups Section */
/* Care Groups Section - Fixed Version */
.care-groups-section {
  padding: 60px 40px;
}

.care-groups-container {
  max-width: 1200px;
  margin: 0 auto;
}

.care-groups-wrapper {
  display: flex;
  flex-direction: row; /* Explicitly set row direction */
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

/* Content on LEFT */
.care-groups-content {
  flex: 1;
  max-width: 600px;
  order: 1 !important; 
	text-align: right;
}

/* Image on RIGHT */
.care-groups-image {
  flex: 1;
  max-width: 500px;
  order: 2 !important;; 
  text-align: right; 
}

.care-groups-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}



.learn-more-btn {
  display: inline-block;
  background-color: #4D7798;
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  border: 2px solid #4D7798;
  text-align: center;
  cursor: pointer;
	  width: auto !important; 
  height: auto !important;
}

.learn-more-btn:hover {
  background: #FFFFFF;
  border: 1px solid #4D7798;
  color: #4D7798;
}

.care-groups-text{
	  font-size: 18px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 30px;
	text-align: right;
}

/* Dream Team Section */
.dream-team-section {
  padding: 60px 40px;
  background-color: white; 
}

.dream-team-container {
  max-width: 1200px;
  margin: 0 auto;
}

.dream-team-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

/* Image on LEFT */
.dream-team-image {
  flex: 1;
  max-width: 500px;
  order: -1; /* Forces image to left side */
}

.dream-team-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Content on RIGHT */
.dream-team-content {
  flex: 1;
  max-width: 600px;
}

.dream-team-text {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 30px;
}

.section-title {
  position: relative; 
  padding-left: 0; 
}

/* MAGAZINES*/
	.magazine-section {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.magazine-title {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #333;
}

.magazine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
  justify-items: center;
}

/* Magazine Card */
.magazine-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 300px; 
}

.magazine-image {
  position: relative;
  width: 100%;
  height: 400px; 
  overflow: hidden;
  background: #f5f5f5;
}

.magazine-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  transition: transform 0.5s ease;
}

.magazine-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #4D7798;
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
}

.magazine-content {
  padding: 20px;
  text-align: center;
}

.magazine-content h2 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #4D7798;
  line-height: 1.3;
}

.magazine-date {
  font-size: 14px;
  color: #777;
  margin-bottom: 15px;
}

.magazine-button {
  display: inline-block;
  background-color: #4D7798;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.magazine-button:hover {
  background: #FFFFFF;
  border: 1px solid #4D7798;
  color: #4D7798;
}

/* Hover Effects */
.magazine-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.magazine-card:hover .magazine-image img {
  transform: scale(1.03);
}
	

/* Footer */
.site-footer {
  border-top: 2px solid black;
  padding: 20px 40px;
  font-family: Arial, sans-serif;
  background-color: #fff;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-left {
  max-width: 500px;
}

.logo {
  width: 18%;
  margin-bottom: 10px;

}

.footer-left p {
  margin: 5px 0;
  font-size: 13px;
}

.footer-nav {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.footer-nav a:hover {
  color: #4a7ca8;
}


.footer-nav a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  font-size: 14px;
}

.footer-icons a img {
  width: 50px;
  margin-left: 10px;
  vertical-align: middle;
}

.footer-icons {
  display: flex;
  justify-content: flex-end;
}


.menu-toggle {
  display: none; /* Hidden by default */
  font-size: 28px;
  cursor: pointer;
  z-index: 1000;
  padding: 10px;
}


/* Responsive Adjustments */
@media (max-width: 768px) {




	  /* Pastors Section Mobile */
  .pastors-section {
    padding: 40px 20px;
  }
  
  .pastors-title {
    font-size: 32px;
  }
  
  .pastors-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .pastor-card img {
    max-width: 200px;
  }
	.prayer-container {
    flex-direction: column;
    text-align: center;
  }
  .prayer-divider {
    margin-left: auto;
    margin-right: auto;
	}
	
  .articles-section {
    padding: 40px 20px;
  }
  
  .articles-title {
    font-size: 36px;
  }
  
  .articles-grid {
    grid-template-columns: 1fr;
  }
  
  .article-image img {
    max-height: 300px;
  }



  .articles-title {
    font-size: 28px;
  }
  
  .article-content h2 {
    font-size: 20px;
  }
  
  .article-image img {
    max-height: 250px;
  }

/* Prayer Request Section */

.prayer-section {
  padding: 60px 40px;

}

.prayer-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.prayer-left {
  flex: 1;
  text-align: center;
}

.prayer-title {
  font-size: 48px;
  font-weight: 700;
  color: #333;
}

.prayer-right {
  flex: 2;
}

.prayer-description {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 10px;
}

.prayer-divider {
  width: 80px;
  height: 3px;
  background-color: #4D7798;
  margin-top: 15px;
  margin-bottom: 20px;
}

.prayer-button-container {
  margin-top: 10px;
}

.prayer-button {
  display: inline-block;
  background-color: #4D7798;
  color: white;
  padding: 16px 40px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  border: 2px solid #4D7798;
}

.prayer-button:hover {
  background-color: white;
  color: #4D7798;
}



/* ===== Misc ===== */
.main {
  display: flex; /* Fixed typo */
  flex-direction: row;
}

.main img {
  width: 90%;
  height: auto;
}

button {
  background-color: #4D7798;
  color: #FFFFFF;
  padding: 1rem 2rem;
  border: 1px solid transparent;
  border-radius: 4px;
  width: 150px;
  height: 50px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
  text-decoration: none;
}

button:hover {
  background: #FFFFFF;
  border: 1px solid #4D7798;
  color: #4D7798;
}

	
/* Mission Section */
	
.mission-title {
    font-size: 36px;
  }
  
  .mission-box {
    padding: 40px 20px;
  }
  
  .main-quote,
  .sub-quote {
    font-size: 22px;
  }
  
  .mission-text {
    font-size: 16px;
  }

	/* Vision Section */
.vision-container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
    align-items: center; 
  }

  .vision-left {
    padding-top: 0;
    width: 100%; 
    max-width: 600px; 
    margin: 0 auto; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
  }

  .vision-image {

    text-align: center;
    width: 120%;
  }

  .vision-image img {
    max-height: 140px;
    margin: 0 auto; 
  }

  .vision-right {
    gap: 40px;
    width: 100%; 
    max-width: 600px; 
    margin: 0 auto; 
  }

  .section-title {
    font-size: 24px;
    text-align: center;
    width: 100%; 
  }

  .values-list {
    padding: 0;
    margin: 0 auto; 
    display: inline-block; 
    text-align: left; 
  }

  .values-list li {
    font-size: 18px;
    text-align: center; 
  }
	
	/* Sunday Service Section */

.community-title{
	align-content: center;
	font-size: 48px;
	text-align: center;
}

.sunday-service-section {
  padding: 60px 40px;

}

.sunday-service-container {
  max-width: 1200px;
  margin: 0 auto;
}

.sunday-service-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

/* Image on LEFT */
.sunday-service-image {
  flex: 1;
  max-width: 500px;
}

.sunday-service-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Content on RIGHT */
.sunday-service-content {
  flex: 1;
  max-width: 600px;
}

.service-times {
  margin: 30px 0;
}

.time-block {
  margin-bottom: 25px;
}

.time-block h3 {
  font-size: 18px;
  color: #4D7798;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.time-block p {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  margin: 0;
}



/* Care Groups Section */
.care-groups-content {
    order: 2 !important;
  }
  .care-groups-image {
    order: 1 !important;
  }
.care-groups-section {
  padding: 60px 40px;

}

.care-groups-container {
  max-width: 1200px;
  margin: 0 auto;
}

.care-groups-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.care-groups-content {
  flex: 1;
  max-width: 600px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
  position: relative;
	    padding-left: 0;
    padding-right: 0;
}

  .section-title::after {
    display: none; 
  }


  .sunday-service-image,
  .sunday-service-content {
    width: 100%;
    max-width: 100%;
  }

  .sunday-service-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }

  .sunday-service-content {
    text-align: center;
    padding: 0 10px;
  }

  .learn-more-btn {
    width: 80%;
    max-width: 300px;
    margin: 20px auto 0 auto;
    display: block;
  }

.care-groups-text {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 30px;
}

.care-groups-image {
  flex: 1;
  max-width: 500px;
}

.care-groups-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.learn-more-btn {
  background-color: #4D7798;
  color: #FFFFFF;
  padding: 1rem 2rem;
  border: 1px solid transparent;
  border-radius: 4px;
  width: 150px;
  height: 50px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
  text-decoration: none;
}

.learn-more-btn:hover {
  background: #FFFFFF;
  border: 1px solid #4D7798;
  color: #4D7798;
}



  /* Images full width */
  .care-groups-image,
  .dream-team-image {
    max-width: 100%;
    width: 100%;
  }

  .care-groups-image img,
  .dream-team-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }

 
  .care-groups-content,
  .dream-team-content {
    max-width: 100%;
    width: 100%;
    text-align: center;
  }

  /* Learn More button  */
  .learn-more-btn {
    width: 80%;
    max-width: 300px;
    margin: 20px auto 0 auto;
    display: block;
  }

/* Dream Team Section */
.dream-team-section {
  padding: 60px 40px;
  background-color: white; 
}

.dream-team-container {
  max-width: 1200px;
  margin: 0 auto;
}

.dream-team-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

/* Image on LEFT */
.dream-team-image {
  flex: 1;
  max-width: 500px;
  order: -1; 
}

.dream-team-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Content on RIGHT */
.dream-team-content {
  flex: 1;
  max-width: 600px;
}

.dream-team-text {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 30px;
}

/* Reuse existing .section-title and .learn-more-btn styles */

.dream-team-content .section-title::after {
  left: -40px;
  right: auto;
}
.sunday-service-wrapper,
.care-groups-wrapper,
.dream-team-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

	
	

/* Footer */
.site-footer {
  border-top: 2px solid black;
  padding: 20px 40px;
  font-family: Arial, sans-serif;
  background-color: #fff;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-left {
  max-width: 500px;
}

.logo {
  width: 18%;
  margin-bottom: 10px;

}

.footer-left p {
  margin: 5px 0;
  font-size: 13px;
}

.footer-nav {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.footer-nav a:hover {
  color: #4a7ca8;
}


.footer-nav a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  font-size: 14px;
}

.footer-icons a img {
  width: 50px;
  margin-left: 10px;
  vertical-align: middle;
}

.footer-icons {
  display: flex;
  justify-content: flex-end;
}


.menu-toggle {
  display: none; 
  font-size: 28px;
  cursor: pointer;
  z-index: 1000;
  padding: 10px;
}


	.quote-line{
	max-width: 220px;
	}
 

  
	
	.menu-toggle {
    display: block; /* Show hamburger */
  }

  .nav-links {
    display: none;
    position: fixed; 
    top: 80px;
    right: 0;
    width: 100%;
    background-color: white;
    border-bottom: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 999;
    padding: 0;
    margin: 0;
  }

  .nav-links.show {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links li a {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    display: block;
    width: 100%;
  }
	
  
  
  .prayer-action {
    order: -1;
  }
  
  .prayer-title {
    font-size: 28px;
  }
  
  .prayer-text {
    padding: 20px;
  }
  
  .prayer-button {
    padding: 12px 24px;
    font-size: 16px;
  }
.prayer-left {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.prayer-button-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.prayer-button {
  margin-top: 15px;
}
	
/* Sunday servicer */
	.community-wrapper {
    flex-direction: column;
    align-items: center;
  }
  
  .community-image, .community-info {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .learn-more-btn-container {
    text-align: center;
  }
	
	  .sunday-service-wrapper,
  .care-groups-wrapper,
  .dream-team-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .sunday-service-image,
  .sunday-service-content,
  .care-groups-image,
  .care-groups-content,
  .dream-team-image,
  .dream-team-content {
    max-width: 100%;
    width: 100%;
    text-align: center;
  }

  .learn-more-btn {
    width: 80%;
    max-width: 300px;
    margin: 20px auto 0 auto;
    display: block;
  }
/* Contact */
	  .contact-image {
    display: none;
  }
  .contact-flex {
    justify-content: center;
  }
	
/* Magazine */
	
	 .magazine-section {
    padding: 40px 20px;
  }
  
  .magazine-title {
    font-size: 36px;
  }
  
  .magazine-grid {
    grid-template-columns: 1;
  }
  
  .magazine-image {
    height: 350px;

  }

	
/* Footer */
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-nav {
    justify-content: flex-start;
  }

  .footer-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
  }

  .footer-left, .footer-right {
    width: 100%;
  }
}



