/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
  color: #272829;
}

a {
  color: #149ddd;
  text-decoration: none;
}

a:hover {
  color: #37b3ed;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #000000;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #ddb814;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px;
  transition: all ease-in-out 0.5s;
  z-index: 9997;
  transition: all 0.5s;
  padding: 0 15px;
  background: #fff;
  overflow-y: auto;
}

#header .profile img {
  margin: 15px auto;
  display: block;
  width: 100%;
}

#header .profile h1 {
  font-size: 24px;
  margin: 0;
  padding: 0;
  font-weight: 600;
  -moz-text-align-last: center;
  text-align-last: center;
  font-family: "Poppins", sans-serif;
}

#header .profile h1 a,
#header .profile h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .profile .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #212431;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#header .profile .social-links a:hover {
  background: #ddb814;
  color: #fff;
  text-decoration: none;
}

#main {
  margin-left: 300px;
}

@media (max-width: 1199px) {
  #header {
    left: -300px;
  }

  #main {
    margin-left: 0;
  }
  .slideshow-container {
    display: none;
    width: 0%;
  }
  .video-container {
    display: block;
    width: 100vw;
    height: 100vh;
  }

  #background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media (min-width: 1025px) {
  .slideshow-container {
    display: block;
  }
  .video-container {
    display: none;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu {
  padding: 30px 0 0 0;
}

.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
}

.nav-menu a,
.nav-menu a:focus {
  display: flex;
  align-items: center;
  color: #000000;
  padding: 12px 15px;
  margin-bottom: 8px;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 600;
}

.nav-menu a i,
.nav-menu a:focus i {
  font-size: 24px;
  padding-right: 8px;
  color: #6f7180;
}

.nav-menu a:hover,
.nav-menu .active,
.nav-menu .active:focus,
.nav-menu li:hover > a {
  text-decoration: none;
  color: #000000;
}

.nav-menu a:hover i,
.nav-menu .active i,
.nav-menu .active:focus i,
.nav-menu li:hover > a i {
  color: #ddb814;
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  background-color: #ddb814;
  color: #fff;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  border-radius: 50px;
  cursor: pointer;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active #header {
  left: 0;
}

/* --------------------------------------------------------------
# Hero Section
 --------------------------------------------------------------*/
#hero {
  width: 100vw;
  height: 100vh;
  padding: 0;
}

@keyframes slide {
  0% {
    background-image: url(./slides/slideshow.jpg);
  }
  25% {
    background-image: url(./slides/slideshow.jpg);
  }
  50% {
    background-image: url(./slides/slideshow-1.jpg);
  }
  100% {
    background-image: url(./slides/slideshow-2.jpg);
  }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {
    font-size: 11px;
  }
}

img {
  max-width: 100%;
  height: 100vh;
  vertical-align: middle;
}

/* Slideshow container */
.slideshow-container {
  width: 100%;
  height: 100vh;
  display: inline-block;
  background-image: url(./slides/slideshow.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  animation: slide 12s ease-in-out infinite;
}

@media (min-width: 1024px) {
  .slideshow-container {
    background-attachment: fixed;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background: #fff;
}

.section-title {
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #000000;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #ddb814;
  bottom: 0;
  left: 0;
}

.section-title p {
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
  padding: 60px 0 0 300px;
}
.services .icon-box {
  margin-bottom: 20px;
}

.services .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  background: #ddb814;
  border-radius: 50%;
  transition: 0.5s;
  border: 1px solid #ddb814;
}

.services .icon i {
  color: #fff;
  font-size: 24px;
  line-height: 0;
}

.services .icon-box:hover .icon {
  background: #fff;
}

.services .icon-box:hover .icon i {
  color: #ddb814;
}

.services .title {
  margin-left: 80px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 26px;
}

.services .title a {
  transition: 0.5s;
  color: #343a40;
}
.services .title a span {
  color: #ddb814;
}

.services .title a:hover span {
  color: #343a40;
}

.services .title a:hover {
  color: #ddb814;
}
.booking .title {
  margin-top: 40px;
}
.price-list-title {
  text-align: center;
  font-size: 30px;
  color: #343a40;
}
.price-list-wrapper {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
}

.price-list ul {
  list-style-type: none;
  padding: 0;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  border-bottom: 1px solid #d3d3d3;
  padding-bottom: 5px;
}

.price-list .category {
  font-weight: bold;
  color: #343a40;
  margin-top: 10px;
}

.price-list .item {
  color: #343a40;
}

.price-list .price {
  color: #ddb814;
  font-weight: bold;
}

.book-now-btn {
  background-color: #343a40;
  color: #fff;
  padding: 10px 20px;
  font-size: 18px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: block;
  transition: 0.5s;
  margin: 20px 130px 20px auto;
}

.book-now-btn a {
  color: #fff;
}
.book-now-btn:hover {
  background-color: #ddb814; /* Change background color on hover */
}

/*--------------------------------------------------------------

# Parallax
--------------------------------------------------------------*/
.wrapper {
  height: 100vh;
  margin-top: 100px;
  display: flex;
  overflow: hidden;
}

.parallax-content {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
  height: 100%;
  width: 65vw;
  margin-left: 120px;
}
.parallax-content-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
  height: 100%;
  width: 90vw;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 30px;
  color: #ddb814;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.about .content ul strong {
  margin-right: 10px;
}

