@import url('https://fonts.googleapis.com/css2?family=Carrois+Gothic&display=swap');
/* Reset & base */
* {
  margin: 0;
  box-sizing: border-box;
  /* list-style-type: none; */
  text-decoration: none !important;
  outline: none;
  scroll-behavior: smooth;
}

:root {
  --main-color: #047146;
  --third-color: #FFF8F0;
  --fourth-color: #E6E6E6;
  --nav-bg-mobile: #202020;
  --border: #eee;
  --white: #fff;
  --black: #000;
  --box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  --box-shadow-bottom: 0 4px 6px -5px rgba(0, 0, 0, 0.5);
  --webkit-scrollbar-track: #dbdbdb;
  --header: #dfdfdf;
  --sticky-header: #000000a6;
  --nav_sticky: #742034;
  --nav_hover_active: #ff3a6b;
  --nav-color: #e2dbcf;
  --hover-btn: #035a37;
  --video-list-bg: #4e9b75;
}

::selection {
  color: var(--main-color);
  background-color: var(--white);
}

/* Target the entire scrollbar */
::-webkit-scrollbar {
  width: 10px;
  /* Width of the scrollbar */
}

/* Style the track (background of the scrollbar) */


/* Style the scrollbar thumb (the moving handle) */
::-webkit-scrollbar-thumb {
  background-color: var(--header);
  /* Dark grey color */
  border-radius: 6px;
  transition: all .3s ease-in-out;
}

/* Hover effect for the scrollbar thumb */
::-webkit-scrollbar-thumb:hover {
  background-color: var(--white);
  /* Darker color on hover */
}

body {
  margin: 0;
  font-family: "Carrois Gothic", sans-serif;
  background: #fefefe;
  padding: 0;
}

/* Fixed Header */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  /* lowest among the 3 */
}

/* Header Visual Styling */
.header {
  width: 100%;
  background-color: transparent;
  transition: box-shadow .4s;
}

/* Sticky Header Behavior */
header.sticky {
  background-color: var(--sticky-header);
  box-shadow: var(--box-shadow);
  transition: all .4s ease-in-out;
  z-index: 999;
  /* lowest among the 3 */
}

.navigation_main ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Navbar styling */

.navbar-container {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  width: 100%;
}

.navbar-logo img {
  max-width: 100%;
  width: 250px;
  user-select: none;
  padding: .5rem 0rem;
}

.main_manu_header img {
  max-width: 100% !important;
  width: 250px !important;
}

/* Main Menu */
.navbar-menu {
  display: flex;
  align-items: center;
}

.main_manu_header {
  display: none;
}

.navbar-menu>li {
  position: relative;
}

/* Menu Item Link */
.navbar-menu>li>a {
  padding: 10px 18px;
  display: inline-block;
  font-weight: 600;
  position: relative;
  color: var(--white);
  transition: all 0.3s ease-in-out;
  margin-left: 10px;
  text-transform: uppercase;
  font-size: 14px;
}

header.sticky .navbar-menu>li>a {
  padding: 10px 18px;
  display: inline-block;
  font-weight: 600;
  position: relative;
  color: var(--white);
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  font-size: 14px;
}

/* Active text color */
.navbar-menu>li>a.active,
.navbar-menu>li>a:hover {
  color: var(--white);
  background-color: var(--main-color);
  border-radius: 50px;
}
/* Hover text color */


/* Show underline on active */
.navbar-menu>li>a.active::after {
  color: var(--main-color);
  transform: translateX(-50%) scaleX(0);
}


/* Show underline on hover or active */
.navbar-menu>li:hover>a::after,
.navbar-menu>li.active>a::after {
  width: 100%;
  transform: translateX(-50%) scaleX(1);
}

.navigation_main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.shopping_container ul.shopping_icons {
  display: flex;
  align-items: center;
  justify-content: center;
}

.shopping_container ul.shopping_icons li {
  padding: 0.2rem 0.9rem;
  /* border-right:1px solid var(--border); */
}

.shopping_container ul.shopping_icons li a {
  color: var(--black);
  font-size: 18px;
  transition: all .3s ease-in-out;
}

.shopping_container ul.shopping_icons li a:hover {
  color: var(--main-color);
  font-size: 18px;
}

.shopping_icons .badge {
  position: absolute;
  padding: 1px 3px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 3px;
  background: var(--main-color);
  min-width: 10px;
  letter-spacing: 0;
  top: 40px;
}

/* Dropdown submenu */
.submenu-container {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  min-width: 260px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  border: 1px solid #ebebeb;
  margin-top: -0.5rem;
  max-height: 0;
  /* Hide by default */
}

.navbar-menu>li:hover>.submenu-container {
  opacity: 1;
  pointer-events: auto;
  max-height: 400px;
  /* Show submenu */
}

.submenu-container::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 48%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border: 1px solid #ebebeb;
  border-right: 0;
  border-bottom: 0;
  filter: drop-shadow(0 2px -1px rgba(0, 0, 0, 0.1));
  z-index: 961;
  transition: border-bottom-color 0.3s;
  transform: rotate(45deg);
  background: #fff;
}

