header{
  width: 100%;
  height: 100dvh;
}

/* HERO SECTION */
.hero{
  height: 100%;
}
.hero-content{
  position: absolute;
  z-index: 10;
  color: white;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
}
.hero-content p.hero-text{
  font-size: 25px;
  word-spacing: 2px;
  font-weight: 400;
  margin-bottom: 15px;
  line-height: 1.5;
  text-align: center;
}
.hero-content h1.hero-title{
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 35px;
}
.hero-content h1.hero-title div{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.hero-content h1.hero-title div span{
  text-transform: uppercase;
}
.hero-content .learn-more-btn{
  justify-self: center;
}

/* MAIN SECTION */

main section{
  padding: 50px 25px;
}


/* SERVICES SUMMARY */
.services-summary{
  background-color: white;
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 250px;
}
.services-heading{
  margin-bottom: 75px;
}
.services-heading{
  text-align: center;
}
.services-heading h2{
  margin: 20px 0 20px 0;
  font-size: 40px;
  text-align: center;
}
.services-heading h2 span{
  color: var(--primary-color-light);
}
.services-heading button svg{
  width: 18px;
  height: 18px;
}
.service-cards{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-items: center;
  gap: 20px;
}
.service-card{
  cursor: default;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 400px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
  transition: 0.2s ease;
  user-select: none;
}

.service-card.card-1{
  background-image: 
  linear-gradient(200deg,
    rgba(0, 255, 0, 0.05),
    rgba(0, 0, 0, 0.85)), 
    url(../../images/cover-picture-02.jpg);
}
.service-card.card-2{
  background-image: 
  linear-gradient(200deg,
    rgba(0, 255, 0, 0.05),
    rgba(0, 0, 0, 0.85)), 
    url(../../images/cover-picture-03.jpg);
}
.service-card.card-3{
  background-image: 
  linear-gradient(200deg,
    rgba(0, 255, 0, 0.05),
    rgba(0, 0, 0, 0.85)), 
    url(../../images/cover-picture-04.jpg);
}
.service-card.card-4{
  background-image: 
  linear-gradient(200deg,
    rgba(0, 255, 0, 0.05),
    rgba(0, 0, 0, 0.85)), 
    url(../../images/cover-picture-05.jpg);
}

.service-card-text{
  color: white;
}
.service-card-text{
  h3,p{
    margin: 10px 0;
    letter-spacing: 0.5px;
  }
}
.service-card-text p{
  display: none;
}
.service-card-text div{
  display: flex;
  align-items: center;
  gap: 5px;
  backdrop-filter: blur(20px);
  border-radius: 50px;
  background-color: #ffffff1f;
  height: 30px;
  max-width: fit-content;
  padding: 1px 12px 1px 8px;
}
.service-card-text div svg{
  width: 15px;
  height: 15px;
}
.service-card-text div span{
  font-size: 12px;
  letter-spacing: 1px;
}
.service-card-text h3{
  font-size: 16px;
  font-weight: 400;
}
.service-card-text p{
  font-size: 12px;
  line-height: 1.4;
  margin-bottom: 10px;
  font-weight: 300;
}
.service-link{
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: rgba(0,0,0,0.1);
  backdrop-filter: blur(20px);
  border-radius: 6px;
  padding: 8px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 20px;
  display: none;
}
.service-link span{
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.75px;
  color: white;
}
.service-link img{
  width: 12px;
  transition: 0.2s ease;
  filter: invert(1);
}






/* LEAD PASTOR */
.pastor-summary{
  background-color: #000;
  /* min-height: 100vh; */
  padding-left: 0;  
  padding-top: 0;
  padding-right: 0; 
  position: relative; 
  background-image: url(../../images/cover-picture-03.jpg);
  background-size: cover;
  background-position: center;
  height: 100vh;
}
.pastor-heading{
  color: white;
  display: none;
}
.pastor-heading h2{
  text-align: center;
  font-size: 30px;
}
.pastor-heading h2 span{
  color: var(--primary-color);
}
.pastor-body{
  max-width: 1200px;
  margin: 0 auto;
  height: 100vh;
  display: grid;
  padding-top: 200px;
  grid-template-columns: 1fr 2fr;
}
.pastor-image-container{
  width: 100%;
}
.pastor-image{
  width: 100%;
}
.pastor-description{
  align-items: end;
}
.pastor-description h3{
  font-size: 25px;
  color: white;
  margin-bottom: 20px;
  text-align: center;
}
.pastor-description p{
  color: gainsboro;
  line-height: 1.8;
  letter-spacing: 0.5px;
  word-spacing: 1px;
  margin-bottom: 25px;
  text-align: center;
}
.pastor-description-btn{
  justify-self: center;
}






/* LATEST SECTION */
.latest-summary{
  /* background-color: rgba(144, 238, 144, 0.081); */
  background-color: white;
  padding: 100px 25px 50px 25px;
}
.latest-heading{
  margin-bottom: 75px;
}
.latest-heading{
  text-align: center;
}
.latest-heading h2{
  margin: 20px 0 20px 0;
  font-size: 40px;
  text-align: center;
}
.latest-heading h2 span{
  color: var(--primary-color-light);
}
.latest-heading button{
  color: var(--primary-color);
  color: #000;
  background-color: rgba(8, 127, 91, 0.05);
}
.latest-heading button svg{
  width: 16px;
  height: 16px;
}






/* BRANCHES SECTION*/
.branches-cards-summary{
  min-height: 100dvh;
  background-color: white;
}
.branches-heading{
  margin-bottom: 50px;
}
.branches-heading h2{
  margin: 20px 0 20px 0;
  font-size: 40px;
  text-align: center;
}
.branches-heading h2 span{
  color: var(--primary-color);
}
.branches-heading button svg{
  width: 18px;
  height: 18px;
}
.branches-cards{
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.branch-card{
  background-size: cover;
  border-radius: 8px;
  position: relative;
  width: 100%;
  height: 400px;
}
.branch-card-button{
  position: absolute;
  bottom: 60px;
  left: 20px;

  display: flex;
  align-items: center;
  gap: 5px;

  backdrop-filter: blur(20px);
  border-radius: 50px;
  background-color: #ffffff1f;
  height: 30px;
  max-width: fit-content;
  padding: 1px 12px 1px 8px;
}
.branch-card-button svg{
  width: 15px;
  height: 15px;
  stroke: #fff;
}
.branch-card-button span{
  font-size: 12px;
  letter-spacing: 1px;
  color: #fff;
}

.branch-card:hover .branch-card-icon{
  opacity: 1;
  transform: translate(0%, 0%);
}

.branch-card-1{
  background-image: 
  linear-gradient(190deg, rgba(0, 0, 0, 0), 
  rgba(0, 0, 0, 0.95)), 
  url(../../images/cover-picture-02.jpg);
}
.branch-card-2{
  background-image: 
  linear-gradient(190deg, rgba(0, 0, 0, 0), 
  rgba(0, 0, 0, 0.95)), 
  url(../../images/cover-picture-07.jpg);
}
.branch-card-3{
  background-image: 
  linear-gradient(190deg, rgba(0, 0, 0, 0), 
  rgba(0, 0, 0, 0.95)), 
  url(../../images/cover-picture-04.jpg);
}
.branch-card h3{
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.75px;
  position: absolute;
  bottom: 25px;
  left: 25px;
}
.branch-card-icon{
  position: absolute;
  top: 20px;
  right: 20px;
  width: 25px;
  height: 25px;
  opacity: 0;
}






.programs-summary{
  background-color: #000;
  /* height: 100vh; */
  display: flex;
  align-items: center;
  margin: 100px 0;
}
.program-cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.program-image-container{
  overflow: hidden;
  width: 100%;
  height: 200px;
  margin-bottom: 15px;
}
.program-image{
  height: 100%;
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
}
.program-card-text div{
  display: flex;
  align-items: center;
  gap: 5px;

  max-width: fit-content;
  background-color: rgba(255, 255, 255, 0.125);
  padding: 6px 8px;
  border-radius: 50px;
  margin-bottom: 8px;
}
.program-card-text div svg{
  stroke: #eee;
  width: 16px;
  height: 16px;
}
.program-card-text div span{
  color: #eee;
  font-size: 14px;
}
.program-card-text h3{
  color: #fff;
  font-weight: 600;
  margin-bottom: 10px;
}
.program-card-text p{
  color: #eee;
  font-weight: 300;
  word-spacing: 2px;
  line-height: 1.2;
  font-size: 14px;
  margin-bottom: 10px;
} 






.section-cta {
  width: 100%;
  padding: 100px 0;
  margin: 100px 0;
  background-color: rgba(8, 127, 91, 0.1);
}
.cta {
  max-width: 1000px;
  margin: 0 auto;
  padding: 25px;
  display: grid;
  gap: 50px;
  grid-template-columns: 2fr 1fr;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.15);
  border-radius: 11px;
  overflow: hidden;
  background-image: 
    linear-gradient(to right bottom, 
    var(--primary-color), 
    var(--primary-color-light));
}
.cta-text-box {
  padding: 50px;
  color: white;
  max-width: 100%;
}
.cta .heading-secondary {
  color: inherit;
  margin-bottom: 25px;
  font-size: 35px;
  font-weight: 600;
}
.cta-text {
  font-size: 18px;
  word-spacing: 2px;
  line-height: 1.5;
  margin-bottom: 25px;
}
.cta-img-box {
  height: 100%;
  background-image: linear-gradient(
    to right bottom,
    rgba(8, 127, 91, 0.25),
    rgba(8, 127, 91, 0.1)
  ),
  url("../../images/cover-picture-03.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.2);
}
.cta a{
  padding: 10px;
  border: none;
  background-color: white;
  font-size: 20px;
  font-weight: 600;
  border-radius: 8px;
  width: 35%;
  text-align: center;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  color: #333;
  text-wrap: nowrap;
}
.cta a:hover{
  background-color: gainsboro;
}