@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: #ab002a;
  --third-color: #FFF8F0;
  --fourth-color: #E6E6E6;
  --nav-bg-mobile: #c3c3c3;
  --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;
  --nav_sticky: #742034;
  --nav_hover_active: #ff3a6b;
  --nav-color: #e2dbcf;
}

::selection {
  color: var(--nav_sticky);
  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(--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: 35px 18px;
  display: inline-block;
  font-weight: 600;
  position: relative;
  color: var(--white);
   text-shadow: -2px 1px 5px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease-in-out;
}

header.sticky .navbar-menu>li>a {
  padding: 35px 18px;
  display: inline-block;
  font-weight: 600;
  position: relative;
  color: var(--nav_sticky);
  /* default color */
  text-shadow: none;
  transition: all 0.3s ease-in-out;
}

/* Active text color */
.navbar-menu>li>a.active,
.navbar-menu>li>a:hover {
  color: var(--nav_hover_active);
}

header.sticky .navbar-menu>li>a.active,
header.sticky .navbar-menu>li>a:hover {
  color: var(--nav_hover_active);
}

/* 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(--nav_sticky);
  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: 1024px) {

  /* Menu Item Link */
  .navbar-menu>li>a {
    padding: 35px 18px;
    display: inline-block;
    font-weight: 600;
    position: relative;
    color: var(--white);
    /* default color */
    transition: all 0.3s ease-in-out;
  }
}

@media (max-width: 768px) {

  /* 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: 15px 20px !important;
    width: 100%;
  }

  .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;
  }
}

/*=========================================================== */
/* 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;
}

@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;
  }
}


/* .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: 5rem;
  /* min-height: 100vh; */
}

.heading-title {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin: 2rem 0rem 2rem;
  color: var(--black);
}

.heading-title span {
  color: var(--nav_sticky);
}


.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;
  /* Ensure the video stays behind all other content */
  pointer-events: none;
  /* Prevent the video from interfering with any mouse events */
}

.home {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.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%;
}

.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: 3rem;
  padding: 1rem 2rem;
  background-color: var(--nav_sticky);
  border-radius: 4rem;
  border: 2px solid var(--nav_sticky);
  /* box-shadow: 0 0 0.5rem var(--header-color); */
  font-size: 1rem;
  color: var(--white);
  letter-spacing: .1rem;
  font-weight: 600;
  transition: all 0.6s ease-in-out;
}

.btn:hover {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.home-img img {
  animation: img 2s ease-in-out infinite;
  animation-delay: 2s;
}

.home-img,
.home-content {
  width: 50%;
}

#about {
  background-color: var(--nav_sticky);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  /* background-image: url(../images/bg/about-bg.png); */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.about {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5rem 0rem;
  gap: 2rem;
}

.about .about-img img {

  max-width: 100%;
  width: 700px;

}

.about-img {
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.30),
    -4px -4px 8px rgba(167, 50, 82);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .5rem;
}

/* .about-img {
    display: flex;
    align-items: center;
    justify-content: center;
} */
.about-content h2 {
  text-align: left;
  line-height: 1;
}

.about-content {
  background: var(--nav_sticky);
  padding: 1rem;
  box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.30),
    inset -4px -4px 8px rgba(167, 50, 82);
  width: 70%;
}

.about_scroll {
  width: 100%;
  height: 270px;
  overflow-y: scroll;
  padding: 10px;
}

.about-title {
  font-size: 4rem;
  font-weight: 600;
  color: var(--white);
  margin: 2rem 0rem 1rem;
}

.about-content p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-align: justify;
  line-height: 1.5rem;
  color: var(--white);
}

@keyframes img {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}
@media (max-width: 1024px) {
  .about_scroll {
  width: 100%;
  height: 200px;
  overflow-y: scroll;
  padding: 10px;
}
.about-content {
  background: var(--nav_sticky);
  padding: 1rem;
  box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.30),
    inset -4px -4px 8px rgba(167, 50, 82);
  width: 70%;
  height: 345px;
}
.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 */
#books {
  /* background-image: url(../images/bg/book-bg.png); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--nav_sticky);
}

.books {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 3rem;
}

#books .books .books-container {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #3a3a3a;
  padding: 3.5rem;
  border-radius: 10px
}

#books .books .books-container img {
  max-width: 100%;
  width: 50vw;
  border-radius: 20px;
  transition: all .3s ease-in-out;
}

/* #books .books .books-container img:hover {
  transform: translateY(-8px);
} */