/* Submenu items */
.submenu-container .submenu {
  padding: 1rem;
}

.submenu li {
  border-bottom: 1px solid var(--border);
}

.submenu li:last-child {
  border-bottom: none;
}

.submenu li a {
  display: block;
  padding: 10px 0px;
  color: #000;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

.submenu li a:hover {
  color: #d5b883;
}

/* Hamburger toggle (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  border: none;
  background: transparent;
}

.hamburger div>i {
  color: var(--white);
  font-size: 18px;
  transition: all .3s ease-in-out;
}
header.sticky .hamburger div>i {
  color: var(--white);
  font-size: 18px;
  transition: all .3s ease-in-out;
}
.hamburger div>i:hover {
  color: var(--black);
}

/* Overlay styles */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
  /* below navbar-menu, above header */
}

.overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Close icon for mobile menu */
.mobile-close {
  display: none;
  width: 100%;
  text-align: right;
  padding: 10px 20px;
}

.mobile-close a {
  font-size: 2rem;
  color: var(--main-color);
  text-decoration: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  float: right;
  width: 30px;
  height: 30px;
  transition: all .3s ease-in-out;
}

.mobile-close a:hover {
  color: var(--black);
}

.navbar-menu li a>i {
  font-size: 13px;
  font-weight: bold;
}
@media (max-width: 1230px) {
    /* Menu Item Link */
.navbar-menu>li>a {
  padding: 10px 18px;
  display: inline-block;
  font-weight: 600;
  position: relative;
  color: var(--white);
  transition: all 0.3s ease-in-out;
  margin-left: 10px;
  text-transform: uppercase;
  font-size: 10px !important;
}

header.sticky .navbar-menu>li>a {
  padding: 10px 18px;
  display: inline-block;
  font-weight: 600;
  position: relative;
  color: var(--white);
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  font-size: 10px !important;
}
}
@media (max-width: 1100px) {

  /* Sidebar */
  .navbar-menu {
    position: fixed;
    top: 0;
    left: -330px;
    /* off-screen initially */
    width: 330px;
    height: 100vh;
    background: var(--nav-bg-mobile);
    flex-direction: column;
    overflow-y: auto;
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease-in-out;
    z-index: 1001;
    /* highest */
  }

  .navbar-menu li a>i {
    float: right;
  }

  .navbar-menu.active {
    left: 0;
    /* slide into view */
  }

  .navbar-menu>li {
    width: 100%;
  }

  .navbar-menu>li>a {
    padding: 10px 18px !important;
    margin: 5px;
  }

  .navbar-menu>li:hover>a::after {
    width: 0%;
  }

  .navbar-menu>li>a::after {
    display: none;
  }

  .submenu-container {
    position: static;
    opacity: 1 !important;
    pointer-events: auto !important;
    box-shadow: none;
    transform: none;
    border-radius: 0;
    min-width: auto;
    background: transparent;
    border: none;
    max-height: none;
    overflow: hidden;
  }

  .submenu-container::before {
    display: none;
  }

  .submenu {
    padding: 0;
  }

  .submenu li a {
    padding: 12px 30px;
    background: #f9f9f9;
    border-radius: 4px;
    margin: 3px 0;
  }

  .hamburger {
    display: flex;
    position: relative;
    z-index: 99;
  }

  .main_manu_header {
    display: block !important;
    font-size: 1.3rem !important;
    font-weight: 600;
    text-align: center;
    color: var(--white);
  }

  .mobile-close {
    display: block;
  }

  .navbar-logo img {
    max-width: 100%;
    width: 170px;
    /* padding: 15px 0; */
    user-select: none;
  }

  .shopping_icons .badge {
    position: absolute;
    padding: 1px 3px;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 3px;
    background: var(--main-color);
    min-width: 15px;
    letter-spacing: 0;
    top: 30px;
  }
}
@media (max-width: 800px){
  .swiper-wrappers{
    flex-direction: column-reverse;
  }
}

/*=========================================================== */
/* section {
  height: 100vh;
} */
#banner {
  padding: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.banner {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4rem;
}

.banner-text h2 {
  font-size: 85px;
  color: #D5B883;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 500;
}

.banner-text span {
  color: #9F1620;
  font-family: 'Montserrat', sans-serif !important;

}

.banner-text h3 {
  font-size: 16px;
  color: #9F1620;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 600;
}

.banner-text hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 1px solid #9F1620;
}

.banner-image {
  padding: 1rem
}

.banner-image img {
  max-width: 100%;
  width: 200vh;
}

.social-icons ul {
  display: flex;
  margin-top: 1rem;
  padding: 0;
}

.social-icons a {
  width: 50px;
  height: 50px;
  text-align: center;
  text-decoration: none;
  display: flex;
  margin: 0 5px;
  /*background: #000;*/
  padding: 15px;
  border-radius: 100%;
  justify-content: center;
  align-items: center;

}

