
/*------------------------------------*\
    Table of Contents
\*------------------------------------*/

/*
1. VARIABLES
2. GENERAL TYPOGRAPHY
  2.1 General Styles
  2.2 Background Color
  2.3 Section
    - Section Paddings
    - Section Margins
    - Section Title
  2.4 Buttons
    - Primary Buttons
    - Outline Buttons
    - Button Hover Effects
3. CONTENT ELEMENTS
  - Dropdown
  - Form
  - Svg Color
  - Swiper
  - Modal Video
  - Preloader
4. SITE STRUCTURE
  4.1 Header
  4.2 Billboard
  4.3 Rooms Section
  4.4 Services Section
5. PAGES STYLE
  5.1 About Page
  5.2 Blog Page
  5.3 Booking Page
  5.4 Gallery Page
  5.5 Reviews Page
  5.6 FAQs Page
  5.7 Room Page
  5.8 Offers Page
*/

/*--------------------------------------------------------------
/** 1. VARIABLES
--------------------------------------------------------------*/
:root {
  --primary-color: #D16806;
  --secondary-color: #F9F6F3;
  --black-color: #1A1A1A;
  --text-color: #353535;
  --title-color: #353535;
  --nav-color: #353535;
  --gray-color: #777F81;
  --light-color: #fdfdfd;
  --loader-first-color:#D16806;
  --loader-second-color:#ECB27B;
  --loader-third-color:#f7dac1;

  /* Bootstrap color-scheme */
  --bs-dark-rgb: 80, 80, 80;
  --bs-gray-100: #EAE5DD;
  --bs-gray-300: #DCDCDC;
  --bs-light-rgb: rgba(255, 255, 255, 1);
  --bs-body-color-rgb: 53, 53, 53;
  --bs-primary-rgb: 209, 104, 6;
  --bs-secondary-rgb: 249, 246, 243;
}

@font-face {
  font-family: 'Baskerville';
  font-style: normal;
  src: local('Baskerville'), url('./font/BaskervilleBT.woff') format('woff');
}

@font-face {
  font-family: 'Sora';
  font-style: normal;
  src: local('Sora'), url('./font/Sora.ttf') format('truetype'); /* Ganti 'ttf' dengan 'truetype' */
}


/* Fonts */
:root {
  --heading-font: "Baskerville";
  --body-font: "Sora";
}

/*----------------------------------------------*/
/* 2. GENERAL TYPOGRAPHY
/*----------------------------------------------*/

/* 2.1 General Styles
/*----------------------------------------------*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
}

body {
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 164%;
  letter-spacing: 0.32px;
  color: var(--text-color);
  margin: 0;
}

p {
  color: var(--text-color);
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

a:hover {
  color: var(--primary-color);
}

.text-light {
  color: var(--light-color) !important;
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-black {
  color: var(--black-color) !important;
}

/* 2.2 Background Color
/*----------------------------------------------*/
.bg-light {
  background-color: var(--light-color) !important;
}

