@charset "UTF-8";
.custom-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
}
.custom-header .header-contents {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 10px 80px;
}
.custom-header .header-contents .website-logo .custom-logo {
  width: 100px;
  height: auto;
  filter: brightness(0) invert(1);
}
.custom-header .header-contents .header-links {
  color: #f9eac3;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
}
.custom-header .mobile-group {
  display: none;
  justify-content: space-between;
  align-items: center;
}
.custom-header .mobile-group .custom-logo {
  width: 70px;
  height: auto;
  filter: brightness(0) invert(1);
}
.custom-header .mobile-group .btn-mobile {
  background-color: #f9eac3;
  border-color: #663c24;
  color: #663c24;
}
.custom-header .header-mobile {
  display: none;
}

.custom-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #663c24;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.3s ease;
}
.custom-header.sticky .header-contents .website-logo .custom-logo {
  width: 80px;
}
.custom-header.sticky .mobile-group .custom-logo {
  width: 60px;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
/* Large devices (desktops, ≥992px and <1200px) */
/* Medium devices (tablets, ≥768px and <992px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .custom-header .header-contents {
    padding: 10px 20px;
  }
  .custom-header .header-contents .header-links {
    font-size: 16px;
  }
}
/* Small devices (landscape phones, ≥576px and <768px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .custom-header .header-contents {
    display: none;
  }
  .custom-header .mobile-group {
    display: flex;
  }
  .custom-header .header-mobile {
    display: block;
  }
  .custom-header .header-mobile .custom-logo-link {
    width: 100%;
    display: flex;
    margin-bottom: 20px;
  }
  .custom-header .header-mobile .custom-logo-link .custom-logo {
    width: 100px;
    height: auto;
    margin: 0 auto;
  }
  .custom-header .header-mobile .header-contents-mobile {
    display: flex;
    flex-direction: column;
  }
  .custom-header .header-mobile .header-contents-mobile .header-links {
    color: #663c24;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    padding: 12px 0px;
    position: relative;
    display: block;
    padding-top: 12px; /* space for the line */
  }
  .custom-header .header-mobile .header-contents-mobile .header-links::before {
    content: "";
    position: absolute;
    top: 0; /* 👈 puts the line on top */
    left: 50%; /* move to center */
    transform: translateX(-50%); /* pull back by half width */
    width: 200px;
    height: 1px; /* thickness of line */
    background: #ddd; /* color of line */
  }
  .custom-header .header-mobile .header-contents-mobile .hidden-items {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
  }
  .custom-header .header-mobile .header-contents-mobile .hidden-items .sub-header-links {
    color: #663c24;
    text-decoration: none;
    font-size: 16px;
    text-align: center;
    padding: 5px 0px;
  }
}
/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .custom-header .header-contents {
    display: none;
  }
  .custom-header .mobile-group {
    display: flex;
  }
  .custom-header .header-mobile {
    display: block;
    width: 100%;
  }
  .custom-header .header-mobile .custom-logo-link {
    width: 100%;
    display: flex;
    margin-bottom: 20px;
  }
  .custom-header .header-mobile .custom-logo-link .custom-logo {
    width: 100px;
    height: auto;
    margin: 0 auto;
  }
  .custom-header .header-mobile .header-contents-mobile {
    display: flex;
    flex-direction: column;
  }
  .custom-header .header-mobile .header-contents-mobile .header-links {
    color: #663c24;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    padding: 12px 0px;
    position: relative;
    display: block;
    padding-top: 12px; /* space for the line */
  }
  .custom-header .header-mobile .header-contents-mobile .header-links::before {
    content: "";
    position: absolute;
    top: 0; /* 👈 puts the line on top */
    left: 50%; /* move to center */
    transform: translateX(-50%); /* pull back by half width */
    width: 200px;
    height: 1px; /* thickness of line */
    background: #ddd; /* color of line */
  }
  .custom-header .header-mobile .header-contents-mobile .hidden-items {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
  }
  .custom-header .header-mobile .header-contents-mobile .hidden-items .sub-header-links {
    color: #663c24;
    text-decoration: none;
    font-size: 16px;
    text-align: center;
    padding: 3px 0px;
  }
}
.dashboard-page h1 {
  color: red;
}