.social-icons ul li {
  list-style-type: none;
}

.social-icons ul li svg {
  font-size: 30px;
  color: #9F1620;
}

.slide-up-images {
  position: relative;
  height: 700px; /* adjust */
  overflow: hidden;
}

.slide_up_images {
  display: flex;
  flex-direction: column;
  animation: slideUp 12s linear infinite;
}

.slide_up_images img {
  height: 100%; /* each image height must match container */
  width: 100px;
  object-fit: cover;
  margin-top: 1rem;
}

@keyframes slideUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}


/* .slide_up_images img{
 max-width: 100%;
 width: 80px;
 display: flex;
 align-items: center;
 margin-top: 1rem;
} */
@media (max-width: 1024px) {
  .banner-text h2 {
    font-size: 50px !important;
  }

  .banner-image img {
    max-width: 100%;
    width: 150vh;
  }
}

@media (max-width:768px) {
  #banner {
    padding: 1rem;
  }

  .banner {
    flex-direction: column;
    margin-top: 7rem !important;
  }

  .banner-text h2 {
    font-size: 35px !important;
    color: #D5B883;
    text-align: center;
  }

  .banner-text h3 {
    font-size: 20px;
    text-align: center;
  }

  .banner-image img {
    margin-top: 1rem;
    width: 380px;
  }

  .banner-text hr {
    width: 100%;
  }

  .social-icons ul {
    text-align: center;
    justify-content: center;
  }

  .swiper-slide {
    flex-direction: column !important;
    padding: 0rem !important;
  }
  .slide-up-images {
  position: relative;
  height: 400px !important; /* adjust */
  overflow: hidden;
}
.slide_up_images img {
  height: 100%; /* each image height must match container */
  width: 80px;
  object-fit: cover;
  margin-top: 1rem;
}
}


/* .swiper-button-next,
.swiper-button-prev {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #D5B883;
  padding: 1.5rem;
  box-shadow: 0 0 10px #000;

}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px !important;
  font-weight: bold;
  color: #fff;
}

.swiper-button-next:hover {
  transform: scale(1.2) translateX(80%);
  background: #9F1620;
}

.swiper-button-prev:hover {
  transform: scale(1.2) translateX(-80%);
  background: #9F1620;
}

.swiper-button-next {
  transform: translateX(100%);
  right: 2rem !important;
  color: #9F1620;
}

.swiper-button-prev {
  transform: translateX(-100%);
  left: 2rem !important;
  color: #9F1620;
} */



/* MAIN */

section {
  padding: 3rem;
  /* min-height: 100vh; */
}

.heading-title {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin: 2rem 0rem 2rem;
  color: var(--main-color);
}

.heading-title span {
  color: var(--white);
}


.about-title span {
  color: var(--main-color);
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: transparent;
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 3rem;
}

.swiper {
  width: 100%;
  height: 100%;
}

#services {
  background-color: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Make the home section take up the full viewport */
#home {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Container for the content */
.home {
  padding-top: 2rem;
  position: relative;
  z-index: 1;
  /* Make sure the content stays above the video */
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin-top: 1rem !important;
}

/* Styles for the video background */
#video-background{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}
#video-backgrounds{
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}