.bg-secondary {
  background-color: var(--secondary-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-gray {
  background-color: var(--bs-gray-100) !important;
}

.border-primary{
  border:1px solid var(--primary-color) !important;
  border-color:var(--primary-color) !important;
}

.fs-14 {
  font-size: 14px;
}

/*--------------------------------------------------------------
/** 2.3 Section
--------------------------------------------------------------*/

/* - Section Padding
--------------------------------------------------------------*/
.padding-small {
  padding-top: 3em;
  padding-bottom: 3em;
}

.padding-medium {
  padding-top: 5em;
  padding-bottom: 5em;
}

.padding-large {
  padding-top: 8em;
  padding-bottom: 8em;
}

.padding-side {
  padding-left: 6rem;
  padding-right: 6rem;
}

@media (max-width: 1400px) {
  .padding-side {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

@media (max-width: 1200px) {
  .padding-side {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

@media (max-width: 992px) {
  .padding-side {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media (max-width: 768px) {
  .padding-side {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .padding-small {
    padding-top: 2em;
    padding-bottom: 2em;
  }
  
  .padding-medium {
    padding-top: 3em;
    padding-bottom: 3em;
  }
  
  .padding-large {
    padding-top: 5em;
    padding-bottom: 5em;
  }
}

@media (max-width: 576px) {
  .padding-side {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .padding-small {
    padding-top:2em;
    padding-bottom:2em;
  }
  
  .padding-medium {
    padding-top: 3em;
    padding-bottom: 3em;
  }
  
  .padding-large {
    padding-top: 4em;
    padding-bottom: 4em;
  }
}

/* - Section Margin
--------------------------------------------------------------*/
.margin-small {
  margin-top: 8.125em;
  margin-bottom: 8.125em;
}

.margin-medium {
  margin-top: 10em;
  margin-bottom: 10em;
}

.margin-large {
  margin-top: 12em;
  margin-bottom: 12em;
}

/* - Section Title
--------------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--title-color);
  font-family: var(--heading-font);
  text-transform: capitalize;
  font-weight: 400;
}

.logo-footer{
  width:300px
}
/* Animation */
@media (min-width: 200px) {
  .animate {
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
  }
}

/* Animate Slide */
@keyframes slide {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }

  100% {
    transform: translateY(0rem);
    opacity: 1;
  }

  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
}

@-webkit-keyframes slide {
  0% {
    -webkit-transform: transform;
    -webkit-opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    -webkit-opacity: 1;
  }

  0% {
    -webkit-transform: translateY(1rem);
    -webkit-opacity: 0;
  }
}

.slide {
  -webkit-animation-name: slide;
  animation-name: slide;
}

/* - Aspect Ratio */
.ratio-1x1 {
  aspect-ratio: 1/1;
  object-fit: cover;
}

.ratio-4x3 {
  aspect-ratio: 4/3;
  object-fit: cover;
}

.ratio-4x5 {
  aspect-ratio: 4/5;
  object-fit: cover;
}

.ratio-16x9 {
  aspect-ratio: 16/9;
  object-fit: cover;
}

.ratio-21x9 {
  aspect-ratio: 21/9;
  object-fit: cover;
}

/* Video */
.header-left {
  position: relative;
  padding-right: 0px;
}

@media (max-width: 767px) {
  .header-left {
    display: none;
  }
}

.header-left .video-popup {
  position: absolute;
  bottom: 110px;
  left: -15px;
}

@media (max-width: 991px) {
  .header-left .video-popup {
    bottom: 60px;
  }
}

.header-left .video-popup .watch {
  color: #fff;
  padding-left: 50px;
}

.header-right {
  padding-left: 20%;
  padding-right: 9.5%;
}

.header-right h1 {
  margin-bottom: 30px;
}

@media (max-width: 1680px) {
  .header-right {
    padding-left: 17%;
    padding-right: 6%;
  }
}

@media (max-width: 1440px) {
  .header-right {
    padding-left: 12%;
    padding-right: 11%;
  }
}

@media (max-width: 1380px) {
  .header-right {
    padding-left: 10%;
  }
}

@media (max-width: 1199px) {
  .header-right {
    padding-left: 12%;
    padding-right: 6%;
  }
}

@media (max-width: 1024px) {
  .header-right {
    padding-left: 5%;
  }
}

@media (max-width: 991px) {
  .header-right {
    padding-left: 15%;
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .header-right {
    position: relative;
    background-size: cover;
    padding: 100px 120px;
    z-index: 1;
  }

  .header-right:after {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #000;
    content: "";
    opacity: .2;
    z-index: -1;
  }

  .header-right h1 {
    color: var(--light-color);
    margin-bottom: 30px;
  }

  .header-right p {
    color: var(--light-color);
  }

  .header-right .main_btn {
    color: var(--light-color);
    margin-top: 20px;
  }

  .header-right .main_btn img {
    -webkit-filter: invert(1);
    -moz-filter: invert(1);
    -ms-filter: invert(1);
    -o-filter: invert(1);
    filter: invert(1);
  }
}

@media (max-width: 570px) {
  .header-right {
    padding: 80px 15px;
  }
}

.header-right h1 {
  font-size: 60px;
  line-height: 1;
  font-weight: 400;
}

@media (max-width: 1440px) {
  .header-right h1 {
    font-size: 45px;
  }
}

@media (max-width: 991px) {
  .header-right h1 {
    font-size: 35px;
  }
}

@media (max-width: 1440px) {
  .header-right h1 br {
    display: none;
  }
}

.header-right .main_btn {
  margin-top: 20px;
}

.video-play-button {
  position: relative;
  box-sizing: content-box;
  display: inline-block;
  width: 32px;
  height: 44px;
  border-radius: 50%;
  padding: 30px 8px 18px 28px;
}

@media (max-width: 991px) {
  .video-play-button {
    padding: 40px 8px 18px 28px;
  }
}

.video-play-button:before,
.video-play-button:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

@media (max-width: 991px) {

  .video-play-button:before,
  .video-play-button:after {
    width: 70px;
    height: 70px;
  }
}

.video-play-button:before {
  z-index: 0;
  -webkit-animation: pulse-border 2000ms ease-out infinite;
  -moz-animation: pulse-border 2000ms ease-out infinite;
  -o-animation: pulse-border 2000ms ease-out infinite;
  animation: pulse-border 2000ms ease-out infinite;
  background: var(--light-color);
}

.video-play-button:after {
  z-index: 1;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
  box-shadow: 0px 10px 30px rgba(39, 0, 110, 0.3);
  background: var(--primary-color);
}

.video-play-button span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 20px solid var(--light-color);
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}

@media (max-width: 991px) {
  .video-play-button span {
    border-left: 15px solid var(--light-color);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
  }
}

@-webkit-keyframes pulse-border {
  0% {
    -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1);
    -moz-transform: translate(-50%, -50%) translateZ(0) scale(1);
    -ms-transform: translate(-50%, -50%) translateZ(0) scale(1);
    -o-transform: translate(-50%, -50%) translateZ(0) scale(1);
    transform: translate(-50%, -50%) translateZ(0) scale(1);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    -moz-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    -ms-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    -o-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    opacity: 1;
  }
}

@-moz-keyframes pulse-border {
  0% {
    -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1);
    -moz-transform: translate(-50%, -50%) translateZ(0) scale(1);
    -ms-transform: translate(-50%, -50%) translateZ(0) scale(1);
    -o-transform: translate(-50%, -50%) translateZ(0) scale(1);
    transform: translate(-50%, -50%) translateZ(0) scale(1);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    -moz-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    -ms-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    -o-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    opacity: 1;
  }
}

@-o-keyframes pulse-border {
  0% {
    -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1);
    -moz-transform: translate(-50%, -50%) translateZ(0) scale(1);
    -ms-transform: translate(-50%, -50%) translateZ(0) scale(1);
    -o-transform: translate(-50%, -50%) translateZ(0) scale(1);
    transform: translate(-50%, -50%) translateZ(0) scale(1);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    -moz-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    -ms-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    -o-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    opacity: 1;
  }
}

@keyframes pulse-border {
  0% {
    -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1);
    -moz-transform: translate(-50%, -50%) translateZ(0) scale(1);
    -ms-transform: translate(-50%, -50%) translateZ(0) scale(1);
    -o-transform: translate(-50%, -50%) translateZ(0) scale(1);
    transform: translate(-50%, -50%) translateZ(0) scale(1);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    -moz-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    -ms-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    -o-transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    transform: translate(-50%, -50%) translateZ(0) scale(1.5);
    opacity: 1;
  }
}

/*--------------------------------------------------------------
/** 2.4 Buttons
--------------------------------------------------------------*/
.btn {
  --bs-btn-padding-x: 2.4rem;
  --bs-btn-padding-y: 1rem;
  --bs-btn-font-size: 1rem;
  --bs-btn-font-weight: 400;
  text-transform: capitalize;
  border-radius: 10px;
  transition: all 0.4s ease-in-out;
}

/* - Primary Buttons
--------------------------------------------------------------*/
.btn-primary {
  --bs-btn-color: var(--black-color);
  --bs-btn-bg: var(--secondary-color);
  --bs-btn-border-color: var(--secondary-color);
  --bs-btn-hover-color: var(--text-color);
  --bs-btn-hover-bg: var(--secondary-color);
  --bs-btn-hover-border-color: var(--secondary-color);
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: var(--text-color);
  --bs-btn-active-bg: var(--secondary-color);
  --bs-btn-active-border-color: var(--secondary-color);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--text-color);
  --bs-btn-disabled-bg: var(--secondary-color);
  --bs-btn-disabled-border-color: var(--secondary-color);
}

/* - Outline Buttons
--------------------------------------------------------------*/
.btn-outline-primary {
  --bs-btn-color: var(--secondary-color);
  --bs-btn-border-color: var(--secondary-color);
  --bs-btn-hover-color: var(--text-color);
  --bs-btn-hover-bg: var(--secondary-color);
  --bs-btn-hover-border-color: var(--secondary-color);
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: var(--text-color);
  --bs-btn-active-bg: var(--secondary-color);
  --bs-btn-active-border-color: var(--secondary-color);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--secondary-color);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: var(--secondary-color);
  --bs-gradient: none;
}

/* - Button Hover Effects
------------------------------------------------------------- */
.btn-arrow {
  position: relative;
  transition: background-color 300ms ease-out;
}

.btn-arrow span {
  display: inline-block;
  position: relative;
  transition: all 300ms ease-out;
  will-change: transform;
}

.btn-arrow:hover span {
  transform: translate3d(-0.7rem, 0, 0);
  color: var(--primary-color);
}

.btn-arrow svg {
  position: absolute;
  right: 0;
  opacity: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 300ms ease-out;
  will-change: right, opacity;
}

.btn-arrow:hover svg {
  opacity: 1;
  right: -1.6rem;
}

/*--------------------------------------------------------------
/** 3. CONTENT ELEMENTS
--------------------------------------------------------------*/

/* Dropdown
------------------------------------------------------------- */
.dropdown-item {
  color: var(--text-color);
  text-transform: capitalize;
}

.dropdown-item.active,
.dropdown-item:hover,
.dropdown-item:active {
  color: var(--text-color);
  background-color: var(--secondary-color);
}

/* Form
------------------------------------------------------------- */
.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  outline: 0;
  box-shadow: none;
}

input,
select,
textarea {
  border-color: var(--text-color);
  outline: 0;
  box-shadow: none;
}

select:focus {
  box-shadow: none;
}

/* Swiper
------------------------------------------------------------- */

/* Room */
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}

.room-pagination .swiper-pagination-bullet {
  width: 18px;
  height: 18px;
  background-color: var(--primary-color);
}

.room-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}