.global-banner-section {
  padding: 145px 0px 50px 0px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  text-align: center;
  height: 500px;
  transition: background-image 0.5s ease;
  display: flex;
  align-items: center;
}
.global-banner-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #000000 0%, rgba(0, 0, 0, 0.45) 200px);
  z-index: 9;
}
.global-banner-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.1490196078) 170px);
  z-index: 9;
}
.global-banner-section > * {
  position: relative;
  z-index: 9;
}
.global-banner-section .banner-title {
  font-family: "Cinzel", serif;
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45), 0 8px 24px rgba(0, 0, 0, 0.25);
  /* The Trick: This creates the "Inline" look of Castellar */
  color: #f9eac3;
}
.global-banner-section .banner-text {
  font-size: 20px;
  color: white;
  padding: 0px 0px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

/* Large devices (desktops, ≥992px and <1200px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .global-banner-section {
    padding: 100px 0px 50px 0px;
    height: 450px;
  }
  .global-banner-section .banner-title {
    font-size: 40px;
  }
  .global-banner-section .banner-text {
    font-size: 18px;
  }
}
/* Medium devices (tablets, ≥768px and <992px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .global-banner-section {
    padding: 90px 0px 50px 0px;
    height: 400px;
  }
  .global-banner-section .banner-title {
    font-size: 35px;
    line-height: 40px;
  }
  .global-banner-section .banner-text {
    font-size: 17px;
  }
}
/* Small devices (landscape phones, ≥576px and <768px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .global-banner-section {
    padding: 90px 0px 50px 0px;
    height: 350px;
  }
  .global-banner-section .banner-title {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 5px;
  }
  .global-banner-section .banner-text {
    font-size: 16px;
  }
}
/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .global-banner-section {
    padding: 90px 0px 50px 0px;
    height: 330px;
  }
  .global-banner-section .banner-title {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 5px;
  }
  .global-banner-section .banner-text {
    font-size: 14px;
  }
}
.home-page {
  position: relative;
}
.home-page .banner-section {
  padding: 145px 0px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  text-align: center;
  height: 700px;
  transition: background-image 0.5s ease;
  display: flex;
  align-items: center;
}
.home-page .banner-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #000000 0%, rgba(0, 0, 0, 0.1411764706) 200px);
  z-index: 9;
}
.home-page .banner-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.1490196078) 170px);
  z-index: 9;
}
.home-page .banner-section > * {
  position: relative;
  z-index: 9999;
}
.home-page .banner-section .banner-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.home-page .banner-section .banner-title {
  font-family: "Cinzel", serif;
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45), 0 8px 24px rgba(0, 0, 0, 0.25);
  /* The Trick: This creates the "Inline" look of Castellar */
  color: #f9eac3;
  margin-bottom: 15px;
}
.home-page .banner-section .banner-title.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  animation: fadeSlide 0.6s ease;
}
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.home-page .banner-section .banner-text {
  font-size: 20px;
  color: white;
  padding: 0px 0px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.home-page .banner-section .banner-button {
  font-size: 18px;
  margin-top: 40px;
  padding: 10px 35px;
  text-transform: uppercase;
  background-color: #f9eac3;
  color: #663c24;
  border-color: #f9eac3;
  font-weight: 500;
  border-radius: 0px;
}
.home-page .banner-section .banner-button:hover {
  scale: 1.05;
}
.home-page .carousel-fade .carousel-item {
  transition: opacity 1.5s ease-in-out;
}
.home-page .about-section {
  background-color: white;
  padding: 100px 0px;
}
.home-page .about-section .section-holder {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.home-page .about-section .global-section-subtitle {
  background-color: #f9eac3;
  color: #663c24;
  width: max-content;
  margin-bottom: 8px;
  padding: 3px 10px;
  border-radius: 30px;
}
.home-page .about-section .global-section-title {
  color: #663c24;
  margin-bottom: 20px;
}
.home-page .about-section .sub-section:last-child {
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-page .about-section .text-normal p {
  margin-bottom: 20px;
}
.home-page .about-section .image-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  width: max-content;
}
.home-page .about-section .image-wrapper .image-holder {
  border-radius: 3px;
  overflow: hidden;
  max-width: 250px;
  height: 350px;
}
.home-page .about-section .image-wrapper .image-holder:first-child {
  margin-top: 50px;
}
.home-page .about-section .image-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.home-page .rooms-section {
  padding: 100px 0px;
  background-color: #f9eac3;
}
.home-page .rooms-section .global-section-subtitle {
  background-color: #663c24;
  color: #f9eac3;
  width: max-content;
  margin-bottom: 8px;
  padding: 3px 10px;
  border-radius: 30px;
}
.home-page .rooms-section .global-section-title {
  color: #663c24;
  margin-bottom: 20px;
}
.home-page .rooms-section .rooms-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  /* Create a zoomable layer on top of the background */
  /* zoom only the pseudo background */
}
.home-page .rooms-section .rooms-wrapper .room-holder {
  flex: 0 0 calc(33.3333333333% - 15px);
  height: 300px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  border-radius: 3px;
}
.home-page .rooms-section .rooms-wrapper .room-holder .details-holder {
  position: relative;
  z-index: 2;
  width: 100%;
  color: white;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
}
.home-page .rooms-section .rooms-wrapper .room-holder .details-holder .room-price {
  font-size: 14px;
  background-color: rgba(255, 255, 255, 0.7490196078);
  color: black;
  width: max-content;
  padding: 1px 10px;
  border-radius: 30px;
  margin-bottom: 5px;
}
.home-page .rooms-section .rooms-wrapper .room-holder .details-holder .room-title {
  font-family: "Cinzel", serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 25px;
}
.home-page .rooms-section .rooms-wrapper .room-holder .details-holder .hidden-details {
  border-top: solid 0px white;
  height: 0px;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  margin-top: 10px;
}
.home-page .rooms-section .rooms-wrapper .room-holder .details-holder .hidden-details .hidden-holder {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 10px;
}
.home-page .rooms-section .rooms-wrapper .room-holder .details-holder .hidden-details .hidden-holder .hidden-text {
  margin-right: 20px;
  font-size: 14px;
}
.home-page .rooms-section .rooms-wrapper .room-holder .details-holder .hidden-details .hidden-holder .hidden-text i {
  margin-right: 5px;
}
.home-page .rooms-section .rooms-wrapper .room-holder:hover .hidden-details {
  border-top: solid 1px white;
  height: 30px;
  opacity: 1;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.home-page .rooms-section .rooms-wrapper .room-holder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit; /* copies background-image from parent */
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  z-index: 1;
}
.home-page .rooms-section .rooms-wrapper .room-holder:hover::before {
  transform: scale(1.1);
}

/* Large devices (desktops, ≥992px and <1200px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .home-page .banner-section {
    height: 600px;
    padding: 145px 0px 90px 0px;
  }
  .home-page .banner-section .banner-title {
    font-size: 40px;
    margin-bottom: 0px;
  }
  .home-page .banner-section .banner-text {
    font-size: 18px;
  }
  .home-page .about-section {
    padding: 90px 0px;
  }
  .home-page .about-section .image-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }
  .home-page .about-section .image-wrapper .image-holder {
    max-width: 375px;
    height: 250px;
  }
  .home-page .about-section .image-wrapper .image-holder:first-child {
    margin-top: 0px;
  }
  .home-page .rooms-section {
    padding: 90px 0px;
  }
  .home-page .rooms-section .rooms-wrapper .room-holder {
    height: 250px;
  }
  .home-page .rooms-section .rooms-wrapper .room-holder .details-holder {
    padding: 20px;
  }
  .home-page .rooms-section .rooms-wrapper .room-holder .details-holder .hidden-details .hidden-holder .hidden-text {
    margin-right: 10px;
    font-size: 14px;
  }
}
/* Medium devices (tablets, ≥768px and <992px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .home-page .banner-section {
    height: 500px;
    padding: 145px 0px 90px 0px;
  }
  .home-page .banner-section .banner-title {
    font-size: 35px;
    margin-bottom: 0px;
  }
  .home-page .banner-section .banner-text {
    font-size: 18px;
  }
  .home-page .about-section {
    padding: 80px 0px;
  }
  .home-page .about-section .section-holder {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
  .home-page .about-section .image-wrapper {
    gap: 15px;
  }
  .home-page .about-section .image-wrapper .image-holder {
    max-width: 315px;
    height: 400px;
  }
  .home-page .rooms-section {
    padding: 80px 0px;
  }
  .home-page .rooms-section .rooms-wrapper .room-holder {
    height: 250px;
    flex: 0 0 calc(50% - 15px);
  }
  .home-page .rooms-section .rooms-wrapper .room-holder .details-holder {
    padding: 20px;
  }
  .home-page .rooms-section .rooms-wrapper .room-holder .details-holder .hidden-details .hidden-holder .hidden-text {
    margin-right: 10px;
    font-size: 14px;
  }
}
/* Small devices (landscape phones, ≥576px and <768px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .home-page .banner-section {
    height: 400px;
    padding: 145px 0px 90px 0px;
  }
  .home-page .banner-section .banner-title {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 0px;
  }
  .home-page .banner-section .banner-text {
    font-size: 16px;
  }
  .home-page .banner-section .banner-button {
    font-size: 16px;
    padding: 8px 30px;
  }
  .home-page .about-section {
    padding: 70px 0px;
  }
  .home-page .about-section .section-holder {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
  .home-page .rooms-section {
    padding: 70px 0px;
  }
  .home-page .rooms-section .rooms-wrapper .room-holder {
    height: 250px;
    flex: 0 0 calc(100% - 15px);
  }
  .home-page .rooms-section .rooms-wrapper .room-holder .details-holder {
    padding: 20px;
  }
  .home-page .rooms-section .rooms-wrapper .room-holder .details-holder .hidden-details .hidden-holder .hidden-text {
    margin-right: 10px;
    font-size: 14px;
  }
}
/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .home-page .banner-section {
    height: auto;
    padding: 130px 0px 90px 0px;
  }
  .home-page .banner-section .banner-title {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 5px;
  }
  .home-page .banner-section .banner-text {
    font-size: 16px;
  }
  .home-page .banner-section .banner-button {
    font-size: 16px;
    padding: 8px 30px;
    margin-top: 30px;
  }
  .home-page .about-section {
    padding: 60px 0px;
  }
  .home-page .about-section .section-holder {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
  .home-page .about-section .image-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
    width: 100%;
  }
  .home-page .about-section .image-wrapper .image-holder {
    max-width: 100%;
    height: 170px;
  }
  .home-page .about-section .image-wrapper .image-holder:first-child {
    margin-top: 0px;
  }
  .home-page .rooms-section {
    padding: 60px 0px;
  }
  .home-page .rooms-section .rooms-wrapper .room-holder {
    height: 220px;
    flex: 0 0 calc(100% - 15px);
  }
  .home-page .rooms-section .rooms-wrapper .room-holder .details-holder {
    padding: 15px;
  }
  .home-page .rooms-section .rooms-wrapper .room-holder .details-holder .room-title {
    font-size: 16px;
  }
  .home-page .rooms-section .rooms-wrapper .room-holder .details-holder .room-price {
    font-size: 13px;
  }
  .home-page .rooms-section .rooms-wrapper .room-holder .details-holder .hidden-details {
    border-top: solid 1px white;
    height: 30px;
    opacity: 1;
  }
  .home-page .rooms-section .rooms-wrapper .room-holder .details-holder .hidden-details .hidden-holder .hidden-text {
    margin-right: 9px;
    font-size: 12px;
  }
}
.services-section {
  background-color: white;
  padding: 100px 0px;
}
.services-section .global-section-subtitle {
  background-color: #663c24;
  color: #f9eac3;
  width: max-content;
  margin-bottom: 8px;
  padding: 3px 10px;
  border-radius: 30px;
}
.services-section .global-section-title {
  color: #663c24;
  margin-bottom: 20px;
}
.services-section .services-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  /* Center the last two items */
}
.services-section .services-wrapper .service-holder {
  width: calc((100% - 60px) / 2); /* 3 per row */
  border: solid 1px #663c24;
  padding: 20px;
  height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 5px;
  color: black;
  text-decoration: none;
  background-color: white;
}
.services-section .services-wrapper .service-holder:hover {
  background-color: #663c24;
  color: #f9eac3;
}
.services-section .services-wrapper .service-holder:hover .service-icon {
  background-color: #f9eac3;
  color: #663c24;
}
.services-section .services-wrapper .service-holder:hover .service-title {
  color: #f9eac3;
}
.services-section .services-wrapper .service-holder:hover .service-excerpt {
  color: white;
}
.services-section .services-wrapper .service-holder .service-icon {
  color: #f9eac3;
  background-color: #663c24;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  margin-bottom: 5px;
  font-size: 16px;
}
.services-section .services-wrapper .service-holder .service-title {
  font-family: "Cinzel", serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  /* The Trick: This creates the "Inline" look of Castellar */
  color: #663c24;
}
.services-section .services-wrapper .service-holder .service-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Show only 6 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.services-section .services-wrapper .service-holder:nth-last-child(2) {
  grid-column: 2;
}
.services-section .services-wrapper .service-holder:last-child {
  grid-column: 3;
}
.services-section .services-toggle {
  display: none;
}