.home {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.home-container{
  display: flex;
}
.swiper-wrappers{
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-content img{
  max-width: 100%;
  width: 50vw;

}
.home-content h3 {
  font-size: 2rem;
  font-weight: 700;
}

span {
  color: var(--header);
  font-weight: 600;
}

.home-content h1 {
  font-size: 50px;
  text-align: left;
  color: var(--white);
  /* font-family: "Great Vibes", cursive; */
}

.home-img img {
  width: 60vw;
  max-width: 100%;
  margin-bottom: -5rem;
}

.home-content p {
  margin-top: 1rem;
  font-size: 1.3rem;
  text-align: justify;
  line-height: 1.5rem;
  color: var(--white);
}

.main-btn {
  text-align: left;
}

.btn {
  display: inline-block;
  margin-top: 1rem; 
  background-color: var(--white);
  border-radius: 4rem;
  /* box-shadow: 0 0 0.5rem var(--header-color); */
  font-size: 20px;
  color: var(--black);
  letter-spacing: .1rem;
  font-weight: 500;
  font-family: Tan Pearl;
  transition: all 0.6s ease-in-out;
}

.btn:hover {
  background: var(--main-color);
  color: var(--white);
}

.home-img,
.home-content {
  width: 50%;
}
.btn {
  position: relative;
  padding: 1.3rem 2.5rem;
  background: var(--white);
  color: var(--black);
  border: none;
  border-radius: 50px;
  overflow: hidden;
  font-size: 20px;
  font-family: Tan Pearl
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70px;
  width: 50px;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  transform: skewX(-20deg);
  animation: autoShine 2s infinite;
}

@keyframes autoShine {
  0% { left: -70px; }
  100% { left: 120%; }
}

/* VERSE */
#verse{
   background-image: url(../images/bg/rev-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.verse-container{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.verse-buttons-contents{
  display: flex;
  gap: 1rem;
}
.verse-btns{
  display: flex;
  align-items: center;
  flex-direction: column;
}
.verse-content-display{
  width: 500px;
}
.verse-content-display h2{
  text-align: center;
  color: var(--white);
  font-size: 30px;
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.class_btns{
  background-color: var(--main-color) !important;
  color: var(--white) !important;
  transition: all .3s ease-in-out;
  border-radius: 10px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 17rem !important;
  height: 5rem !important;
  margin: 1rem;
  cursor: pointer;
}
.class_btns:hover,
.class_btns.active{
  background-color: var(--white) !important;
  color: var(--black) !important;
}

  .verse-display-text {
    overflow: hidden;
    /* Ensure layout height for smooth animation; will expand to content with JS animation class */
    min-height: 48px;
    line-height:1.6;
    color:var(--white);
    font-size:16px;
  }

  /* slide-up animation — from slightly below + low opacity to natural position */
  @keyframes slideUpIn {
    0%   { transform: translateY(100px); opacity: 0; }
    100% { transform: translateY(0);     opacity: 1; }
  }

  /* applied each time we want the slide effect */
  .slide-up {
    animation: slideUpIn .45s cubic-bezier(.2,.9,.2,1);
  }

  /* optional small fade out to make content switch feel cleaner */
  .fade-out {
    animation: fadeOut .18s linear forwards;
  }
  @keyframes fadeOut {
    to { opacity: 0; transform: translateY(6px); }
  }

@media (max-width: 1150px){
    .verse-container{
      flex-direction: column;
    }
    .verse-content-display{
      width: 100%;
    }
}
@media (max-width: 768px){
    .verse-buttons-contents{
      flex-direction: column;
    }
    .verse-content-display{
      width: 100%;
    }
}

#about {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;

}

.about {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.about .about-img img {

  max-width: 100%;
  width: 700px;

}

.about-img {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .5rem;
}
.about-img,
.about-content{
 width: 50%;
}
/* .about-img {
    display: flex;
    align-items: center;
    justify-content: center;
} */
.about-content h2 {
  text-align: left;
  line-height: 1;
}


.about-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  margin: 2rem 0rem 1rem;
  font-family: Tan Pearl;
}

.about-content p {
  font-size: 23px;
  margin-bottom: 1rem;
  color: var(--white);
  font-style: italic;
}

@keyframes img {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}
@media (max-width: 1024px) {
.about-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--white);
  margin: 2rem 0rem 1rem;
}

}
@media (max-width: 768px) {
  .about {
    flex-direction: column;

  }

  .about-img,
  .about-content {
    width: 100% !important;
  }

  .about .about-img img {
    max-width: 100%;
    
    padding: .5rem;
    width: 100% !important;
  }
  .about-img {
    padding: 0rem !important;
  }

  .about-title {
   
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--white);
    margin: 2rem 0rem 1rem;
  }

  .home-content h1 {
    font-size: 30px;
    text-align: left;
    color: var(--white);
   
  }
}

/* BOOKS */
#video_background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
#book, #contact{
  position: relative;
  overflow: hidden;
}
.book, .book_2{
  max-width: 1400px;
  margin: auto;
}
.book-contents h2,
.book-contents-2 h2{
  color: var(--white);
  font-size: 40px;
  font-family: Tan Pearl;
  font-style: italic;
  margin-bottom: 1rem;
}
.book-contents p,
.book-contents-2 p{
  font-size: 17px;
  color: var(--white);
  font-style: italic;
}
.book .book-container,
.book_2 .book-container-2{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.book-contents,
.book-image,
.book-contents-2,
.book-image-2{
  width: 50%;
}
.book-image,
.book-image-2{
  display: flex;
  align-items: center;
  justify-content: center;
}
.book-image img,
.book-image-2 img{
  width: 80%;
}

.buy-btn .footer_btn {
  display: inline-block;
  position: relative;
  padding: 1.3rem 2.5rem;
  background: var(--main-color);
  color: var(--white);
  border: none;
  border-radius: 50px;
  overflow: hidden;
  font-size: 20px;
  font-family: Tan Pearl;
  margin-top: 2rem;
  transition: all 0.3s ease-in-out;
}
.buy-btn .footer_btn:hover{
 background-color: var(--white);
 color: var(--black);
}
.buy-btn .footer_btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70px;
  width: 50px;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  transform: skewX(-20deg);
  animation: autoShine 2s infinite;
}

