html,
body {
  overflow-x: hidden;
}

:root {
  --primary: #675b35;
  --secondary: #2f4858;
  --text: #2f4858;
  --font-primary: "Jost";
  --font-secondary: "Cardo";
}

/* HERO SECTION */

@media (min-width: 768px) {
  .cvb-video-obj {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100% !important;
    min-height: 100% !important;
    width: auto !important;
  }

  .cvb-wrapper iframe.cvb-video-obj {
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    pointer-events: none;
  }

  .cvb-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
  }
  .cvb-desktop-visible,
  .cvb-mobile-visible {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  .cvb-mobile-visible {
    display: none;
  }
  .cvb-video-obj {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 767px) {
  .cvb-desktop-visible {
    display: none !important;
  }
  .cvb-mobile-visible {
    display: block !important;
  }
}

.cvb-wrapper {
  position: relative;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.cvb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.cvb-sound-toggle {
  position: absolute;
  bottom: 30px;
  right: 30px;
  cursor: pointer;
  color: #fff;
  background: rgb(0 0 0 / 36%);
  padding: 10px 20px;
  border-radius: 50px;
  z-index: 9;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cvb-sound-toggle:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.05);
}

.cvb-sound-toggle svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  display: block;
}

.cvb-sound-toggle .icon-on {
  display: none;
}
.cvb-sound-toggle .icon-off {
  display: block;
}

.cvb-sound-toggle.is-unmuted .icon-on {
  display: block;
}
.cvb-sound-toggle.is-unmuted .icon-off {
  display: none;
}

.cvb-sound-toggle:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.05);
}

/* END wHERO SECTION */

/* HEADER */
.header-socials {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

.social-icon {
  color: var(--primary);
  font-size: 16px;
  transition: opacity 0.3s ease;
}

.social-icon:hover {
  opacity: 0.6;
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--primary);
}

.luxury-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-left,
.header-right {
  width: 30%;
  display: flex;
  align-items: center;
}

.header-center {
  width: 40%;
  text-align: center;
}

.header-center img {
  max-height: 100px;
  width: auto;
}

.panel-toggle {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-right: 20px;
}
.panel-toggle span {
  width: 25px;
  height: 2px;
  background: #333;
  transition: 0.3s;
}

.header-breadcrumbs {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0;
}

.header-breadcrumbs a {
  color: var(--primary);
  font-weight: 500;
}

p#breadcrumbs {
  margin: 0;
}

.header-breadcrumbs .header-breadcrumbs a {
  color: var(--primary);
  text-decoration: none;
}

.side-panel {
  position: fixed;
  font-family: var(--font-primary);
  top: 0;
  left: -350px;
  width: 350px;
  height: 100vh;
  background: #fff;
  z-index: 10000;
  transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  padding: 60px 40px;
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.05);
  overflow-y: auto;
}

.side-panel.open {
  left: 0;
}

#panel-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
#panel-overlay.active {
  visibility: visible;
  opacity: 1;
}

.panel-logo {
  margin-bottom: 40px;
  text-align: center;
}
.panel-menu ul {
  list-style: none;
  padding: 0;
}
.panel-menu li {
  margin: 20px 0;
}
.panel-menu a {
  font-size: 22px;
  text-decoration: none;
  color: var(--primary);
}

.book-now-btn {
  display: inline-block;
  margin-top: 40px;
  padding: 12px 30px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  letter-spacing: 2px;
  font-size: 14px;
}

.header-right {
  justify-content: flex-end;
}

.panel-toggle svg {
  width: 40px;
  height: 40px;
  transform: rotate(180deg);
}

.panel-toggle svg path {
  fill: var(--primary);
  color: var(--primary);
}

body.home .header-breadcrumbs {
  display: none;
}

.side-panel .panel-logo a.custom-logo-link {
  display: flex;
}

.side-panel .panel-logo a.custom-logo-link img.custom-logo {
  max-height: 150px;
  object-fit: contain;
  object-position: left;
}

.panel-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 40px;
  font-weight: 200;
  cursor: pointer;
}

.book-now-btn:hover {
  background-color: var(--secondary);
  color: white !important;
}

.book-now-btn {
  position: relative;
  display: inline-block !important;
  text-transform: uppercase;
  margin-top: 40px;
  padding: 12px 30px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  letter-spacing: 2px;
  font-size: 14px;
  z-index: 1;
  transition: all 0.4s ease;
  cursor: pointer;
  overflow: hidden;
}