.service-page-section {
  background-color: white;
  padding: 100px 0px;
}
.service-page-section .services-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.service-page-section .services-wrapper .service-holder {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  border: solid 1px gainsboro;
  border-radius: 3px;
  background-color: whitesmoke;
  scroll-margin-top: 200px;
  /* Every even item */
}
.service-page-section .services-wrapper .service-holder .thumbnail-holder img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.service-page-section .services-wrapper .service-holder .details-holder {
  padding: 50px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-page-section .services-wrapper .service-holder .details-holder .service-content .wp-block-spacer {
  display: none;
}
.service-page-section .services-wrapper .service-holder .details-holder .service-content .wp-block-gallery {
  display: none;
}
.service-page-section .services-wrapper .service-holder .details-holder .service-content .wp-block-image {
  display: none;
}
.service-page-section .services-wrapper .service-holder .details-holder .service-content .wp-block-cover {
  display: none;
}
.service-page-section .services-wrapper .service-holder .details-holder .service-title {
  color: #663c24;
  margin-bottom: 5px;
}
.service-page-section .services-wrapper .service-holder:nth-child(even) .thumbnail-holder {
  order: 2;
}
.service-page-section .services-wrapper .service-holder:nth-child(even) .details-holder {
  order: 1;
  padding-left: 50px;
}

/* Large devices (desktops, ≥992px and <1200px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .services-section {
    padding: 90px 0px;
  }
  .service-page-section {
    padding: 90px 0px;
  }
}
/* Medium devices (tablets, ≥768px and <992px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .services-section {
    padding: 80px 0px;
  }
  .services-section .services-wrapper {
    gap: 20px;
  }
  .services-section .services-wrapper .service-holder {
    width: calc((100% - 60px) / 2);
  }
  .service-page-section {
    padding: 80px 0px;
  }
  .service-page-section .services-wrapper .service-holder {
    /* Every even item */
  }
  .service-page-section .services-wrapper .service-holder .details-holder {
    padding: 40px 20px;
  }
  .service-page-section .services-wrapper .service-holder .details-holder .service-content p {
    display: -webkit-box;
    -webkit-line-clamp: 15; /* Show only 6 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .service-page-section .services-wrapper .service-holder .details-holder .service-content .wp-block-spacer {
    display: none;
  }
  .service-page-section .services-wrapper .service-holder .details-holder .service-content .wp-block-gallery {
    display: none;
  }
  .service-page-section .services-wrapper .service-holder:nth-child(even) .details-holder {
    padding-left: 30px;
  }
}
/* Small devices (landscape phones, ≥576px and <768px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .services-section {
    padding: 70px 0px;
  }
  .services-section .services-wrapper {
    gap: 10px;
  }
  .services-section .services-wrapper .service-holder {
    width: calc((100% - 10px) / 2);
  }
  .service-page-section {
    padding: 70px 0px;
  }
  .service-page-section .services-wrapper .service-holder {
    display: flex;
    flex-direction: column;
    /* Every even item */
  }
  .service-page-section .services-wrapper .service-holder .thumbnail-holder {
    height: 200px;
  }
  .service-page-section .services-wrapper .service-holder .details-holder {
    padding: 20px 20px;
    padding-top: 0px;
  }
  .service-page-section .services-wrapper .service-holder .details-holder .service-content p {
    display: -webkit-box;
    -webkit-line-clamp: 15; /* Show only 6 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .service-page-section .services-wrapper .service-holder:nth-child(even) .thumbnail-holder {
    order: 1;
  }
  .service-page-section .services-wrapper .service-holder:nth-child(even) .details-holder {
    order: 2;
    padding-left: 20px;
  }
}
/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .services-section {
    padding: 60px 0px;
  }
  .services-section .services-wrapper {
    gap: 15px;
  }
  .services-section .services-wrapper .service-holder {
    height: 180px;
    width: calc((100% - 10px) / 1);
    transition: opacity 0.4s ease, transform 0.4s ease, max-height 0.4s ease, margin 0.4s ease, padding 0.4s ease;
  }
  .services-section .services-wrapper .service-holder:nth-child(n+4) {
    opacity: 0;
    transform: translateY(20px);
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  .services-section .services-wrapper.show-all .service-holder {
    opacity: 1;
    transform: translateY(0);
    max-height: 500px;
    pointer-events: auto;
  }
  .services-section .services-toggle {
    display: block;
    margin: 0px auto 0;
    padding: 8px 30px;
    margin-top: 20px;
  }
  .service-page-section {
    padding: 60px 0px;
  }
  .service-page-section .services-wrapper .service-holder {
    display: flex;
    flex-direction: column;
    scroll-margin-top: 80px;
    /* Every even item */
  }
  .service-page-section .services-wrapper .service-holder .thumbnail-holder {
    height: 200px;
  }
  .service-page-section .services-wrapper .service-holder .details-holder {
    padding: 20px 20px;
    padding-top: 0px;
  }
  .service-page-section .services-wrapper .service-holder .details-holder .service-content p {
    display: -webkit-box;
    -webkit-line-clamp: 15; /* Show only 6 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .service-page-section .services-wrapper .service-holder:nth-child(even) .thumbnail-holder {
    order: 1;
  }
  .service-page-section .services-wrapper .service-holder:nth-child(even) .details-holder {
    order: 2;
    padding-left: 20px;
  }
}
.booking-page .booking-section {
  background-color: white;
  padding: 100px 0px;
}
.booking-page .booking-section .title-group .section-title {
  text-shadow: none;
  color: #663c24;
}
.booking-page .booking-section .form-wrapper {
  border: solid 1px gainsboro;
  padding: 50px;
  width: 95%;
  margin: 0 auto;
  margin-top: 50px;
  border-radius: 3px;
}
.booking-page .booking-section .form-wrapper .booking-segment {
  margin-bottom: 50px;
}
.booking-page .booking-section .form-wrapper .segment-title {
  background-color: #663c24;
  color: antiquewhite;
  width: max-content;
  padding: 5px 20px;
  margin-bottom: 15px;
  border-radius: 50px;
}
.booking-page .booking-section .form-wrapper .from-reminder {
  text-align: center;
  margin-bottom: 50px;
}
.booking-page .booking-section .form-wrapper .from-reminder br {
  display: none;
}
.booking-page .booking-section .form-wrapper .service-button-group p {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 8px;
}
.booking-page .booking-section .form-wrapper .service-button-group .btn-service {
  background-color: white;
  border: solid 1px #dee2e6;
  width: 100%;
}
.booking-page .booking-section .form-wrapper .service-button-group .active {
  background-color: #663c24;
  color: white;
  font-weight: 500;
}
.booking-page .booking-section .form-wrapper .avail-transport-service {
  display: none;
  margin-top: 20px;
}
.booking-page .booking-section .form-wrapper .privacy-policy-text {
  text-align: center;
}
.booking-page .booking-section .form-wrapper .privacy-policy-text br {
  display: none;
}
.booking-page .booking-section .form-wrapper .btn-reservation {
  background-color: #663c24;
  color: antiquewhite;
  width: 100%;
  margin-top: 50px;
  font-size: 18px;
  font-weight: 500;
  position: relative;
}

/* Large devices (desktops, ≥992px and <1200px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .booking-page .booking-section {
    padding: 90px 0px;
  }
}
/* Medium devices (tablets, ≥768px and <992px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .booking-page .booking-section {
    padding: 80px 0px;
  }
  .booking-page .booking-section .form-wrapper {
    width: 100%;
    margin-top: 30px;
  }
}
/* Small devices (landscape phones, ≥576px and <768px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .booking-page .booking-section {
    padding: 70px 0px;
  }
  .booking-page .booking-section .form-wrapper {
    width: 100%;
    margin-top: 20px;
    padding: 30px;
  }
}
/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .booking-page .booking-section {
    padding: 60px 0px;
  }
  .booking-page .booking-section .form-wrapper {
    width: 100%;
    margin-top: 0px;
    padding: 30px 20px;
  }
  .booking-page .booking-section .form-wrapper .segment-title {
    margin: 0 auto;
    margin-bottom: 15px;
    font-size: 14px;
  }
  .booking-page .booking-section .form-wrapper textarea {
    height: 300px;
    padding: 10px 15px;
  }
  .booking-page .booking-section .form-wrapper textarea::placeholder {
    color: #999;
    opacity: 1; /* Ensures Firefox displays the color properly */
  }
  .booking-page .booking-section .form-wrapper .btn-reservation {
    font-size: 14px;
  }
}
.rooms-page .all-rooms-section {
  background-color: white;
  padding: 100px 0px;
}
.rooms-page .all-rooms-section .rooms-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  /* MAIN CARD */
  /* BACKGROUND LAYER (ONLY THIS ZOOMS) */
  /* DARK OVERLAY */
  /* CONTENT MUST STAY ABOVE */
  /* ZOOM EFFECT */
  /* PRICE */
  /* TITLE */
  /* HIDDEN DETAILS */
}
.rooms-page .all-rooms-section .rooms-wrapper .room-holder {
  flex: 0 0 calc(33.3333333333% - 20px);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: 3px;
  overflow: hidden;
  color: black;
  border: solid 1px gainsboro;
}
.rooms-page .all-rooms-section .rooms-wrapper .room-holder .details-holder {
  position: relative;
  width: 100%;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  color: white;
  overflow: hidden;
  border-radius: 3px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.rooms-page .all-rooms-section .rooms-wrapper .excerp-holder {
  background-color: white;
  padding: 20px;
}
.rooms-page .all-rooms-section .rooms-wrapper .excerp-holder span {
  display: -webkit-box;
  -webkit-line-clamp: 5; /* Show only 6 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rooms-page .all-rooms-section .rooms-wrapper .room-holder .details-holder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.6s ease;
  z-index: 0;
}
.rooms-page .all-rooms-section .rooms-wrapper .room-holder .details-holder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  z-index: 1;
}
.rooms-page .all-rooms-section .rooms-wrapper .room-holder .details-holder > * {
  position: relative;
  z-index: 2;
}
.rooms-page .all-rooms-section .rooms-wrapper .room-holder .details-holder:hover::before {
  transform: scale(1.1);
}
.rooms-page .all-rooms-section .rooms-wrapper .room-price {
  font-size: 14px;
  background-color: rgba(255, 255, 255, 0.7490196078);
  color: black;
  width: max-content;
  padding: 1px 10px;
  border-radius: 30px;
  margin-bottom: 5px;
}
.rooms-page .all-rooms-section .rooms-wrapper .room-title {
  font-family: "Cinzel", serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 25px;
}
.rooms-page .all-rooms-section .rooms-wrapper .hidden-details {
  border-top: 1px solid rgba(255, 255, 255, 0);
  height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 10px;
  transition: all 0.3s ease;
}
.rooms-page .all-rooms-section .rooms-wrapper .hidden-details .hidden-holder {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 10px;
}
.rooms-page .all-rooms-section .rooms-wrapper .hidden-details .hidden-holder .hidden-text {
  margin-right: 20px;
  font-size: 14px;
}
.rooms-page .all-rooms-section .rooms-wrapper .hidden-details .hidden-holder .hidden-text i {
  margin-right: 5px;
}
.rooms-page .all-rooms-section .rooms-wrapper .room-holder:hover .hidden-details {
  border-top: 1px solid white;
  height: 30px;
  opacity: 1;
}

/* Large devices (desktops, ≥992px and <1200px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .rooms-page .all-rooms-section {
    padding: 90px 0px;
  }
  .rooms-page .all-rooms-section .rooms-wrapper {
    gap: 15px;
  }
  .rooms-page .all-rooms-section .rooms-wrapper .room-holder {
    flex: 0 0 calc(33.3333333333% - 10px);
  }
  .rooms-page .all-rooms-section .rooms-wrapper .hidden-details .hidden-holder .hidden-text {
    margin-right: 10px;
    font-size: 14px;
  }
}
/* Medium devices (tablets, ≥768px and <992px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .rooms-page .all-rooms-section {
    padding: 80px 0px;
  }
  .rooms-page .all-rooms-section .rooms-wrapper {
    gap: 20px;
  }
  .rooms-page .all-rooms-section .rooms-wrapper .room-holder {
    flex: 0 0 calc(50% - 10px);
  }
  .rooms-page .all-rooms-section .rooms-wrapper .hidden-details .hidden-holder .hidden-text {
    margin-right: 10px;
    font-size: 14px;
  }
}
/* Small devices (landscape phones, ≥576px and <768px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .rooms-page .all-rooms-section {
    padding: 70px 0px;
  }
  .rooms-page .all-rooms-section .rooms-wrapper {
    gap: 20px;
  }
  .rooms-page .all-rooms-section .rooms-wrapper .room-holder {
    flex: 0 0 calc(100% - 10px);
  }
  .rooms-page .all-rooms-section .rooms-wrapper .hidden-details .hidden-holder .hidden-text {
    margin-right: 10px;
    font-size: 14px;
  }
}
/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .rooms-page .all-rooms-section {
    padding: 25px 0px;
  }
  .rooms-page .all-rooms-section .rooms-wrapper {
    gap: 20px;
  }
  .rooms-page .all-rooms-section .rooms-wrapper .room-price {
    font-size: 13px;
  }
  .rooms-page .all-rooms-section .rooms-wrapper .room-title {
    font-size: 16px;
    line-height: 21px;
  }
  .rooms-page .all-rooms-section .rooms-wrapper .hidden-details {
    border-top: 1px solid white;
    height: 25px;
    opacity: 1;
    margin-top: 5px;
  }
  .rooms-page .all-rooms-section .rooms-wrapper .hidden-details .hidden-holder {
    margin-top: 5px;
  }
  .rooms-page .all-rooms-section .rooms-wrapper .hidden-details .hidden-holder .hidden-text {
    margin-right: 15px;
    font-size: 13px;
  }
  .rooms-page .all-rooms-section .rooms-wrapper .room-holder {
    flex: 0 0 calc(100% - 10px);
  }
}
.single-rooms-page .global-banner-section {
  padding: 150px 0px 50px 0px;
  height: 400px;
}
.single-rooms-page .room-details-section {
  background-color: white;
  padding: 100px 0px;
}
.single-rooms-page .room-details-section .partition-holder {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.single-rooms-page .room-details-section .partition-holder .details-holder .room-subtitle {
  background-color: #f9eac3;
  color: #663c24;
  width: max-content;
  margin-bottom: 8px;
  padding: 3px 10px;
  border-radius: 30px;
  font-weight: 500;
  margin-bottom: 20px;
}
.single-rooms-page .room-details-section .partition-holder .details-holder .hide-mobile {
  display: block;
}
.single-rooms-page .room-details-section .partition-holder .details-holder .show-mobile {
  display: none;
}
.single-rooms-page .room-details-section .partition-holder .details-holder .room-content p {
  margin-bottom: 20px;
}
.single-rooms-page .room-details-section .partition-holder .details-holder .btn-book {
  background-color: #663c24;
  color: #f9eac3;
  border: solid 1px #663c24;
  margin-top: 20px;
  width: 100%;
}
.single-rooms-page .room-details-section .partition-holder .details-holder .room-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #e9e9e9;
  padding: 10px 30px;
  margin-top: 20px;
  max-width: 100%;
  border-radius: 5px;
}
.single-rooms-page .room-details-section .partition-holder .details-holder .room-details .divider {
  border-right: solid 2px #b9b9b9;
  height: 15px;
}
.single-rooms-page .room-details-section .partition-holder .details-holder .room-details .text-tiny {
  font-size: 14px;
  margin-right: 20px;
}
.single-rooms-page .room-details-section .partition-holder .details-holder .room-details .text-tiny i {
  margin-right: 5px;
}
.single-rooms-page .room-details-section .partition-holder .details-holder .room-details .text-tiny span {
  margin-left: 5px;
}
.single-rooms-page .room-details-section .partition-holder .images-holder {
  position: relative;
  margin-left: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.single-rooms-page .room-details-section .partition-holder .images-holder .carousel-control-prev-icon {
  background-color: black;
  height: 3rem;
}
.single-rooms-page .room-details-section .partition-holder .images-holder .carousel-control-next-icon {
  background-color: black;
  height: 3rem;
}
.single-rooms-page .room-details-section .partition-holder .images-holder .carousel {
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
}
.single-rooms-page .room-details-section .partition-holder .images-holder .carousel-item {
  height: 600px;
}
.single-rooms-page .room-details-section .partition-holder .images-holder .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-rooms-page .room-details-section .partition-holder .images-holder .room-gallery-image {
  cursor: zoom-in;
}
.single-rooms-page #roomModalImage {
  max-height: 90vh;
  width: 100%;
  max-width: 100%;
  object-fit: contain;
}
.single-rooms-page #roomImageModal .modal-content {
  background: transparent;
  box-shadow: none;
}
.single-rooms-page #roomImageModal .modal-content .btn-close-white {
  z-index: 9;
  background-color: white;
  width: 30px;
  height: 30px;
}
.single-rooms-page #roomImageModal .modal-content .modal-body {
  margin: 0 auto;
}
.single-rooms-page .amenities-section {
  background-color: #f9eac3;
  padding: 100px 0px;
}
.single-rooms-page .amenities-section .global-section-subtitle {
  background-color: #663c24;
  color: #f9eac3;
  width: max-content;
  margin-bottom: 8px;
  padding: 3px 10px;
  border-radius: 30px;
}
.single-rooms-page .amenities-section .global-section-title {
  color: #663c24;
  margin-bottom: 20px;
}
.single-rooms-page .amenities-section .amenities-wrapper {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 15px;
}
.single-rooms-page .amenities-section .amenities-wrapper .amenity-holder {
  height: 150px;
  background-color: white;
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.single-rooms-page .amenities-section .amenities-wrapper .amenity-holder .amenity-icon img {
  width: 50px;
  height: auto;
  margin-bottom: 10px;
}
.single-rooms-page .amenities-section .show-amenities-btn {
  display: none;
}
.single-rooms-page .booking-modal .modal-dialog {
  max-width: 800px;
  padding: 0px 15px;
}
.single-rooms-page .booking-modal .modal-body .form-wrapper {
  padding: 15px 30px 30px 30px;
}
.single-rooms-page .booking-modal .modal-body .form-wrapper .booking-segment {
  margin-bottom: 50px;
}
.single-rooms-page .booking-modal .modal-body .form-wrapper .segment-title {
  background-color: #663c24;
  color: antiquewhite;
  width: max-content;
  padding: 5px 20px;
  margin-bottom: 15px;
  border-radius: 50px;
}
.single-rooms-page .booking-modal .modal-body .form-wrapper .from-reminder {
  text-align: center;
  margin-bottom: 50px;
}
.single-rooms-page .booking-modal .modal-body .form-wrapper .from-reminder br {
  display: none;
}
.single-rooms-page .booking-modal .modal-body .form-wrapper .privacy-policy-text {
  text-align: center;
}
.single-rooms-page .booking-modal .modal-body .form-wrapper .privacy-policy-text br {
  display: none;
}
.single-rooms-page .booking-modal .modal-body .form-wrapper #customerRoomReservation {
  background-color: antiquewhite;
  color: #663c24;
  font-weight: bold;
  pointer-events: none;
}
.single-rooms-page .booking-modal .modal-body .form-wrapper .btn-reservation {
  background-color: #663c24;
  color: antiquewhite;
  width: 100%;
  margin-top: 50px;
  font-size: 18px;
  font-weight: 500;
}

/* Large devices (desktops, ≥992px and <1200px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .single-rooms-page .global-banner-section {
    padding: 150px 0px 50px 0px;
    height: 350px;
  }
  .single-rooms-page .room-details-section {
    padding: 90px 0px;
  }
  .single-rooms-page .room-details-section .partition-holder .details-holder .room-details {
    padding: 10px 15px;
  }
  .single-rooms-page .room-details-section .partition-holder .details-holder .room-details .text-tiny {
    margin-right: 0px;
  }
  .single-rooms-page .room-details-section .partition-holder .details-holder .room-details .text-tiny span {
    margin-left: 1px;
  }
  .single-rooms-page .room-details-section .partition-holder .images-holder {
    margin-left: 20px;
  }
  .single-rooms-page .amenities-section {
    padding: 90px 0px;
  }
  .single-rooms-page .amenities-section .amenities-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
  }
}
/* Medium devices (tablets, ≥768px and <992px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .single-rooms-page .global-banner-section {
    padding: 150px 0px 50px 0px;
    height: 350px;
  }
  .single-rooms-page .room-details-section {
    padding: 80px 0px;
  }
  .single-rooms-page .room-details-section .partition-holder {
    grid-template-columns: repeat(1, 1fr);
  }
  .single-rooms-page .room-details-section .partition-holder .details-holder .room-details {
    padding: 10px 15px;
    justify-content: space-evenly;
  }
  .single-rooms-page .room-details-section .partition-holder .details-holder .room-details .text-tiny {
    margin-right: 0px;
  }
  .single-rooms-page .room-details-section .partition-holder .details-holder .room-details .text-tiny span {
    margin-left: 1px;
  }
  .single-rooms-page .room-details-section .partition-holder .images-holder {
    margin-left: 0px;
  }
  .single-rooms-page .room-details-section .partition-holder .images-holder .carousel-item {
    height: 500px;
  }
  .single-rooms-page .amenities-section {
    padding: 80px 0px;
  }
  .single-rooms-page .amenities-section .amenities-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
}
/* Small devices (landscape phones, ≥576px and <768px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .single-rooms-page .global-banner-section {
    padding: 150px 0px 50px 0px;
    height: 300px;
  }
  .single-rooms-page .room-details-section {
    padding: 70px 0px;
  }
  .single-rooms-page .room-details-section .partition-holder {
    grid-template-columns: repeat(1, 1fr);
  }
  .single-rooms-page .room-details-section .partition-holder .details-holder .room-details {
    padding: 10px 15px;
    justify-content: space-evenly;
  }
  .single-rooms-page .room-details-section .partition-holder .details-holder .room-details .text-tiny {
    margin-right: 0px;
  }
  .single-rooms-page .room-details-section .partition-holder .details-holder .room-details .text-tiny span {
    margin-left: 1px;
  }
  .single-rooms-page .room-details-section .partition-holder .images-holder {
    margin-left: 0px;
  }
  .single-rooms-page .room-details-section .partition-holder .images-holder .carousel-item {
    height: 400px;
  }
  .single-rooms-page .amenities-section {
    padding: 70px 0px;
  }
  .single-rooms-page .amenities-section .amenities-wrapper:not(.expanded) .amenity-holder:nth-child(n+10) {
    display: none;
  }
  .single-rooms-page .amenities-section .show-amenities-btn {
    display: block;
    margin: 0px auto 0;
    padding: 8px 30px;
    margin-top: 25px;
  }
  .single-rooms-page .amenities-section .amenities-wrapper.expanded + .show-amenities-btn {
    display: none;
  }
  .single-rooms-page .amenities-section .amenities-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}
/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .single-rooms-page .global-banner-section {
    padding: 150px 0px 50px 0px;
    height: 250px;
  }
  .single-rooms-page .room-details-section {
    padding: 30px 0px;
  }
  .single-rooms-page .room-details-section .partition-holder {
    grid-template-columns: repeat(1, 1fr);
  }
  .single-rooms-page .room-details-section .partition-holder .details-holder .hide-mobile {
    display: none;
  }
  .single-rooms-page .room-details-section .partition-holder .details-holder .show-mobile {
    display: block;
  }
  .single-rooms-page .room-details-section .partition-holder .details-holder .room-details {
    padding: 15px 15px;
    justify-content: space-evenly;
  }
  .single-rooms-page .room-details-section .partition-holder .details-holder .room-details .text-tiny {
    margin-right: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 70px;
    text-align: center;
    line-height: 15px;
    font-size: 13px;
  }
  .single-rooms-page .room-details-section .partition-holder .details-holder .room-details .text-tiny i {
    margin-right: 0px;
    margin-bottom: 5px;
  }
  .single-rooms-page .room-details-section .partition-holder .details-holder .room-details .text-tiny span {
    margin-left: 1px;
  }
  .single-rooms-page .room-details-section .partition-holder .images-holder {
    margin-left: 0px;
  }
  .single-rooms-page .room-details-section .partition-holder .images-holder .carousel-item {
    height: 300px;
  }
  .single-rooms-page .amenities-section {
    padding: 60px 0px;
  }
  .single-rooms-page .amenities-section .amenities-wrapper:not(.expanded) .amenity-holder:nth-child(n+10) {
    display: none;
  }
  .single-rooms-page .amenities-section .show-amenities-btn {
    display: block;
    margin: 0px auto 0;
    padding: 8px 30px;
    margin-top: 25px;
  }
  .single-rooms-page .amenities-section .amenities-wrapper.expanded + .show-amenities-btn {
    display: none;
  }
  .single-rooms-page .amenities-section .amenities-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .single-rooms-page .amenities-section .amenities-wrapper .amenity-holder {
    padding: 10px;
    text-align: center;
    height: 110px;
  }
  .single-rooms-page .amenities-section .amenities-wrapper .amenity-holder .amenity-icon img {
    width: 35px;
    height: auto;
    margin-bottom: 5px;
  }
  .single-rooms-page .amenities-section .amenities-wrapper .amenity-holder .amenity-text {
    line-height: 15px;
  }
  .single-rooms-page #roomImageModal .modal-content .btn-close-white {
    z-index: 9;
    background-color: white;
    width: 1em;
    height: 1em;
  }
  .single-rooms-page .booking-modal .modal-dialog {
    padding: 0px 0px;
  }
  .single-rooms-page .booking-modal .modal-body .form-wrapper {
    padding: 10px 0px;
  }
  .single-rooms-page .booking-modal .modal-body .form-wrapper .segment-title {
    margin: 0 auto;
    margin-bottom: 15px;
    font-size: 14px;
  }
  .single-rooms-page .booking-modal .modal-body .form-wrapper textarea {
    height: 300px;
    padding: 10px 15px;
  }
  .single-rooms-page .booking-modal .modal-body .form-wrapper textarea::placeholder {
    color: #999;
    opacity: 1; /* Ensures Firefox displays the color properly */
  }
  .single-rooms-page .booking-modal .modal-body .form-wrapper .btn-reservation {
    font-size: 14px;
  }
}
.privacy-page .policy-section {
  padding: 100px 0px;
}
.privacy-page .policy-section h3 {
  font-family: "Cinzel", serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #663c24;
  margin-bottom: 0;
  margin-top: 5px;
}