@keyframes autoShine {
  0% { left: -70px; }
  100% { left: 120%; }
}
#book_2{
  background: url('../images/bg/book2-bg.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@media (max-width: 1024px){
.book .book-container{
  flex-direction: column-reverse;
}
.book_2 .book-container-2{
  flex-direction: column;
}
.book-contents,
.book-image,
.book-contents-2,
.book-image-2{
  width: 100%;
}
.book-image img,
.book-image-2 img{
  width: 80%;
}
.book-contents h2,
.book-contents-2 h2{
  color: var(--white);
  font-size: 25px;
  font-family: Tan Pearl;
  font-style: italic;
  margin-bottom: 1rem;
}
}
/* SONG SECTION */
#song-container{
  background: url('../images/bg/ogden-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.song-container{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
.song-container h2{
  font-size: 30px;
  color: var(--white);
  margin-bottom: 1rem;
}
.song_contents {
            text-align: center;
            overflow: hidden;
            width: 310px; /* Slightly larger to account for borders and padding */
        }

        .slider {
            position: relative;
            width: 600px; /* Double the width of a single image */
            height: 300px;
            display: flex;
            animation: slide 10s infinite;
            margin-bottom: 1rem;
        }

        .song-image {
            position: relative;
            width: 300px;
            height: 300px;
            background-size: cover;
            background-position: center;
            border: 5px solid #fff;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .image1 {
            background-image: url('../images/2.jpg');
        }

        .image2 {
            background-image: url('../images/3.jpg');
        }

        .overlay {
            position: absolute;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            color: #fff;
            width: 100%;
            text-align: center;
            padding: 10px;
        }

        h1 {
            margin: 0;
            font-size: 1.5em;
        }

        p {
            margin: 5px 0 0;
            font-size: 1em;
        }

        audio {
            margin-top: 20px;
            width: 300px;
        }

        @keyframes slide {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(-300px); }
        }



/* Book Overlay */
.book-overlay {
  position: relative;
  overflow: hidden;
}

.book-overlay img {
  display: block;
  width: 100%;
  transition: transform 0.3s ease;
}

.book-overlay:hover img {
  transform: scale(1);
}

.overlay-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 1rem;
  color: #fff;
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.overlay-content p {
  font-size: 17px;
  margin-top: 1rem;
}

.book-overlay:hover .overlay-content {
  opacity: 1;
}

/* Modal Styles */
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: auto;
  /* Enable scrolling for content */
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  width: 80%;
  max-width: 500px;
  text-align: center;
  position: relative;
  border-radius: 10px;
}

.modal-content .close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
}

#bookModal .modal-content h2,
#bookModal .modal-content h4,
#bookModal .modal-content p {
  color: #000 !important;
}

#bookModal .modal-content p {
  text-align: left;
  margin-top: 1rem;
}

#bookModal .modal-content ul {
  margin-top: 1rem !important;
  color: var(--white);
  text-align: left;
}

/* Optional: Add animations for the modal */
.modal-content {
  animation: fadeIn 0.3s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.footer_book {
  margin-top: 2rem;
}

.footer_book li {
  border-bottom: 1px solid #47382f1f;
  padding: .5rem 0rem 0.5rem;
  display: flex;
  gap: 1rem;
  font-weight: 600;
}

.footer_book li label {
  font-weight: 500;
  color: var(--main-color);
}

.footer_book li .book_title_bottom {
  background: transparent !important;
  border: none !important;
  font-size: none !important;
  display: block;
  font-weight: 600;
  color: var(--main-color);
  margin-top: 0rem !important;
  padding: 0rem !important;
  border-radius: none !important;
  transition: none;
}

.footer_book li .book_title_bottom:hover {
  color: var(--main-color) !important;
}

@media (max-width: 768px) {
  .book-show-details {
    flex-direction: column;
    /* padding: 1.5rem !important; */
  }


  .books-item-2,
  .books-item-1 {
    width: 100% !important;
  }

  #books .books .books-container {

    padding: 0rem !important;
    margin-top: 5rem !important;
  }

  #books .books .books-container img {
    max-width: 100%;
    width: 100vw !important;

  }

  .books-item-1 h3 {
    font-size: 30px !important;
    font-weight: 700;
  }
  .book_scroll h4{
    font-size: 20px !important;
  }
  .home-img,
  .home-content {
    width: 100% !important;
  }

  section {
    padding: 1rem !important;
  }

  .home {
    padding-top: 5rem !important;
  }

  .home-img img {
    width: 100% !important;
    max-width: 80%;
    margin-bottom: 0rem !important;
  }
}

.footer_book ul {
  padding-inline-start: 0 !important;
}


/* BOOK REVIEWS */
#book-reviews {
  background-image: url(../images/bg/book-reviews-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#book-reviews h3 {
  text-align: center;
  margin-top: 5rem;
}

#book-reviews p {
  text-align: center;
  margin-top: 1rem;
}

#book-reviews .book_review_card p {
  text-align: left;
  margin-top: 1rem;
}

#book-reviews .book-reviews {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 0rem 5rem 0rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

#book-review .book_review_card {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

em {
  color: var(--em-star);
  font-size: 20px;
  font-weight: 600;
  font-style: normal !important;
}

#book-review .book_review_card {
  background-color: #fff;
  padding: 2rem;
  color: #000;
  border-radius: 10px;
}

#book-review .book_review_card span,
#book-review .book_review_card span em {
  font-weight: 700;

  font-size: 20px;
  text-align: center;
}

.book_review_card .qoute {
  display: flex;
  align-items: center;
  justify-content: center;
}