.book-now-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--secondary);
  transition: all 0.4s ease;
  z-index: -1;
}

.book-now-btn:hover::before {
  left: 0;
}

.book-now-btn:hover {
  border-color: transparent;
}

/* Loader Overlay */
.cvb-loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
  transition: opacity 0.5s ease;
}

/* Pulse Logo Styling */
.cvb-pulse-logo {
  max-width: 80px !important;
  height: auto;
  animation: cvbPulse 1.5s ease-in-out infinite;
}

/* Pulse Animation Keyframes */
@keyframes cvbPulse {
  0% {
    transform: scale(0.95);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(0.95);
    opacity: 0.7;
  }
}

/* Contact info hidden state */
.panel-contact-info {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 0;
  text-align: left;
}

/* Shown state after clicking Book Now */
.panel-contact-info.show {
  max-height: 200px;
  opacity: 1;
  margin-top: 20px;
}

.contact-item {
  margin-bottom: 12px;
}

.contact-item a {
  text-decoration: none;
  color: var(--secondary);
  font-size: 15px;
  letter-spacing: 1px;
  font-weight: 500;
}

.book-now-btn {
  cursor: pointer;
  display: block;
  text-align: center;
}

/* END HEADER */

.main-header {
  position: absolute;
  z-index: 9;
  background: #ffffffba;
}

.flat-button a.book-now-btn {
  background: transparent;
  border-bottom: 1px solid var(--secondary);
  color: var(--secondary);
}

.flat-button a.book-now-btn:hover {
  background: transparent;
}

/* Gallery  */
.rcf-project-swiper {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.rcf-project-swiper .swiper-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

.rcf-project-swiper .swiper-button-next,
.rcf-project-swiper .swiper-button-prev {
  color: #fff !important;
  background: rgba(0, 0, 0, 0.3);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  z-index: 10;
}
.rcf-project-swiper .swiper-button-next::after,
.rcf-project-swiper .swiper-button-prev::after {
  font-size: 16px;
  font-weight: bold;
}
.rcf-project-swiper .swiper-pagination-bullet-active {
  background: #fff;
}

.elementor-widget-luxury_contact_button .contact-item a {
  text-align: center;
}

@media (max-width: 1024px) {
  .rcf-project-swiper .swiper-slide img {
    height: 450px;
  }
}
@media (max-width: 768px) {
  .rcf-project-swiper .swiper-slide img {
    height: 350px;
  }
}
/* End Gallery */

/* Rooms Archive */

.room-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  font-family: var(--font-primary);
}
.room-card {
  background: #fff;
  text-align: left;
}
.room-thumbnail img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.room-content {
  padding: 20px 0;
}

.room-card a.room-thumbnail {
  display: block;
  overflow: hidden;
}

.room-card a.room-thumbnail img {
  display: block;
  transition: 0.3s ease-in-out;
  height: 250px;
  width: 100%;
  object-fit: cover;
}

.room-card a.room-thumbnail:hover img {
  transform: scale(1.05);
}

.room-title {
  font-size: 25px;
  margin: 0;
  color: var(--primary);
  font-weight: 600;
}

.room-short-desc {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
  padding: 20px 0;
}

.room-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0px 0 20px 0;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.feature-item img {
  width: 20px;
  height: 20px !important;
  opacity: 1;
}

.feature-item span {
  font-size: 15px;
  color: var(--text);
}

.room-view-details {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none !important;
  color: var(--text);
  transition: border-color 0.3s;
  padding: 10px 20px;
  border-bottom: 1px solid var(--text);
}
.room-view-details:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.gallery-single-room .swiper-slide img {
  height: 600px !important;
  object-fit: cover;
  width: 100%;
}