/* Large devices (desktops, ≥992px and <1200px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .privacy-page .policy-section {
    padding: 90px 0px;
  }
}
/* Medium devices (tablets, ≥768px and <992px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .privacy-page .policy-section {
    padding: 80px 0px;
  }
}
/* Small devices (landscape phones, ≥576px and <768px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .privacy-page .policy-section {
    padding: 70px 0px;
  }
}
/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .privacy-page .policy-section {
    padding: 60px 0px;
  }
}
.global-contact-section {
  padding: 100px 0px;
  background-color: white;
}
.global-contact-section .global-section-subtitle {
  background-color: #663c24;
  color: #f9eac3;
  width: max-content;
  margin: 0 auto;
  margin-bottom: 8px;
  padding: 3px 10px;
  border-radius: 30px;
}
.global-contact-section .title-group .section-title {
  color: #663c24;
  text-shadow: none;
}
.global-contact-section .title-group .section-description {
  color: black;
}
.global-contact-section .contact-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: max-content;
  margin: 0 auto;
  margin-top: 50px;
}
.global-contact-section .contact-wrapper .btn-call {
  background-color: #663c24;
  color: #f9eac3;
  border: solid 1px #663c24;
}
.global-contact-section .contact-wrapper .btn-call:hover {
  background-color: white;
  border: solid 1px #663c24;
  color: #663c24;
}
.global-contact-section .contact-wrapper .btn-contact {
  background-color: #f9eac3;
  color: #663c24;
  border: solid 1px #f9eac3;
}
.global-contact-section .contact-wrapper .btn-contact:hover {
  background-color: white;
  border: solid 1px #663c24;
  color: #663c24;
}

.contact-page .info-title-group {
  margin-bottom: 30px;
}
.contact-page .info-title-group .group-title {
  font-family: "Cinzel", serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #663c24;
  text-align: center;
}
.contact-page .form-section {
  background-color: white;
  padding: 100px 0px;
}
.contact-page .form-section .contact-wrapper {
  display: flex;
  gap: 20px;
}
.contact-page .form-section .contact-wrapper .contact-details {
  flex: 0 0 400px;
  padding: 30px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  height: max-content;
}
.contact-page .form-section .contact-wrapper .contact-details .info-holder {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  border-bottom: solid 1px gainsboro;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.contact-page .form-section .contact-wrapper .contact-details .info-holder:last-child {
  border-bottom: none;
  margin-bottom: 5px;
  padding-bottom: 5px;
}
.contact-page .form-section .contact-wrapper .contact-details .info-holder i {
  color: #663c24;
  font-size: 30px;
}
.contact-page .form-section .contact-wrapper .contact-details .info-holder .info-group {
  width: 100%;
}
.contact-page .form-section .contact-wrapper .contact-details .info-holder .info-group .info-label {
  font-size: 13px;
  font-weight: 500;
  color: #663c24;
}
.contact-page .form-section .contact-wrapper .contact-details .info-holder .info-group .info-value {
  line-height: 18px;
}
.contact-page .form-section .contact-wrapper .contact-form {
  flex: 1;
  min-width: 0;
  padding: 30px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.contact-page .form-section .contact-wrapper .contact-form .contact-form-group {
  border: solid 1px gainsboro;
  padding: 30px;
  border-radius: 10px;
}
.contact-page .form-section .contact-wrapper .contact-form .btn-contactForm {
  background-color: #663c24;
  color: #f9eac3;
  width: 100%;
  margin-top: 30px;
}
.contact-page .map-section {
  padding: 0px 0px 100px 0px;
  background-color: white;
  scroll-margin-top: 150px;
}
.contact-page .map-section .map-holder {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.contact-page .map-section .map-holder iframe {
  display: block;
  width: 100%;
  height: 500px;
  border: 0;
}
@media (max-width: 768px) {
  .contact-page .map-section .map-holder iframe {
    height: 350px;
  }
}
@media (max-width: 576px) {
  .contact-page .map-section .map-holder iframe {
    height: 300px;
  }
}

/* Large devices (desktops, ≥992px and <1200px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .global-contact-section {
    padding: 90px 0px;
  }
  .contact-page .form-section .contact-wrapper .contact-details {
    flex: 0 0 350px;
    padding: 30px;
  }
}
/* Medium devices (tablets, ≥768px and <992px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .global-contact-section {
    padding: 80px 0px;
  }
  .contact-page .form-section {
    padding: 80px 0px;
  }
  .contact-page .form-section .contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
/* Small devices (landscape phones, ≥576px and <768px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .global-contact-section {
    padding: 70px 0px;
  }
  .contact-page .form-section {
    padding: 70px 0px;
  }
  .contact-page .form-section .contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .global-contact-section {
    padding: 60px 0px;
  }
  .global-contact-section .contact-wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    width: max-content;
    margin: 0 auto;
    margin-top: 30px;
  }
  .contact-page .info-title-group {
    margin-bottom: 20px;
  }
  .contact-page .info-title-group .group-title {
    font-size: 16px;
  }
  .contact-page .form-section {
    padding: 60px 0px;
  }
  .contact-page .form-section .contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .contact-page .form-section .contact-wrapper .contact-form {
    flex: 1;
    min-width: 0;
    padding: 0;
    box-shadow: none;
  }
  .contact-page .form-section .contact-wrapper .contact-form .contact-form-group {
    padding: 20px;
    border-radius: 0px;
  }
  .contact-page .map-section {
    padding: 0px 0px 60px 0px;
  }
}
.global-faqs-section {
  padding: 100px 0px;
  background-color: #f9eac3;
  scroll-margin-top: 100px;
}
.global-faqs-section .global-section-subtitle {
  background-color: #663c24;
  color: #f9eac3;
  width: max-content;
  margin-bottom: 8px;
  padding: 3px 10px;
  border-radius: 30px;
}
.global-faqs-section .global-section-title {
  color: #663c24;
  margin-bottom: 20px;
}
.global-faqs-section .accordion-holder #faqAccordion {
  max-width: 100%;
  margin: 0 auto;
  margin-top: 50px;
}
.global-faqs-section .accordion-holder #faqAccordion .accordion-item {
  border: none;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.global-faqs-section .accordion-holder #faqAccordion .accordion-button {
  padding: 1.25rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  background: #fff;
  color: #222;
  box-shadow: none;
}
.global-faqs-section .accordion-holder #faqAccordion .accordion-button:not(.collapsed) {
  background: #f8f8f8;
  color: #000;
}
.global-faqs-section .accordion-holder #faqAccordion .accordion-button:focus {
  box-shadow: none;
}
.global-faqs-section .accordion-holder #faqAccordion .accordion-body {
  padding: 1.5rem;
  line-height: 1.8;
  color: #666;
}
@media (max-width: 991px) {
  .global-faqs-section .accordion-holder .global-faqs-section {
    padding: 60px 0;
  }
  .global-faqs-section .accordion-holder #faqAccordion .accordion-button {
    padding: 1rem 1.25rem;
    font-size: 1rem;
  }
  .global-faqs-section .accordion-holder #faqAccordion .accordion-body {
    padding: 1.25rem;
  }
}
@media (max-width: 576px) {
  .global-faqs-section .accordion-holder .global-faqs-section {
    padding: 50px 0;
  }
  .global-faqs-section .accordion-holder #faqAccordion .accordion-button {
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
  }
  .global-faqs-section .accordion-holder #faqAccordion .accordion-body {
    padding: 1rem;
    font-size: 0.95rem;
  }
}

/* Large devices (desktops, ≥992px and <1200px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .global-faqs-section {
    padding: 90px 0px;
  }
}
/* Medium devices (tablets, ≥768px and <992px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .global-faqs-section {
    padding: 80px 0px;
  }
}
/* Small devices (landscape phones, ≥576px and <768px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .global-faqs-section {
    padding: 70px 0px;
  }
}
/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .global-faqs-section {
    padding: 60px 0px;
  }
}
.about-page .about-general-section {
  padding: 100px 0px;
}
.about-page .about-general-section .section-holder {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.about-page .about-first-section {
  background-color: white;
}
.about-page .about-first-section .global-section-subtitle {
  background-color: #f9eac3;
  color: #663c24;
  width: max-content;
  margin-bottom: 8px;
  padding: 3px 10px;
  border-radius: 30px;
}
.about-page .about-first-section .global-section-title {
  color: #663c24;
  margin-bottom: 20px;
}
.about-page .about-first-section .sub-section:last-child {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-page .about-first-section .image-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  width: max-content;
}
.about-page .about-first-section .image-wrapper .image-holder {
  border-radius: 3px;
  overflow: hidden;
  max-width: 250px;
  height: 350px;
}
.about-page .about-first-section .image-wrapper .image-holder:first-child {
  margin-top: 50px;
}
.about-page .about-first-section .image-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.about-page .about-second-section {
  background-color: #f9eac3;
}
.about-page .about-second-section .global-section-subtitle {
  background-color: #663c24;
  color: #f9eac3;
  width: max-content;
  margin-bottom: 8px;
  padding: 3px 10px;
  border-radius: 30px;
}
.about-page .about-second-section .global-section-title {
  color: #663c24;
  margin-bottom: 20px;
}
.about-page .about-second-section .sub-section:first-child {
  display: flex;
  justify-content: center;
}
.about-page .about-second-section .image-wrapper .image-holder {
  border-radius: 3px;
  overflow: hidden;
  max-width: 90%;
  height: 100%;
}
.about-page .about-second-section .image-wrapper .image-holder img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.about-page .about-third-section .text-group {
  text-align: center;
}
.about-page .about-third-section .global-section-subtitle {
  background-color: #f9eac3;
  color: #663c24;
  width: max-content;
  margin: 0 auto;
  margin-bottom: 8px;
  padding: 3px 10px;
  border-radius: 30px;
}
.about-page .about-third-section .global-section-title {
  color: #f9eac3;
  margin: 0 auto;
  max-width: 1000px;
  margin-bottom: 20px;
}
.about-page .about-third-section .text-normal {
  color: white;
}
.about-page .about-third-section .image-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  width: max-content;
  margin: 0 auto;
  margin-top: 50px;
}
.about-page .about-third-section .image-wrapper .image-holder {
  border-radius: 3px;
  overflow: hidden;
  max-width: 250px;
  height: 350px;
  border: solid 1px #979797;
}
.about-page .about-third-section .image-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* Large devices (desktops, ≥992px and <1200px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .about-page .about-general-section {
    padding: 90px 0px;
  }
  .about-page .about-first-section .image-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }
  .about-page .about-first-section .image-wrapper .image-holder {
    max-width: 375px;
    height: 250px;
  }
  .about-page .about-first-section .image-wrapper .image-holder:first-child {
    margin-top: 0px;
  }
  .about-page .about-third-section .image-wrapper {
    gap: 15px;
  }
  .about-page .about-third-section .image-wrapper .image-holder {
    max-width: 200px;
    height: 270px;
  }
}
/* Medium devices (tablets, ≥768px and <992px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .about-page .about-general-section {
    padding: 80px 0px;
  }
  .about-page .about-general-section .section-holder {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
  .about-page .about-first-section .image-wrapper {
    gap: 15px;
  }
  .about-page .about-first-section .image-wrapper .image-holder {
    max-width: 315px;
    height: 400px;
  }
  .about-page .about-second-section .image-wrapper {
    width: 100%;
    margin-bottom: 30px;
  }
  .about-page .about-second-section .image-wrapper .image-holder {
    height: 250px;
    width: 100%;
    max-width: 100%;
  }
  .about-page .about-second-section .image-wrapper .image-holder img {
    object-position: 100% 30%;
  }
  .about-page .about-third-section .image-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .about-page .about-third-section .image-wrapper .image-holder {
    max-width: 330px;
    height: 180px;
  }
}
/* Small devices (landscape phones, ≥576px and <768px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .about-page .about-general-section {
    padding: 70px 0px;
  }
  .about-page .about-general-section .section-holder {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
  .about-page .about-second-section .image-wrapper {
    width: 100%;
    margin-bottom: 30px;
  }
  .about-page .about-second-section .image-wrapper .image-holder {
    height: 200px;
    width: 100%;
    max-width: 100%;
  }
  .about-page .about-second-section .image-wrapper .image-holder img {
    object-position: 100% 30%;
  }
  .about-page .about-third-section .image-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .about-page .about-third-section .image-wrapper .image-holder {
    max-width: 250px;
    height: 140px;
  }
}
/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .about-page .about-general-section {
    padding: 60px 0px;
  }
  .about-page .about-general-section .section-holder {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
  .about-page .about-first-section .image-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
    width: 100%;
  }
  .about-page .about-first-section .image-wrapper .image-holder {
    max-width: 100%;
    height: 170px;
  }
  .about-page .about-first-section .image-wrapper .image-holder:first-child {
    margin-top: 0px;
  }
  .about-page .about-second-section .image-wrapper {
    width: 100%;
    margin-bottom: 30px;
  }
  .about-page .about-second-section .image-wrapper .image-holder {
    height: 160px;
    width: 100%;
    max-width: 100%;
  }
  .about-page .about-second-section .image-wrapper .image-holder img {
    object-position: 100% 30%;
  }
  .about-page .about-third-section .image-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
    margin-top: 30px;
  }
  .about-page .about-third-section .image-wrapper .image-holder {
    max-width: 330px;
    height: 110px;
  }
}
.error404 header,
.error404 footer {
  display: none !important;
}

p {
  margin-bottom: 0px;
}

body {
  margin: 0;
  background: transparent;
}

.services-content .global-section-subtitle {
  background-color: #663c24;
  color: #f9eac3;
  width: max-content;
  padding: 3px 10px;
  border-radius: 30px;
  text-align: center;
  margin-bottom: 8px;
}

.text-normal {
  font-size: 16px;
}

.text-small {
  font-size: 16px;
}

.text-medium {
  font-size: 18px;
}

.form-label {
  font-size: 16px;
  color: #663c24;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.form-label .fa-asterisk {
  font-size: 10px;
  line-height: 1;
  color: #663c24;
}

.form-input {
  margin-bottom: 10px;
  width: 100%;
}

.form-flex {
  display: flex;
  gap: 20px;
}

.segment-group {
  display: flex;
  gap: 20px;
}

.service-button-group p {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 8px;
}
.service-button-group .btn-service {
  background-color: white;
  border: solid 1px #dee2e6;
  width: 100%;
}
.service-button-group .active {
  background-color: #663c24;
  color: white;
  font-weight: 500;
}

.avail-transport-service {
  display: none;
  margin-top: 20px;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7 .wpcf7-response-output {
  margin: 25px 0 0;
  padding: 18px 25px;
  border-radius: 5px;
  font-size: 15px;
  line-height: 26px;
  text-align: center;
  font-weight: 500;
  background: #fafafa;
  border: 1px solid #e5e5e5;
}
.wpcf7 .wpcf7-mail-sent-ok {
  background: #f6f8f2;
  border: 1px solid #a8b88a;
  color: #46552d;
}
.wpcf7 .wpcf7-mail-sent-ok:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 10px;
}
.wpcf7 .wpcf7-mail-sent-ng {
  background: #fff6f5;
  border: 1px solid #d88b82;
  color: #8b332c;
}
.wpcf7 .wpcf7-mail-sent-ng:before {
  content: "\f071";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 10px;
}
.wpcf7 .wpcf7-validation-errors,
.wpcf7 .wpcf7-acceptance-missing {
  background: #fff9ed;
  border: 1px solid #d8b25c;
  color: #7a5b13;
}
.wpcf7 .wpcf7-validation-errors:before,
.wpcf7 .wpcf7-acceptance-missing:before {
  content: "\f06a";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 10px;
}
.wpcf7 .wpcf7-spam-blocked {
  background: #fff4f4;
  border: 1px solid #d66;
  color: #8b0000;
}
.wpcf7 .wpcf7-spam-blocked:before {
  content: "\f05e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 10px;
}
.wpcf7 .wpcf7-not-valid-tip {
  margin-top: 8px;
  color: #b33a32;
  font-size: 14px;
  font-weight: 500;
}
.wpcf7 .wpcf7-not-valid-tip:before {
  content: "\f06a";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 6px;
}

/* Disable whole page interaction while CF7 is submitting */
body.cf7-submitting {
  pointer-events: none;
}