/* Gallery */
.main-slider-button-next.swiper-button-disabled,
.main-slider-button-prev.swiper-button-disabled {
  opacity: .35;
  cursor: auto;
  pointer-events: none;
}

.main-slider-button-next {
  right: 50px;
}

.main-slider-button-prev {
  left: 50px;
}

/* Modal Video Override
------------------------------------------------------------- */
.modal-dialog {
  margin: auto;
  height: 100vh;
  display: flex;
  align-items: center;
}

.modal-content {
  padding: 0;
  background-color: #f5f3ef;
  border: none;
  border-radius: 0
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 50%; /* col-md-6 */
  }
}

@media (min-width: 992px) {
  .modal-dialog {
    max-width: 41.6667%; /* col-lg-5 */
  }
}

@media (min-width: 1200px) {
  .modal-dialog {
    max-width: 33.3333%; /* col-xl-4 */
  }
}

/* Preloader
------------------------------------------------------------- */
.preloader {
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 111;
  background: #fff;
}

.loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--loader-first-color);
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

.loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--loader-second-color);
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}

.loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--loader-third-color);
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*----------------------------------------------*/
/* 4. SITE STRUCTURE */
/*----------------------------------------------*/

/* 4.1 Header
/*----------------------------------------------*/
a.nav-link {
  text-transform: capitalize;
  color: var(--nav-color);
}