.about .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: #ddb814;
  line-height: 0;
}

.about .content p:last-child {
  margin-bottom: 0;
}
.abouth3 {
  display: flex;
  justify-content: center;
  align-items: center;
}

/*--------------------------------------------------------------

# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 35px auto;
  list-style: none;
  text-align: center;
  background: rgb(108 117 125 / 20%);
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #272829;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #ddb814;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.portfolio .portfolio-wrap .portfolio-links {
  opacity: 1;
  left: 0;
  right: 0;
  bottom: -60px;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
  display: flex;
  justify-content: center;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  font-size: 28px;
  text-align: center;
  background: #ddb814;
  transition: 0.3s;
  width: 100%;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  background: #ddb814;
  opacity: 0.5;
}

.portfolio .portfolio-wrap .portfolio-links a + a {
  border-left: 1px solid #ddb814;
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-links {
  opacity: 1;
  bottom: 0;
}
/* .portfolio-item {
  display: none;
}
.portfolio-item:nth-child(1) {
  display: block;
}
.portfolio-item:nth-child(2) {
  display: block;
}
.portfolio-item:nth-child(3) {
  display: block;
}
.portfolio-item:nth-child(4) {
  display: block;
}
.portfolio-item:nth-child(5) {
  display: block;
}
.portfolio-item:nth-child(6) {
  display: block;
}
.portfolio-links {
  display: block;
}
.btncontainer {
  display: flex;
  justify-content: center;
  align-items: center;
}
.btnview {
  border: none;
  border-radius: 5px;
  width: 150px;
  padding: 6px;
  font-size: 20px;
  background-color: #ddb814;
} */
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  padding-bottom: 130px;
}

.contact .info {
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .info i {
  font-size: 20px;
  color: #ddb814;
  float: left;
  width: 44px;
  height: 44px;
  background: #dff3fc;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #050d18;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #173b6c;
}
.schedule {
  padding: 30px;
  margin-left: 100px;
  background: #fff;
  width: 80%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.schedule h2 {
  font-weight: bold;
  text-align: center;
  padding-bottom: 60px;
  margin-top: 10px;
}

.schedule-days {
  display: flex;
  flex-direction: column;
}

.schedule-day {
  display: flex;
  justify-content: space-between;
  padding: 12px;
  border-bottom: 1px solid #ddd;
}

.day {
  font-weight: bold;
}

.hours {
  font-weight: normal;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  padding: 15px;
  color: #f4f6fd;
  font-size: 14px;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 300px;
  z-index: 9999;
  background: #fff;
  color: #000000;
}

#footer .copyright {
  text-align: center;
  width: 100%;
}

@media (max-width: 1024px) {
  .wrapper {
    display: none;
  }
  #portfolio {
    background-color: black;
    color: white;
    h2 {
      color: white;
    }
    .section-title h2::after {
      background: #ddb814;
    }
  }
  .portfolio #portfolio-flters li {
    color: white;
  }
  #contact {
    background-color: white;
  }
  .parallax-content {
    margin-left: 0px;
  }
  .services {
    background-color: black;
    padding: 60px 0 0 0px;
  }
  .services h2 {
    color: white;
  }
  .price-list-wrapper {
    border: 5px #ddb814 solid;
    background-color: black;
  }
  .price-list .category {
    color: #ddb814;
  }
  .price-list li .item {
    color: white;
  }
  .booking .title a {
    color: white;
  }
  .book-now-btn {
    background-color: #ddb814;
  }
  #about {
    background-color: black;
  }
  .about h2 {
    color: white;
  }
  .row li p {
    color: white;
  }
  .schedule {
    margin-left: 0px;
    width: 100%;
    background-color: black;
  }

  .schedule h2 {
    padding-bottom: 50px;
  }
  .schedule-days .hours {
    color: white;
  }
  .schedule-days .day {
    color: #ddb814;
  }
  #contact {
    background-color: black;
  }
  .contact h2 {
    color: white;
  }
  .contact .info {
    background-color: black;
  }
  .info .address h4,
  .info .email h4,
  .info .phone h4 {
    color: #ddb814;
  }
  .info .address p,
  .info .email p,
  .info .phone p {
    color: white;
  }
  #footer {
    background-color: black;
    padding-left: 0;
  }
  #footer .copyright {
    color: white;
  }

  .back-to-top {
    background: white;
  }
  .back-to-top i {
    color: black;
  }
}

@media (max-width: 1199px) {
  #footer {
    position: static;
    width: auto;
    padding-right: 20px 15px;
  }
}