/* Submit button loading state */
#btnRoomReservation.loading {
  cursor: wait;
  opacity: 0.8;
}

@keyframes fa-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
#bookingSuccessModal .modal-dialog {
  max-width: 700px;
}
#bookingSuccessModal .modal-dialog .modal-body {
  color: #663c24;
}
#bookingSuccessModal .modal-dialog .modal-body .booking-info-modal-icon {
  font-size: 130px;
  color: #663c24;
}
#bookingSuccessModal .modal-dialog .modal-body .booking-info-modal-title {
  padding: 10px 0px 15px 0px;
}
#bookingSuccessModal .modal-dialog .btn-booking-info-modal {
  background: #663c24;
  color: white;
  padding: 12px 35px;
  border-radius: 5px;
  font-size: 16px;
  width: 100%;
}

.global-section-subtitle {
  font-size: 16px;
}

.global-section-title {
  font-family: "Cinzel", serif;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 37px;
}

.custom-btn {
  padding: 10px 30px;
  border-radius: 0px;
}
.custom-btn i {
  margin-right: 5px;
}

.global-parallax {
  position: relative;
  /* Fixed background */
}
.global-parallax .page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.global-parallax .page-bg::before {
  content: "";
  position: absolute;
  inset: -20px; /* Prevents edges from showing after blur */
  background-image: inherit;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: blur(2px);
  transform: scale(1.05);
}
.global-parallax .page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5019607843); /* Optional fog effect */
}