a.nav-link:focus {
  color: var(--text-color);
}

a.nav-link.active,
a.nav-link:hover {
  color: var(--primary-color) !important;
  outline: none;
}

@media (max-width: 999px) {
  a.nav-link {
    font-size: 30px;
    padding: 15px 0 15px 0 !important;
  }
}

.banner {
  height: 450px;
}

/* 4.2 Billboard
/*----------------------------------------------*/

/* Date */
div.datetime-container,
div.datetime-container * {
  box-sizing: border-box;
  font-family: var(--body-font);
}

div.datetime-container button.date,
div.datetime-container button.time {
  background-color: transparent;
  border: 1px solid #E9E9E9;
  border-radius: 8px;
  text-transform: capitalize;
  text-align: start;
  padding: 8px 20px;
  color: var(--gray-color);
  letter-spacing: 0.1rem;
}

div.datetime-container button>span {
  display: inline-block;
  margin: 0 -6px;
}

div.datetime-container button span.week-day {
  font-size: 16px;
  text-align: right;
}

div.datetime-container button span.week-day::after {
  content: ",";
  display: inline-block;
}

div.datetime-container button span.month {
  font-size: 16px;
  text-align: right;
}

div.datetime-container button span.hours,
div.datetime-container button span.month-day {
  font-size: 16px;
  text-align: center;
  width: 45px;
}

