/*Home Section*/
.welcome-section {
    padding: 60px 20px;
    background-color: #fff;
    margin-top: 70px;
    margin-bottom: 70px;

}

.explore-section {
    padding: 60px 20px;
    background-color: #7A0000;
}

.livestream-section {
    padding: 40px 10px;
    background-color: #fff;
   
}

.section-title {
  text-transform: uppercase;
}


.donation-section {
    padding: 60px 20px;
    background-color: #7A0000;
/*  background-image: url('../Images/donation_background.png');
    background-size: cover; /* or 'contain' if needed 
    background-repeat: no-repeat;
    background-position: center; */
    margin-top: 50px;
    margin-bottom: 70px;
}

.events-section {
    padding: 40px 10px;
    background-color: #fff;
    display: flex;
    align-items:center;
    justify-content: center;
}

.services-section {
    padding: 40px 10px;
    background-color: #fff;
    display: flex;
    align-items:center;
    justify-content: center;
}


/*Home Wrapper*/
.welcome-wrapper, .explore-wrapper, .donation-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
}
.events-wrapper .swiper-slide,
.services-wrapper .swiper-slide {
    overflow: visible;
}

.livestream-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
}

.events-wrapper {
    max-width: 1300px;
    padding: 20px;
    margin: 0 60px 35px;
    overflow: hidden;
}


.services-wrapper {
    max-width: 1300px;
    padding: 20px 10px;
    margin: 0 60px 35px;
    overflow: hidden;
}

/* Add this to style-body.css */

.events-header,
.services-header {
  position: relative;
  z-index: 10;  /* Puts the header in a high layer (Layer 10) */
}

.events-wrapper,
.services-wrapper {
  position: relative;
  z-index: 5;   /* Puts the ENTIRE slider in a lower layer (Layer 5) */
}
.video-container {
    flex: 1 1 480px;
    height: 315px; 
    max-width: 560px;
    position: relative;
}

.livestream-container {
    flex: 1 1 480px;
    height: 350px; 
    max-width: 570px;
    position: relative;
}

.image-container {
    flex: 1 1 480px;
    height: 200px; 
    max-width: 560px;
    position: relative;
    background-color: #333;
}

.image-container, .image-slideshow {
    position: relative;
      top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-container iframe,
.livestream-container iframe  {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.welcome-data, .explore-data, .donation-data {
    flex: 1 1 400px;
    max-width: 540px;
}

.livestream-data {
    flex: 1 1 400px;
    max-width: 590px;
}

.welcome-data h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 16px;
    font-family: 'Georgia', serif;
    color: #333;
    text-align:center
}

.livestream-data h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    font-family: 'Georgia', serif;
    color: #333;
    text-align:center
}

.explore-data h2, .donation-data h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 16px;
    font-family: 'Georgia', serif;
    color: #fff;
    text-align:center
}

.events-header,
.services-header,
.videos-header,
.gallery-header{
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 16px;
    font-family: 'Georgia', serif;
    text-align:center
}

.events-header h2 span {
  color: #F4B400;
}

.services-header h2 span {
  color: #7A0000;
}

.videos-header h2 span,
.gallery-header h2 span {
  color: #F4B400;
}

.welcome-data  h2 span,
.livestream-data  h2 span  {
    color: #7A0000; /* matches header accent red */
}


.explore-data h2 span,.donation-data h2 span {
    color: #ebc238; /* matches header accent red */
}

.welcome-data p,
.livestream-data p{
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #444;
    text-align:justify;
}

.explore-data p,
.donation-data p{
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #fff;
    text-align:justify;
}


.welcome-data .btn,
.explore-data .btn,
.livestream-data .btn,
.donation-data .btn {
    padding: 10px 20px;
    background-color: grey;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    justify-content: center;
    transition: all 0.3s ease;
    border: none; /* Removes the border */

}

.welcome-data .btn:hover,
.livestream-data .btn:hover  {
    background-color: #7A0000;
    font-weight: 400;
    color: #fff;
    transform: translateY(-3px);
}

.explore-data .btn:hover,
.donation-data .btn:hover  {
    background-color: #ebc238;
    font-weight: 400;
    color: #fff;
    transform: translateY(-3px);
}

.btn-container {
  display: flex;
  justify-content: center;
  margin-top: 20px; /* optional spacing */
}


.icon {
 display: flex;
 align-items: center;
 justify-content: center;
 margin-bottom: 10px;
}

.icon img {
  height: 250px; /* adjust as needed */
  margin-right: 10px;
}