.title-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.title-group .section-title {
  font-family: "Cinzel", serif;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45), 0 8px 24px rgba(0, 0, 0, 0.25);
  /* The Trick: This creates the "Inline" look of Castellar */
  color: #f9eac3;
  margin-bottom: 15px;
}
.title-group .section-description {
  color: white;
}

.password-wrapper {
  position: relative;
}
.password-wrapper br {
  display: none;
}

.password-wrapper .toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  z-index: 2;
  color: #6c757d;
}
.password-wrapper .toggle-password br {
  display: none;
}

.password-wrapper input {
  padding-right: 45px;
}

/* Large devices (desktops, ≥992px and <1200px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .text-medium {
    font-size: 18px !important;
  }
  .text-normal {
    font-size: 16px !important;
  }
  .text-small {
    font-size: 16px !important;
  }
  .title-group .section-title {
    font-size: 30px !important;
    line-height: 36px;
  }
  .global-section-title {
    font-size: 26px;
    line-height: 31px;
  }
  .form-flex {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
}
/* Medium devices (tablets, ≥768px and <992px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .text-medium {
    font-size: 16px !important;
  }
  .text-normal {
    font-size: 15px !important;
  }
  .text-small {
    font-size: 14px !important;
  }
  .title-group .section-title {
    font-size: 26px !important;
    line-height: 33px;
  }
  .global-section-title {
    font-size: 24px;
    line-height: 29px;
  }
}
/* Small devices (landscape phones, ≥576px and <768px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .text-medium {
    font-size: 16px !important;
  }
  .text-normal {
    font-size: 15px !important;
  }
  .text-small {
    font-size: 14px !important;
  }
  .title-group .section-title {
    font-size: 26px !important;
    line-height: 32px;
  }
  .global-section-title {
    font-size: 22px;
    line-height: 27px;
  }
  .segment-group {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
}
/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .text-medium {
    font-size: 14px !important;
    line-height: 19px !important;
  }
  .text-normal {
    font-size: 14px !important;
  }
  .text-small {
    font-size: 13px !important;
    line-height: 18px;
  }
  .title-group .section-title {
    font-size: 24px !important;
    line-height: 30px;
  }
  .global-section-subtitle {
    font-size: 13px;
  }
  .global-section-title {
    font-size: 20px;
    line-height: 25px;
  }
  .form-flex {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .segment-group {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .form-label {
    font-size: 14px;
    margin-bottom: 0px;
    color: #663c24;
    font-weight: 500;
  }
  .form-control {
    font-size: 15px;
    padding: 5px 10px;
  }
  #bookingSuccessModal .modal-dialog .modal-body .booking-info-modal-icon {
    font-size: 100px;
  }
  #bookingSuccessModal .modal-dialog .modal-body .booking-info-modal-title {
    padding: 0px 0px 8px 0px;
  }
  #bookingSuccessModal .modal-dialog .btn-booking-info-modal {
    font-size: 14px;
    padding: 8px 35px;
  }
}
/* Large devices (desktops, ≥992px and <1200px) */
/* Medium devices (tablets, ≥768px and <992px) */
/* Small devices (landscape phones, ≥576px and <768px) */
/* Extra small devices (portrait phones, less than 576px) */
.page-template-page-coming-soon header,
.page-template-page-coming-soon footer {
  display: none !important;
}