.month br {
  display: none;
}

@media (max-width: 1500px) {
  div.picker {
    width: max-content;
  }
}

/* 4.3 Rooms Section
/*----------------------------------------------*/
.room-item img.post-image {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.room-item:hover img.post-image {
  opacity: 0.5;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.product-description {
  opacity: 0;
  bottom: -125px;
  transition: all 0.5s ease-in-out;
}

.room-item:hover .product-description {
  opacity: 1;
  bottom: 20px;
}

@media only screen and (min-width:770px) and (max-width: 1400px) {
  .product-description {
    bottom: -180px;
  }
}

/* 4.4 Offers
/*----------------------------------------------*/
.offers-post .offers-img {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.offers-post:hover img.offers-img {
  opacity: 0.8;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}



/* 4.5 Blog Section
/*----------------------------------------------*/
.event-post img.event-img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.event-post:hover img.event-img {
  opacity: 0.5;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/*----------------------------------------------*/
/* 5. PAGES STYLE */
/*----------------------------------------------*/

/*--------------------------------------------------------------
5.1 About Page
--------------------------------------------------------------*/

#slider .swiper-pagination-bullet {
  width: 15px;
  /* Lebar bullet */
  height: 15px;
  /* Tinggi bullet */
  background: white;
  /* Warna bullet */
  opacity: 1;
  /* Membuat bullet lebih jelas */
}

 #slider .swiper-pagination-bullet-active {
  background: var(--primary-color);
  /* Warna bullet saat aktif */
  transform: scale(1.3);
  /* Perbesar bullet yang aktif */
}
#slider .swiper-slide {
  height: 85vh; /* Agar gambar mengikuti tinggi layar */
  background-size: cover;
  background-position: center;
}

#slider .hero-overlay::before {
  position: absolute;
  content: "";
  background-image: -ms-linear-gradient(90deg, rgba(38, 47, 90, 0) 0%, rgba(26, 7, 1, 0.99) 85%);
  background-image: -moz-linear-gradient(90deg, rgba(38, 47, 90, 0) 0%, rgba(26, 7, 1, 0.99) 85%);
  background-image: -webkit-linear-gradient(90deg, rgba(38, 47, 90, 0) 0%, rgba(26, 7, 1, 0.99) 85%);
  opacity: 0.569;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}

@media (min-width: 928px) {
  #slider .custom-position {
    right: 10%;
    top: 55%;
    width: 30%;
    max-width: 100%;
    position: absolute;
  }
 }
 

/* Untuk tampilan mobile */
@media (max-width: 768px) {
  #slider .custom-position {
    position: relative;
    margin: 0 10px;
  }
  #slider .swiper-slide {
    height: 75vh; /* Agar gambar mengikuti tinggi layar */
    background-size: cover;
    background-position: center;
  }
  .about-pt-0{
    padding-top: 0px !important;
  }

}
.breadcrumb-item+.breadcrumb-item::before {
  color: var(--text-color);
}