.gallery-single-room .elementor-swiper-button {
  color: #fff !important;
  background: rgba(0, 0, 0, 0.3);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.elementor-slideshow__title {
  display: none !important;
}

.related-rooms-section {
  position: relative;
  padding: 0 60px;
}

.related-rooms-section .swiper-button-prev {
  left: 0;
}

.related-rooms-section .swiper-button-next {
  right: 0;
}

.related-rooms-section .swiper-button-next:after,
.related-rooms-section .swiper-button-prev:after {
  font-size: 40px;
  color: #655b36;
}

.related-rooms-section .room-short-desc {
  display: none;
}

.related-rooms-section .room-features-list {
  display: none;
}

.related-rooms-section a.room-view-details {
  display: none;
}

.related-rooms-section .room-title {
  font-size: 22px;
}

.our-services a.room-view-details {
  display: none;
}

.our-services a.room-thumbnail {
  pointer-events: none;
}

.our-services .room-card a.room-thumbnail img {
  height: 350px;
}

.luxury-btn-left .contact-item a {
  text-align: left;
}

/* Accordian */
.luxury-accordion {
  border-top: 1px solid #e0e0e0;
  --font-primary: "Jost";
}

.acc-item {
  border-bottom: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.acc-header {
  padding: 25px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 15px;
}

.acc-title {
  font-family: var(--font-primary);
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  color: var(--secondary);
  letter-spacing: -0.5px;
}

.acc-icon-plus {
  position: relative;
  width: 16px;
  height: 16px;
  display: inline-block;
}

.acc-icon-plus::before,
.acc-icon-plus::after {
  content: "";
  position: absolute;
  background-color: var(--secondary);
  transition: transform 0.3s ease;
}

.acc-icon-plus::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  margin-top: -1px;
}

.acc-icon-plus::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  margin-left: -1px;
}

.acc-item.active .acc-icon-plus::after {
  transform: rotate(90deg);
  opacity: 0;
}

.acc-content {
  display: none;
  overflow: hidden;
  font-family: var(--font-primary);
}

.acc-inner {
  padding: 0 0 30px 31px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.6;
  max-width: 90%;
}

.acc-header:hover .acc-title {
  color: var(--secondary);
}
/* Accordian */

.contact-detais li.elementor-icon-list-item:first-of-type span {
  font-size: 20px;
}

.single-room-desc .book-now-btn {
  margin: 0;
}

.single-room-desc .contact-item a {
  text-align: left;
}

.our-services .room-short-desc {
  display: none;
}

/* Lang */
.languages {
  display: flex;
  align-items: center;
}

.header-right {
  gap: 30px;
}

.header-right .glink {
  display: flex;
}

.gtranslate_wrapper {
  display: flex;
  gap: 11px;
}

.header-right .glink img {
  border-radius: 50%;
}

.header-right .glink img {
  width: 20px;
  height: 20px;
  display: block;
  object-fit: cover;
}
/* Lang */

@media (max-width: 1024px) {
  .room-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-single-room .swiper-slide img {
    height: 400px !important;
  }

  .header-right .languages {
    display: none;
  }
}

@media (max-width: 768px) {
  .room-grid-container {
    grid-template-columns: 1fr;
  }
  .related-rooms-section {
    padding: 0 40px;
  }

  .main-header .header-center img {
    max-height: 80px;
  }

  .cvb-sound-toggle span.v-text {
    display: none;
  }

  .cvb-sound-toggle {
    padding: 10px;
  }

  body.home .main-header {
    position: relative;
  }

  .hero-video {
    position: relative;
  }

  .cvb-wrapper {
    height: 70vh;
  }

  .no-scroll {
    overflow: hidden;
    height: 100%;
  }

  .header-breadcrumbs {
    display: none;
  }

  .gallery-single-room .swiper-slide img {
    height: 300px !important;
  }

  .related-rooms .room-card a.room-thumbnail img {
    height: 280px;
  }

  .related-rooms-section {
    padding: 0 30px;
  }

  .related-rooms-section .swiper-button-next:after,
  .related-rooms-section .swiper-button-prev:after {
    font-size: 30px;
  }

  .related-rooms-section .room-title {
    text-align: center;
  }

  .related-rooms-section {
    padding: 40px 0;
  }

  .related-rooms-section .swiper-button-next:after,
  .related-rooms-section .swiper-button-prev:after {
    font-size: 30px;
  }

  .related-rooms-section .room-title {
    text-align: center;
  }

  .related-rooms-section .swiper-button-prev {
    left: auto !important;
    right: 55% !important;
  }

  .related-rooms-section .swiper-button-next {
    left: 55%;
    right: auto;
  }

  .related-rooms-section .swiper-button-next,
  .related-rooms-section .swiper-button-prev {
    position: absolute;
    top: auto;
    bottom: -20px;
  }

  .related-rooms-section .swiper-button-prev {
    left: auto;
    right: 40%;
  }

  .acc-title {
    font-size: 20px;
  }

  .menu-list-footer ul.elementor-icon-list-items {
    flex-direction: column;
    gap: 15px;
  }

  .related-rooms-section {
    padding-top: 0;
  }
}