.coming-soon-page {
  background-color: #f9eac3;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.coming-soon-page .comming-soon-content {
  margin-bottom: 100px;
}
.coming-soon-page .comming-soon-content .container .site-logo {
  width: 300px;
}
.coming-soon-page .comming-soon-content .container .page-title {
  font-size: 50px;
  font-weight: bold;
  color: #663c24;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  margin-bottom: 15px;
  line-height: 55px;
}
.coming-soon-page .comming-soon-content .container .page-info {
  font-size: 18px;
  line-height: 30px;
  color: black;
}
.coming-soon-page .comming-soon-content .container .page-info a {
  color: #663c24;
  text-decoration: none;
  font-weight: bold;
}

/* Large devices (desktops, ≥992px and <1200px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .coming-soon-page .comming-soon-content {
    margin-bottom: 100px;
  }
  .coming-soon-page .comming-soon-content .container .site-logo {
    width: 250px;
  }
  .coming-soon-page .comming-soon-content .container .page-title {
    font-size: 40px;
  }
}
/* Medium devices (tablets, ≥768px and <992px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .coming-soon-page .comming-soon-content {
    margin-bottom: 100px;
  }
  .coming-soon-page .comming-soon-content .container .site-logo {
    width: 230px;
  }
  .coming-soon-page .comming-soon-content .container .page-title {
    font-size: 40px;
  }
}
/* Small devices (landscape phones, ≥576px and <768px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .coming-soon-page .comming-soon-content {
    margin-bottom: 100px;
  }
  .coming-soon-page .comming-soon-content .container .site-logo {
    width: 200px;
  }
  .coming-soon-page .comming-soon-content .container .page-title {
    font-size: 30px;
    line-height: 35px;
  }
  .coming-soon-page .comming-soon-content .container .page-info {
    font-size: 15px;
    line-height: 27px;
  }
}
/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .coming-soon-page .comming-soon-content {
    margin-bottom: 100px;
  }
  .coming-soon-page .comming-soon-content .container .site-logo {
    width: 150px;
  }
  .coming-soon-page .comming-soon-content .container .page-title {
    font-size: 25px;
    max-width: 300px;
    margin: 0 auto;
    margin-bottom: 15px;
    line-height: 30px;
  }
  .coming-soon-page .comming-soon-content .container .page-info {
    font-size: 14px;
    line-height: 26px;
  }
}
.testimonial-section {
  padding: 100px 0px;
  scroll-margin-top: 100px;
}
.testimonial-section .global-section-subtitle {
  background-color: #f9eac3;
  color: #663c24;
  width: max-content;
  padding: 3px 10px;
  border-radius: 30px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 8px;
}
.testimonial-section .testimonials-swiper {
  margin-top: 30px;
}
.testimonial-section .testimonials-swiper .swiper-button-prev,
.testimonial-section .testimonials-swiper .swiper-button-next {
  border-radius: 5px;
  background-color: #f9eac3;
  padding: 5px 30px;
}
.testimonial-section .testimonials-swiper .swiper-button-prev::after,
.testimonial-section .testimonials-swiper .swiper-button-next::after {
  font-size: 20px;
  font-weight: bolder;
  color: #663c24;
}
.testimonial-section .testimonials-swiper .testimonial-card {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  background-color: white;
  padding: 40px 40px;
  height: 300px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}
.testimonial-section .testimonials-swiper .testimonial-card .customer-details {
  margin-top: 25px;
  border-top: solid 1px #663c24;
  padding-top: 15px;
}
.testimonial-section .testimonials-swiper .testimonial-card .customer-details .testimonial-name {
  margin-bottom: 0px;
}
.testimonial-section .testimonials-swiper .testimonial-card::before {
  content: "\f10d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900; /* Solid icons */
  position: absolute;
  top: 20px;
  left: 50px;
  font-size: 120px;
  line-height: 1;
  color: rgba(102, 60, 36, 0.1294117647);
  z-index: 0;
  pointer-events: none;
}
.testimonial-section .testimonials-swiper .testimonial-card > * {
  position: relative;
  z-index: 1;
}
.testimonial-section .testimonials-swiper {
  width: 100%;
  overflow: hidden;
}