svg.play-icon {
  animation: play 1.5s alternate infinite ease-in;
}

@keyframes play {
  0% {
    transform: scale(.8);
  }

  100% {
    transform: scale(1.1);
  }
}

/*--------------------------------------------------------------
5.2 Blog Page
--------------------------------------------------------------*/
.pagination {
  --bs-pagination-color: var(--black-color);
  --bs-pagination-hover-color: #fff;
  --bs-pagination-hover-bg: var(--primary-color);
  --bs-pagination-hover-border-color: var(--primary-color);
  --bs-pagination-focus-color: #fff;
  --bs-pagination-focus-bg: var(--primary-color);
  --bs-pagination-focus-box-shadow: none;
  --bs-pagination-active-bg: var(--primary-color);
  --bs-pagination-active-border-color: var(--primary-color);
}

/*--------------------------------------------------------------
5.5 Reviews Page
--------------------------------------------------------------*/
.reviews-components {
  box-shadow: 0px 12px 90px rgba(12, 12, 12, 0.06);
}

iconify-icon.quote {
  font-size: 60px;
  color: var(--primary-color);
}

.rate {
  color: var(--primary-color);
}

/*--------------------------------------------------------------
5.6 FAQs Page
--------------------------------------------------------------*/

/* Accordion Style Override */
.logo {
  height: 50px;
}

.accordion {
  --bs-accordion-border-color: var(--primary-color);
  --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
 
  --bs-accordion-border-radius: 0px;
}

.accordion-button::after {
  content: "\f0d7"; /* fas fa-caret-down */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  background-image: none !important; /* Hapus ikon default Bootstrap */
  display: inline-block;
  transition: transform 0.3s ease;
  color: var(--primary-color); /* Warna default */
}

/* Saat accordion terbuka */
.accordion-button:not(.collapsed)::after {
  content: "\f0d8"; /* fas fa-caret-up */
  transform: rotate(0deg); /* Pastikan tidak ada rotasi */
  color: var(--primary-color); /* Pastikan warna berubah */
}

.accordion-header {
  margin-bottom: 0;
  border-top: 1px dashed var(--primary-color);
}

.accordion-button {
  font-family: var(--heading-font);
  font-weight: var(--heading-font-weight);
  color: var(--heading-color);
  line-height: var(--heading-line-height);
  letter-spacing: 0.065rem;
  text-transform: uppercase;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: var(--heading-color);
  background-color: transparent;
  box-shadow: none;
}

/*--------------------------------------------------------------
5.7 Rooms Page
--------------------------------------------------------------*/
#rooms .swiper-backface-hidden .swiper-slide img {
  width: 100%;
  /* height: 450px; */
  /* object-fit: cover; */
}

#rooms .swiper .rooms-btn-swiper:after {
  font-size: 30px;
}

#rooms .swiper .rooms-scrollbar {
  background: white;
}

#rooms .swiper .swiper-scrollbar-drag {
  background: var(--primary-color);
}

#rooms .room-text {
  padding: 40px 40px 40px 20px;
}

.rooms-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: white;
}

.rooms-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}

.ci,
.ci svg {
  width: 30px
}


.btn-fly{
  position: fixed;
  background-color: var(--primary-color);  /* Warna tombol */
  color: white;
  border: none;
  padding: 8px 14px;
  font-size: 18px;
  height: 50px;
  width:50px;
  right:40px;
  cursor: pointer;
}

@media (max-width: 576px) {
  .btn-fly{
    right:20px
  }
}


.btn-whatsapp{
  bottom: 100px;  /* Posisi dari bawah */
  display: block;
  font-size: 24px;
}

.scroll-to-top {
  bottom: 40px;  /* Posisi dari bawah */
  display: none;  /* Tombol disembunyikan pertama kali */
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.scroll-to-top:hover {
  background-color: var(--primary-color);  /* Warna tombol saat hover */
}