#book-review .item {
  margin: 3px;
  display: flex;

  flex-direction: column;
}

#book-review .item img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  #book-reviews .book-reviews .book_review_img img {
    max-width: 100%;
    width: 100%;
  }
}
#gallery{
  max-width: 1400px;
  margin: auto;
  padding: 3rem;
}
.gallery-container{
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-container img{
  max-width: 100%;
  width: 500px;
  border-radius: 10px;
  border: 3px solid var(--nav_sticky);
  padding: .3rem;
}
/*CONTACT*/

.contact {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

#contact .contact-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap:2rem;
}

/* .contact-address {
background: #eee;
padding: 2rem;

} */

#contact .contact-form .address,
#contact .contact-form .email-address,
#contact .contact-form .phone-number {
  margin-bottom: 2rem;
}

#contact .contact-form .address i,
#contact .contact-form .email-address i,
#contact .contact-form .phone-number i{
  float: left;
  width: 40px;
  height: 40px;
  background-color: var(--main-color);
  /*#a06f76;*/
  color: var(--header);
  font-size: 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

#contact .contact-form .address h4,
#contact .contact-form .email-address h4,
#contact .contact-form .phone-number h4 {
  padding: 0 0 0 55px;
  margin-top: 50px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--main-color);
}

#contact .contact-form .address p,
#contact .contact-form .email-address p,
#contact .contact-form .phone-number p {
  padding: 0 0 0 55px;
  margin-bottom: 0;
  font-size: 1rem;
  color: var(--white);
}
#contact .contact-form .contact-socmed{
  display: flex;
  align-items: center;
  gap: 1rem;
}
#contact .contact-form .contact-socmed a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: var(--main-color);
  color: var(--header);
  font-size: 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
#contact .contact-form .contact-socmed a:hover{
  background-color: var(--white);
  color: var(--main-color);
}
/* #contact .form {

background: #eee;
padding: 2rem;
} */

#contact form {
  text-align: center;
}

#contact form .input-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border: none;
}

#contact form {
  /* max-width: 40rem; */
  margin: 1.5rem auto;
  text-align: center;
  margin-bottom: 0.8rem;
}

#contact form input,
#contact form textarea {
  width: 100%;
  padding: 0.9rem;
  font-size: 0.8rem;
  color: var(--black);
  background: var(--header);
  border-radius: .5rem;
  border: none;
  font-weight: 600;

}
.hidden-fields-container{
    display: none !important;
}
/* #contact form .input-box input {
width: 49%;
} */

#contact form .btn {
  margin-top: 3rem;
  margin-bottom: 3rem;
  cursor: pointer;
}

input::-webkit-input-placeholder {
  color: #000;
  opacity: .5;
}

/* .contact-form .form {
  background: var(--header);
  padding: 2rem;
  border-radius: 10px;
    box-shadow:  4px 4px 8px rgba(0, 0, 0, 0.30),
     -4px -4px 8px rgba(255,255, 255, 1);
} */

.contact-form .form,
.contact-form .contact-address {
  width: 100%;
}

#contact form textarea {
  resize: none;
  height: 100px;
}

#contact form .btn {
  margin-top: 0;
  margin-bottom: 0;
  cursor: pointer;
  background: var(--button-color);
  /*#a06f76;*/
  padding: 1rem 3rem;
  border: none;
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  transition: all .3s ease-in-out;
  float: left;
}

#contact form .btn:hover {
  box-shadow:
    inset 4px 4px 8px rgba(0, 0, 0, 0.30),
    inset -4px -4px 8px rgba(247, 238, 229, 0.8);
  color: var(--black);
}

@media (max-width: 1024px) {
  #contact .contact-form {
    flex-direction: column;
  }

  #contact .contact-form .address h4,
  #contact .contact-form .email-address h4,
  #contact .contact-form .phone-number h4 {
    padding: 0 0 0 55px;
    margin-top: 20px;
    font-size: 17px;
    font-weight: 600;
  }
}

@media (max-width: 768px) {
  #contact {
    padding: 1rem;
  }

  .contact-form .form,
  .contact-form .contact-address {
    width: 100%;
    padding: 1rem;
  }

  .about-img,
  .about-content {
    width: 100%;
  }

}

input[type=submit] {
  background: var(--main-color);
  /*#a06f76;*/
  color: var(--black);
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: .6s ease;
  margin-top: 1rem;
}

input[type=submit]:hover {
  background-color: var(--white);
  color: var(--black);
}

#contact .wpcf7-submit {
  color: var(--white);
  width: 150px;
  border: none;
  border-radius: 50px;
  background: var(--main-color);
  font-size: 16px;
}

#contact .wpcf7-submit:hover {
  background-color: var(--white);
  color: var(--black);
}

#contact .screen-reader-response {
  color: #fff;
}

#contact .wpcf7-response-output {
  display: none !important;
}

/* footer */

