body {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Playfair Display", serif;
      
    }


.hero-image-wrapper {
  position: relative;
  background-image: url('../sermons.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: 150px;
  color: white;
  z-index: 1;
}


.hero-image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.hero-image-wrapper * {
  position: relative;
  z-index: 2;
}


header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  color: white;
  padding: 10px 75px;
  height: 80px;
  font-family: "Playfair Display", serif;
}


.banner {
  font-size: 30px;
  background-color: rgba(28, 28, 28, 0.85); 
  color: white;
  padding: 30px 40px;
  margin-top: 40px;
  text-align: center;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
  width: 300px;
}

.logo-circle {

  width: 140px;
  height: 140px;
  margin: 0 auto; 
  border-radius: 50%;
  overflow: hidden; 
  border: 3px solid white; 

}

.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.logo-circle span {
  color: #b97f14;
}

/* Navbar Section  */

#menuList {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  padding-right: 20px;
}

#menuList li a {
  position: relative;
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 16px;
  padding: 5px 0;
  display: inline-block;
  transition: color 0.3s ease;
}

#menuList li a span {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0%;
  height: 2px;
  background-color: #C09433;
  transition: width 0.4s ease-in-out;
  
}

#menuList li a:hover span {
  width: 100%;
}

#menuList li a:hover {
  color: #C09433;
}

/* Hero content area */
.custom-section {
  padding-top: 100px;
  color: rgb(68, 66, 66);
}

.text-side h2 {
   font-size: 6em;
   letter-spacing: 0px;
   font-family: "Playfair Display", serif;
    font-weight: 300;
    text-transform: none;
    color: #fff;
    line-height: 0.9em;
    text-align: center;
    padding-bottom: 20px;
}


.text-side p{
  line-height: 1.4em;
  text-align: center;
  color: #fff;
  font-size: 22px;
  padding-top: 20px;
}



.text-side button {
  display: block;
  margin: 20px auto; 
  padding: 15px 40px;
  line-height: 1.4em;
  text-align: center;
  color: #fff;
  background: transparent;
  border: 2px solid #fff;
}


.text-side {
  align-items: center;
} 

/* Leadership Section  */

.full-section {
      background-color: #C09433;
      color: #ffffff; 
      padding: 50px 15px;
    }

    .full-section h2 {
      font-size: 36px;
      margin-bottom: 20px;
    }

    .full-section p {
      font-size: 18px;
      margin-bottom: 30px;
      
    }

    .full-section ul {
      list-style-type: disc;
      
    }

    .full-section ul li {
      font-size: 16px;
      margin-bottom: 10px;
      text-align: left;
      animation: fadeInFast 0.8s ease-in forwards;
      animation-delay: 0.3s;
    }

    .full-section span {
        color: #000;
        font-size: 18px;
        font-weight: bold;
    }


    /* Video Section  */

    .video-section {
      max-width: 1200px;
      margin: auto;
      padding: 40px 20px;
    }

    .video-block {
      display: flex;
      padding-top: 30px;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 40px;
      flex-wrap: wrap;
    }

    .video-block video {
      width: 100%;
      max-width: 500px;
      height: 250px;
      border-radius: 10px;
      object-fit: cover;
      background-color: #000;
      flex: 1;
    }

    .video-text {
      flex: 1;
      padding: 0 10px;
    }

    .video-text h3 {
      margin-bottom: 10px;
    }

    .video-text p {
      font-size: 15px;
      color: #333;
    }

    @media screen and (max-width: 768px) {
      .video-block {
        flex-direction: column;
        align-items: flex-start;
      }

      .video-text {
        padding: 10px 0;
      }

      .video-block video {
        width: 100%;
      }
    }

  /* Footer section  */

footer {

  background: #222222;
  color: rgba(255, 255, 255, 0.6);
  padding: 50px 60px; 
}

.row {
  display: flex;
  flex-wrap: wrap;
  max-width: 1500px;    
  margin: 0 auto;        
}

.col {
  flex: 1 1 200px; 
}

.col h3 {
  color: #ffffff;
  font-weight: 500;
  font-size: 1.5em;
  font-family: "Playfair Display", serif;
  text-transform: none;
  line-height: 1.3;
  margin-bottom: 15px;
}

.col p {
  margin: 6px 0;
  font-size: 20px;
  line-height: 1.5;
}


@media (max-width: 768px) {
  .row {
    flex-direction: column;
    align-items: center;
  }

  .col {
    max-width: 100%;
  }
}

.footer-bottom {
  display: flex;
  padding: 20px 60px;
  color: #fff;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.footer-left p {
  font-size: 0.9em;
  margin: 0;
  padding-left: 40px;
}

.footer-center {
  display: flex;
  gap: 20px; 
  
}

.footer-center a {
  display: inline-block;
  color: #fff;
  background-color: #333;
  border-radius: 50%;
  padding: 10px;
  align-items: center;
  width: 36px;
  height: 36px;
  line-height: 16px;
  font-size: 14px;
  transition: background 0.3s;
}

.footer-center a:hover {
  background-color: #666;
}

.footer-right {
  display: flex;
  gap: 8px;
  align-items: right;
}

.footer-right img {
  max-height: 40px;
  width: auto;
}

.footer-right span {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
}