/* Large devices (desktops, ≥992px and <1200px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .testimonial-section {
    padding: 90px 0px;
  }
  .testimonial-section .testimonials-swiper .testimonial-card .customer-details .testimonial-name {
    font-size: 22px;
  }
  .testimonial-section .testimonials-swiper .testimonial-card::before {
    font-size: 100px;
  }
  .swiper-button-next, .swiper-button-prev {
    bottom: 10px;
    top: auto !important;
  }
}
/* Medium devices (tablets, ≥768px and <992px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .testimonial-section {
    padding: 80px 0px;
  }
  .testimonial-section .testimonials-swiper .testimonial-card .testimonial-content p {
    display: -webkit-box;
    -webkit-line-clamp: 7; /* Show only 6 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .testimonial-section .testimonials-swiper .testimonial-card .customer-details .testimonial-name {
    font-size: 20px;
  }
  .testimonial-section .testimonials-swiper .testimonial-card::before {
    font-size: 80px;
  }
  .swiper-button-next, .swiper-button-prev {
    bottom: 10px;
    top: auto !important;
  }
}
/* Small devices (landscape phones, ≥576px and <768px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .testimonial-section {
    padding: 70px 0px;
  }
  .testimonial-section .testimonials-swiper .testimonial-card {
    padding: 30px 30px;
  }
  .testimonial-section .testimonials-swiper .testimonial-card .testimonial-content p {
    display: -webkit-box;
    -webkit-line-clamp: 7; /* Show only 6 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .testimonial-section .testimonials-swiper .testimonial-card .customer-details .testimonial-name {
    font-size: 20px;
  }
  .testimonial-section .testimonials-swiper .testimonial-card::before {
    font-size: 60px;
  }
  .swiper-button-next, .swiper-button-prev {
    bottom: 10px;
    top: auto !important;
  }
}
/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .testimonial-section {
    padding: 60px 0px;
  }
  .testimonial-section .testimonials-swiper .testimonial-card {
    padding: 20px 20px;
  }
  .testimonial-section .testimonials-swiper .testimonial-card .testimonial-content p {
    display: -webkit-box;
    -webkit-line-clamp: 7; /* Show only 6 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .testimonial-section .testimonials-swiper .testimonial-card .customer-details .testimonial-name {
    font-size: 18px;
  }
  .testimonial-section .testimonials-swiper .testimonial-card::before {
    font-size: 60px;
    left: 20px;
  }
  .testimonial-section .testimonials-swiper .swiper-button-next, .testimonial-section .testimonials-swiper .swiper-button-prev {
    bottom: 10px;
    top: auto !important;
    padding: 5px 20px;
  }
}
.promotions-section {
  background-color: #f8f6f2;
  padding: 100px 0;
  /* Large Tablets */
  /* Tablets */
  /* Mobile */
}
.promotions-section .global-section-subtitle {
  background-color: #663c24;
  color: #f9eac3;
  width: max-content;
  padding: 3px 10px;
  border-radius: 30px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 8px;
}
.promotions-section .section-title {
  color: #663c24;
  text-shadow: none;
  text-align: center;
}
.promotions-section .cash-promotions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 20px;
}
.promotions-section .active-promotion {
  text-align: center;
  background-color: rgba(179, 114, 0, 0.1215686275);
  font-size: 16px;
  width: fit-content;
  margin: 0 auto;
  padding: 15px 25px;
  border: solid 1px #a97037;
  border-radius: 8px;
  margin-bottom: 40px;
  animation: promotionPulse 2s ease-in-out infinite;
}
@keyframes promotionPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(169, 112, 55, 0.35);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 0 0 8px rgba(169, 112, 55, 0);
  }
}
.promotions-section .promotion-item {
  position: relative;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 5px;
  padding: 32px 28px;
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.promotions-section .promotion-item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: #663c24;
}
.promotions-section .promotion-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}
.promotions-section .promotion-item .discount {
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: #663c24;
  line-height: 1.2;
  margin-bottom: 16px;
}
.promotions-section .promotion-item .description {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  max-width: 220px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .promotions-section {
    padding: 80px 0;
    /* Center the last card if it's the only item on the last row */
  }
  .promotions-section .cash-promotions {
    gap: 20px;
  }
  .promotions-section .promotion-item {
    padding: 28px 24px;
  }
  .promotions-section .promotion-item:last-child:nth-child(odd) {
    grid-column: 1/-1;
    justify-self: center;
    width: 100%;
    max-width: 350px;
  }
}
@media (max-width: 767px) {
  .promotions-section {
    padding: 70px 0;
    /* Center the last card if it's the only item on the last row */
  }
  .promotions-section .cash-promotions {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .promotions-section .promotion-item {
    padding: 24px 20px;
  }
  .promotions-section .promotion-item .discount {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }
  .promotions-section .promotion-item .description {
    font-size: 0.95rem;
    max-width: 100%;
  }
  .promotions-section .promotion-item:last-child:nth-child(odd) {
    grid-column: 1/-1;
    justify-self: center;
    width: 100%;
    max-width: 350px;
  }
}
@media (max-width: 575px) {
  .promotions-section {
    padding: 60px 0;
  }
  .promotions-section .cash-promotions {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .promotions-section .promotion-item {
    padding: 22px 18px;
    max-width: 350px;
    justify-self: center;
    width: 100%;
  }
  .promotions-section .promotion-item:hover {
    transform: none;
    box-shadow: none;
  }
  .promotions-section .promotion-item .discount {
    font-size: 1.4rem;
  }
  .promotions-section .promotion-item .description {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}

.custom-footer {
  background-color: #492f21;
  padding: 50px 0px;
}
.custom-footer .logo-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.custom-footer .logo-container .custom-logo {
  max-width: 150px;
  height: 150px;
  filter: brightness(0) invert(1);
}
.custom-footer .logo-container .footer-text {
  color: #f9eac3;
  text-align: center;
  max-width: 1100px;
}
.custom-footer .links-container {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  color: #f9eac3;
  margin-top: 50px;
}
.custom-footer .links-container .link-group .group-title {
  font-size: 18px;
  font-weight: bold;
  font-family: "Cinzel", serif;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.custom-footer .links-container .link-group .group-holder {
  display: flex;
  flex-direction: column;
}
.custom-footer .links-container .link-group .group-holder .footer-links {
  text-decoration: none;
  color: #f9eac3;
  padding: 5px 0px;
}

/* Large devices (desktops, ≥992px and <1200px) */
/* Medium devices (tablets, ≥768px and <992px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .custom-footer .links-container {
    flex-wrap: wrap;
  }
  .custom-footer .links-container .link-group {
    text-align: center;
    margin-bottom: 40px;
  }
}
/* Small devices (landscape phones, ≥576px and <768px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .custom-footer .links-container {
    flex-wrap: wrap;
  }
  .custom-footer .links-container .link-group {
    text-align: center;
    margin-bottom: 40px;
  }
}
/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .custom-footer .links-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .custom-footer .links-container .link-group {
    text-align: center;
  }
  .custom-footer .links-container .link-group .group-holder {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
  }
  .custom-footer .links-container .link-group .group-holder .footer-links {
    padding: 0px 0px;
  }
  .custom-footer .links-container .link-group .group-holder .mobile-line {
    width: 100px;
    border-bottom: solid 1px #f9eac3;
    margin: 0 auto;
    margin-top: 20px;
  }
  .custom-footer .links-container .link-group .group-holder.active {
    max-height: 500px;
    opacity: 1;
    padding-bottom: 20px;
  }
}

/*# sourceMappingURL=style.css.map */