.scrollUp {
  position: fixed;
  right: 2rem;
  bottom: -50%;
  background-color: var(--main-color);
  color: var(--white);
  box-shadow: var(--box-shadow);
  display: inline-flex;
  padding: 1rem;
  font-size: 1rem;
  z-index: 99;
  border-radius: 50px;
  transition: bottom .3s, transform .3s;
}

.scrollUp:hover {
  transform: translateY(-.5rem);
}

.show-scroll {
  bottom: 3rem;
}

/* footer */
#footer {
  background-color: var(--black);
}

.footer .footer-container {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 2rem;
}
.footer-btns{
  text-align: center;
}
.footer-btns a {
  padding: 1rem 3rem;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
  margin: 2rem 0rem;
  background-color: var(--nav_sticky);
  color: var(--header);
  box-shadow:
    inset 4px 4px 8px rgba(0, 0, 0, 0.30),
     inset -4px -4px 8px rgba(167, 50, 82);
  transition: all .3s ease-in-out;
}
#book-purchase .footer-btns a {
  padding: 1rem 3rem;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
  margin: 2rem 0rem;
  background-color: var(--nav_sticky);
  color: var(--white);
  transition: all .3s ease-in-out;
   box-shadow: none!important;
}
#book-purchase .footer-btns a:hover {
  color: var(--black);
  background-color: var(--header);
  box-shadow: none!important;
}

.footer-btns a:hover {
  box-shadow:
     4px 4px 8px rgba(0, 0, 0, 0.30),
    -4px -4px 8px rgba(167, 50, 82);
  color: var(--white);
}

.quippy {
  color: var(--main-color);
}

.footer-container p {
  color: var(--header);
  margin-bottom: 0rem !important;
}
.footer-container p span{
 color: var(--main-color);
}
#owl-demo .item {
  margin: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#owl-demo .item img {
  display: block;
  width: 100%;
  height: auto;
}

.owl-theme .owl-controls .owl-page span {
  display: block;
  width: 12px;
  height: 12px;
  margin: 5px 7px;
  filter: Alpha(Opacity=50);
  opacity: 0.5;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  background: var(--main-color);
}

/* ============== VIDEO  ====================== */
.header-title {
  text-align: center;
  margin-top: 3rem;
  color: #fff;
}

.video-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
  align-items: flex-start;
  padding: 3rem 5%;
  justify-content: center;
}

.video-container .video-player {
  background-color: var(--main-color);
  border-radius: 5px;
  padding: 10px;
}

.video-container .video-player iframe {
  width: 100%;
  border-radius: 5px;
}

.video-container .video-list {
  /* background: var(--main-color); */
  border-radius: 5px;
  height: 450px;
  overflow-y: scroll;
}

.video-container .video-list::-webkit-scrollbar {
  width: 7px;
}

.video-container .video-list::-webkit-scrollbar-track {
  background: #ccc;
  border-radius: 50px;
}

.video-container .video-list::-webkit-scrollbar-thumb {
  background: var(--main-color);
  border-radius: 50px;
}

.video-container .video-list .video-item img {
  width: 100px;
  height: 50px;
  border-radius: 3px;
}

.video-container .video-list .video-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #f7f7f7;
  border-radius: 3px;
  margin: 10px;
  padding: 5px;
  border: 1px solid rgba(0, 0, 0, .1);
  cursor: pointer;
}

.video-container .video-list .video-item h3 {
  font-size: 12px !important;
  background: none !important;
  text-align: left;
  color: var(--white);
}

.video-container .video-list .video-item:hover {
  background: #dbdbdb;
  color: var(--white);
}

.video-container .video-list .video-item.active {
  color: var(--white);
}

.video-description {
  margin-top: 10px;
  color: var(--white);
}

@media (max-width:960px) {
  .video-container {
    grid-template-columns: 1.5fr 1fr;
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .video-container {
    grid-template-columns: 1fr;
    padding: 0rem !important;
  }

  .video-container .video-player iframe {
    width: 100%;
    height: 300px !important;
    border-radius: 5px;
  }
}

#video {
  background-color: var(--color-dark);
}