.book-show-details {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

/* #books .books .books-container a {
    display: inline-block;
    font-weight: 600;
    font-size: 20px;
    color: #fff;
    margin-top: 1rem;
    background-color: var(--main-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid var(--main-color);
    transition: all .3s ease-in-out;
} */

/* #books .books .books-container a:hover {
    background-color: transparent;
    color: var(--main-color);
    transform: translateY(-8px);
} */

#books .about .about-container .about-right {
  background-color: #107569;
  padding: 2rem;
  border-style: dashed;
  border-color: #fff;
  border-width: 5px;
  text-align: left;
}

/* .books-item-1,
.books-item-2 {
  width: 50%;
} */

.books-item-1 {
  padding: 1.5rem;
  background-color: var(--nav_sticky);
  box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.30),
    inset -4px -4px 8px rgba(167, 50, 82);
  width: 100%;
}
.book_scroll {
    width: 100%;
    height: 260px;
    overflow-y: scroll;
    padding: 10px;
    margin-top: 1rem;
    box-shadow: inset var(--box-shadow-bottom);
}
#books .books .books-container  .cb750f {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1rem;
}
#books .books .books-container .cb750f img{
  max-width: 100%;
  width: 20vw;
}
.books-item-1 {
  text-align: left;
}
.format_edition{
  text-align: center;
  padding: 2rem;
  background-color: #e9e9e9;
}
.format_edition h3{
  font-size: 30px;
  color: var(--nav_sticky);
}
@media (max-width: 768px){
  .format_edition h3{
    font-size: 22px;
    color: var(--nav_sticky);
}
}
.format_edition_btns{
  padding: 1rem 0rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.format_edition .format_edition_btns span{
  background-color: #e9e9e9;
   box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.15),
    inset -4px -4px 8px rgba(255, 255, 255);
     width: 300px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    color: var(--black);
    font-weight: 700;
}
/* .books-item-1 span {
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 3rem;
    color: #fff;
    background: var(--nav_color);
    padding: .7rem 2rem;
    border-radius: 50px;
    border: 1px solid var(--nav_color);
    cursor: pointer;
    transition: all .3s ease-in-out;
} */

.books-item-1 span{
  color: var(--white);
  font-style: italic;
  font-weight: 500;
}

.books-item-1 p {
  margin-top: 2rem;
  text-align: justify;
  line-height: 1.5rem;
  color: var(--white);
}

.books-item-1 h3 {
  margin: 1rem 0rem;
  font-size: 50px;
  font-weight: 700;
  color: var(--white);
}
.book_scroll h4{
  font-size: 25px;
  color: var(--white);
  margin-bottom: 1rem;
}

/* 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: 100%;
  }
}

.footer_book ul {
  padding-inline-start: 0 !important;
}

/* BOOK TRAILER */
#selfie-videos {
  background-color: var(--book-trailer-bg);
}

.selfie-videos-container {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0rem 5rem 0rem 5rem;
}

.video-container-selfie-videos {
  display: flex;
  align-items: center;
  padding: 1rem 5%;
  justify-content: center;
}

.page-buttons-selfie-videos {
  display: flex;
  margin-top: 2rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  gap: 1rem;
}

.page-buttons-selfie-videos a {
  background: #D5B883;
  padding: .8rem;
  width: 140px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  color: #000;
  border-radius: 10px;
  transition: All .3s ease-in-out;

}

.page-buttons-selfie-videos a:hover {
  background: #9F1620;
  color: #fff;
}

.page-button-selfie-videos.active {
  background: #9F1620;
  color: #fff;
}

.video-container-selfie-videos .video-player-selfie-videos {
  background-color: var(--nav_color);
  border-radius: 5px;
  padding: 10px;
}

.video-container-selfie-videos .video-player-selfie-videos video {
  width: 100%;
  border-radius: 5px;
}

.video-container-selfie-videos .video-list-selfie-videos {
  background: #eee;
  border-radius: 5px;
  height: 500px;
  overflow-y: scroll;
}

.video-container-selfie-videos .video-list-selfie-videos::-webkit-scrollbar {
  width: 7px;
}

.video-container-selfie-videos .video-list-selfie-videos::-webkit-scrollbar-track {
  background: #D5B883;
  border-radius: 50px;
}

.video-container-selfie-videos .video-list-selfie-videos::-webkit-scrollbar-thumb {
  background: #666;
  border-radius: 50px;
}

.video-container-selfie-videos .video-list-selfie-videos .vidmultimedia video {
  width: 100px;
  height: 50px;
  border-radius: 3px;
}

.video-container-selfie-videos .video-list-selfie-videos .vidmultimedia {
  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-selfie-videos .video-list-selfie-videos .vidmultimedia:hover {
  background: #D5B883;
}

.video-container-selfie-videos .video-list-selfie-videos .vidmultimedia.active {
  background: #D5B883;
}

.title-multimedia {
  font-weight: 400;
  margin-top: 10px;
  color: #fff;
  margin-bottom: 1rem;
  text-align: center;
}

.selfie-videos-container {
  padding: 0rem !important;
}

@media (max-width:960px) {
  .video-container-selfie-videos {
    grid-template-columns: 1.5fr 1fr;

  }
}

@media (max-width: 768px) {
  .video-container-selfie-videos {
    grid-template-columns: 1fr;
  }

  #purchase .purchase {
    padding: 8rem 0rem 5rem 0rem !important;
  }
}


/* MAKE A PURCHASE */

#purchase {
/* background: radial-gradient(circle, rgba(184, 84, 109, 1) 0%, rgba(116, 32, 52, 1) 100%); */
 background-image: url(../images/bg/purchase-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#purchase .purchase {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 0rem 0rem 0rem;
}

#purchase .purchase .purchase_card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  /* background: #fff; */
  padding: 1rem;
  border-radius: 20px;
}

#purchase .purchase .purchase_img {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#purchase .purchase .purchase_img img {

  max-width: 100%;
  width: 25vw;
}

#purchase .purchase .purchase_btn a {
  display: inline-block;
  background-color: var(--main-color);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 50px;
  border: 2px solid var(--main-color);
  transition: all .3s ease-in-out;
}

#purchase .purchase .purchase_card .purchase_btn a:hover {
  background-color: transparent;
  color: var(--main-color);
}

@media (max-width: 768px) {
  #purchase .purchase .purchase_img img {
    max-width: 100%;
    width: 100%;
  }
  #purchase {
/* background: radial-gradient(circle, rgba(184, 84, 109, 1) 0%, rgba(116, 32, 52, 1) 100%); */
 background-image: url(../images/bg/purchase-bg-phone375.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
}

/* 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 {
  /* background-image: url(../images/bg/contact-bg.png); */
  background-color: var(--header);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.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(--nav_sticky);
  /*#a06f76;*/
  color: var(--header);
  font-size: 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#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(--nav_sticky);
}

#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(--black);
}

/* #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;
  box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.30),
    inset -4px -4px 8px rgba(255,255, 255, 1);
}

/* #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;*/
  box-shadow:
    4px 4px 8px rgba(0, 0, 0, 0.30),
    -4px -4px 8px rgba(247, 238, 229, 0.8);
  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(--nav-color);
  /*#a06f76;*/
  color: var(--main-color);
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  box-shadow:
    4px 4px 8px rgba(0, 0, 0, 0.30),
    -4px -4px 8px rgba(247, 238, 229, 0.8);
  transition: .6s ease;
  margin-top: 1rem;
}

input[type=submit]:hover {
  color: var(--black);
  box-shadow:
    inset 4px 4px 8px rgba(0, 0, 0, 0.30),
    inset -4px -4px 8px rgba(247, 238, 229, 0.8);
}

#contact .wpcf7-submit {
  color: var(--black);
  width: 150px;
  border: none;
  border-radius: 50px;
  background: var(--header);
  font-size: 16px;
   box-shadow:
     4px 4px 8px rgba(0, 0, 0, 0.30),
     -4px -4px 8px rgba(255, 255, 255, 1);
}

#contact .wpcf7-submit:hover {
  color: var(--nav_sticky);
  box-shadow:
    inset 4px 4px 8px rgba(0, 0, 0, 0.30),
    inset -4px -4px 8px rgba(255, 255, 255, 1);

}

#contact .screen-reader-response {
  color: var(--black);
}

#contact .wpcf7-response-output {
  display: none !important;
}
.hidden-fields-container{
    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(--nav_sticky);
}

.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(--header);
}

.footer-container p {
  color: var(--header);
  margin-bottom: 0rem !important;
}

#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: #000;
}

.video-container .video-list .video-item:hover {
  background: #dbdbdb;
}

.video-container .video-list .video-item.active {
  background: rgb(204, 255, 204);
}

.video-description {
  margin-top: 10px;
  color: #fff;
}

@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);
}