/* WEEKLY MINISTRY */
#weekly-ministry{
  background: url('../images/bg/weekly-bg.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.weekly-ministry {
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
            margin-top: 5rem;
        }

        /* .weekly-ministry .weekly-ministry-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
        } */

        .weekly-ministry .weekly-ministry-container .weekly-ministry-card {
            background-color: #eee;
            padding: 1rem;
            border-radius: 10px;
        }

        .weekly-ministry .weekly-ministry-container .weekly-ministry-card .weekly-ministry-body .weekly-ministry-date {
            display: flex;
        }

        .weekly-ministry .weekly-ministry-container .weekly-ministry-card .weekly-ministry-body .weekly-ministry-date .date {
            background-color: rgb(0, 107, 71);
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            padding: .5rem 2rem;
            border-radius: 50px;
            box-shadow: 0px 0px 10px rgba(0, 255, 34, 0.1)
        }

        .grid-card {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
        }

        .button-tab {
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 2rem;
        }
         .button-tab #bookDropdown{
          padding: 1rem;
          font-size: 17px;
          border-radius: 5px;
         }
        @media (max-width: 1024px){
            .grid-card {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }
        }
        @media (max-width: 768px){
            .grid-card {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 1rem;
        }
        }
 /*ALBUM PAGE*/
        #album-gallery {
            background: url('../images/bg/ogden-bg.jpg');
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
        }
        .album-container {
            max-width: 1400px;
            margin: auto;
            margin-top: 5rem;
        }

        .gallery {
            column-count: 3;
            column-gap: 10px;
            display: inline-block;
            justify-content: center;
            padding: 3rem;
        }

        .gallery-item {
            break-inside: avoid;
            margin-bottom: 10px;
        }

        .gallery-item iframe {
            width: 100% !important;
            border-radius: 10px;
        }

        .gallery-item img {
            width: 100%;
            height: auto;
            cursor: pointer;
            border-radius: 10px;
            transition: 0.3s;
        }

        .gallery-item img:hover {
            opacity: 0.8;
        }

        /* Modal styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            padding-top: 60px;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgb(0, 0, 0);
            background-color: rgba(0, 0, 0, 0.9);
        }

        .modal-contents {
            margin: auto;
            display: block;
            width: 80%;
            max-width: 500px;
            margin-bottom: 5rem;
        }

        .modal-content,
        .caption {
            animation-name: zoom;
            animation-duration: 0.6s;
        }

        @keyframes zoom {
            from {
                transform: scale(0)
            }

            to {
                transform: scale(1)
            }
        }

        .close {
            position: absolute;
            top: 15px;
            right: 35px;
            color: #f1f1f1;
            font-size: 40px;
            font-weight: bold;
            transition: 0.3s;
        }

        .close:hover,
        .close:focus {
            color: #bbb;
            text-decoration: none;
            cursor: pointer;
        }

        /* Responsive styles */
        @media (max-width: 1200px) {
            .gallery {
                column-count: 2;
            }
        }

        @media (max-width: 768px) {
            .gallery {
                column-count: 1;
            }

            .awards-container {

                padding: 1rem;
            }
        }

        /*video layout*/
        #kieras_video {
            background: url('../images/bg/kiera-bg.png');
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }
        #videos {
            background: url('../images/bg/ogden-video-bg.png');
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

        .container {
            max-width: 1400px;
            margin: auto;
            margin-top: 5rem;
        }
        .container h3{
          text-align: center;
          color: var(--white);
          font-weight: 500;
        }
        .videos .video-heading-text {
            margin-bottom: 1rem;
            margin-top: -2rem;
            text-align: center;
            font-size: 20px;
            color: #fff;
            font-weight: 400;
        }

        .video-container {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 1rem;
            align-items: flex-start;
        }

        .video-container .video-player {
            background-color: var(--video-list-bg);
            border-radius: 5px;
            padding: 10px;
        }

        .video-container .video-player iframe {
            width: 100%;
            border-radius: 5px;
        }

        .video-container .video-list {
            background: var(--video-list-bg);
            border-radius: 5px;
            height: 473px;
            overflow-y: scroll;
        }

        .video-container .video-list::-webkit-scrollbar {
            width: 7px;
        }

        .video-container .video-list::-webkit-scrollbar-track {
            background: #ccc;
            border-radius: 50px;
        }

        .video-container .video-list::-webkit-scrollbar-thumb {
            background: #666;
            border-radius: 50px;
        }

        .video-container .video-list .video-item img {
            /*width: 100px;*/
            height: 50px;
            border-radius: 3px;
        }

        .video-container .video-list .video-item {
            display: flex;
            align-items: center;
            gap: 15px;
            background: #14633d69;
            border-radius: 3px;
            margin: 10px;
            padding: 5px;
            border: 1px solid rgba(0, 0, 0, .1);
            transition: all .3s ease-in-out;
            cursor: pointer;
        }

        .video-container .video-list .video-item:hover {
            background: var(--main-color);
            color: #fff;
        }

        .video-container .video-list .video-item.active {
            background: #01623c;
            color: #fff;
        }

        .video-description {
            margin-top: 10px;
        }

        @media (max-width:960px) {
            .video-container {
                grid-template-columns: 1.5fr 1fr;
                padding: 2rem;
            }
        }

        @media (max-width: 768px) {
            .video-container .video-player iframe {
                width: 100%;
                border-radius: 5px;
                height: 315px !important;
            }

            .video-container .video-list {
                background: #eee;
                border-radius: 5px;
                height: 370px !important;
                overflow-y: scroll;
            }
        }

        @media (max-width: 468px) {
            .video-container {
                grid-template-columns: 1fr;
            }
        }
        #privacy-policy{
            background: url('../images/bg/ogden-video-bg.png');
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }
        .privacy-policy{
            max-width: 1400px;
            margin: auto;
            margin-top: 5rem;
        }
        .privacy-policy .wp-block-heading{
            color: var(--white);
            margin: 1rem 0rem;
        }
        .privacy-policy p{
             color: var(--white);
        }