body {
  font-family: "Jost", sans-serif;
}

header {
  transition: all 0.3s ease-in-out;
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
header .wrapper {
  position: relative;
  max-width: 1800px;
  min-width: 320px;
  margin: 0 auto;
  display: flex;
  gap: 1rem;
  padding: 0 1rem;
}
header .wrapper .logo {
  display: block;
  background-color: #F3ECDC;
  padding: 1rem;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  box-shadow: 0 0.5rem 1rem rgba(34, 23, 12, 0.1);
  transition: all 0.3s ease-in-out;
}
header .wrapper .logo img {
  display: block;
  height: 120px;
}
header .wrapper .nav {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
header .wrapper .nav .top-header {
  border-bottom: thin solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
  color: white;
  justify-content: space-between;
}
header .wrapper .nav .top-header .wrapper {
  justify-content: space-between;
}
header .wrapper .nav .top-header .top-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}
header .wrapper .nav .top-header .top-links .link {
  color: #F3ECDC;
  text-decoration: none;
  display: flex;
  font-size: 1rem;
  gap: 0.5rem;
  align-items: center;
  font-weight: 300;
}
header .wrapper .nav .top-header .social-media-links .link {
  color: #F3ECDC !important;
}
header .wrapper .nav .header-nav .wrapper {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  position: relative;
  padding: 1rem 0;
}
header .wrapper .nav .header-nav .wrapper .links {
  display: flex;
  gap: 1rem;
}
header .wrapper .nav .header-nav .wrapper .links .link {
  color: #F3ECDC;
  text-decoration: none;
  text-transform: capitalize;
  padding: 0.5rem 1rem;
}
header .wrapper .nav .header-nav .wrapper .header-cta {
  border: thin solid #F3ECDC;
  padding: 1rem 1.5rem;
  text-transform: uppercase;
  text-decoration: none;
  color: #F3ECDC;
  border-radius: 100px;
}
header .wrapper .nav .header-nav .wrapper .header-cta:hover {
  background-color: #22170c;
  color: #F3ECDC;
  border-color: #87613C;
}
header .wrapper .nav .header-nav .wrapper .btn-menu {
  border: none;
  outline: none;
  padding: 0 8px;
  height: 48px;
  width: 48px;
  display: none;
  position: relative;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  background-color: transparent;
}
header .wrapper .nav .header-nav .wrapper .btn-menu .bar {
  display: block;
  border: thin solid #F3ECDC;
  background-color: #F3ECDC;
}
@media (max-width: 991px) {
  header {
    background-image: linear-gradient(#22170c, #22170c);
  }
  header .wrapper .logo {
    padding: 0.5rem;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  header .wrapper .logo img {
    height: 100px;
  }
  header .wrapper .nav {
    align-items: flex-end;
    justify-content: center;
  }
  header .wrapper .nav .top-header {
    display: none;
  }
  header .wrapper .nav .header-nav .wrapper {
    justify-content: end;
    min-width: auto;
  }
  header .wrapper .nav .header-nav .wrapper .links {
    display: none;
  }
  header .wrapper .nav .header-nav .wrapper .btn-menu {
    display: flex;
  }
}

@media (min-width: 991px) {
  .scrolled {
    transition: all 0.3s ease-in-out;
    background-image: linear-gradient(#22170c, #22170c);
    top: -57px;
  }
  .scrolled .wrapper .logo {
    transition: all 0.3s ease-in-out;
    position: relative;
    top: 57px;
  }
}

@keyframes openMenu {
  from {
    right: -420px;
  }
  to {
    right: 0;
  }
}
@keyframes closeMenu {
  from {
    right: 0;
  }
  to {
    right: -420px;
  }
}
@media (max-width: 991px) {
  .menu-open .wrapper .nav .header-nav .wrapper .links {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    background: white;
    flex-direction: column;
    width: 420px;
    padding: 100px 2rem 2rem;
    box-shadow: -100px 0 100px rgba(0, 0, 0, 0.5);
    animation-duration: 0.4s;
    animation-fill-mode: forwards;
    animation-name: openMenu;
  }
  .menu-open .wrapper .nav .header-nav .wrapper .links .link {
    color: #87613C;
  }
  .menu-open .wrapper .nav .header-nav .wrapper .btn-menu .bar {
    transform: rotate(45deg) translate(10px, 10px);
    transform-origin: center;
    border-color: #22170c;
  }
  .menu-open .wrapper .nav .header-nav .wrapper .btn-menu .bar:last-child {
    transform: rotate(-45deg);
  }
}

@media (max-width: 991px) {
  .menu-close .wrapper .nav .header-nav .wrapper .links {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    background: white;
    flex-direction: column;
    width: 420px;
    padding: 100px 2rem 2rem;
    box-shadow: 0;
    animation-duration: 0.4s;
    animation-fill-mode: forwards;
    animation-name: closeMenu;
  }
  .menu-close .wrapper .nav .header-nav .wrapper .links .link {
    color: #87613C;
  }
}

section {
  padding: 150px 0;
}
section:nth-last-of-type(even) {
  background-color: #F3ECDC;
}
section .title {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: #22170c;
  font-family: "Marcellus", Helvetica, Arial, sans-serif;
}
section .title small {
  color: #87613C;
  font-size: clamp(0.8rem, 2vw, 1rem);
  font-weight: 600;
  font-family: "Jost", sans-serif;
  text-transform: uppercase;
}
section .sub-title {
  font-size: clamp(1.16rem, 4vw, 1.5rem);
  font-weight: 200;
  color: #22170c;
  font-family: "Marcellus", Helvetica, Arial, sans-serif;
}
section .link-call-cta {
  margin-top: 3rem;
  width: -moz-fit-content;
  width: fit-content;
}

.hero-section {
  padding: 0;
  background-color: #22170c;
}
.hero-section #hero-slider {
  position: relative;
}
@media (max-width: 991px) {
  .hero-section #hero-slider {
    margin-top: 100px;
  }
}
.hero-section #hero-slider .item img {
  opacity: 0.5;
}
@media (max-width: 991px) {
  .hero-section #hero-slider .item img {
    height: calc(100vh - 72px);
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
.hero-section #hero-slider .content {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  padding: 0 2rem;
}
.hero-section #hero-slider .content .title {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 400;
  color: white;
  text-align: center;
  font-family: "Marcellus", Helvetica, Arial, sans-serif;
  text-shadow: 0 8px 16px rgba(34, 23, 12, 0.5);
}
.hero-section #hero-slider .content .link {
  border: thin solid #F3ECDC;
  padding: 1rem 1.5rem;
  text-transform: uppercase;
  text-decoration: none;
  color: #F3ECDC;
  border-radius: 100px;
  margin: auto;
  position: relative;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
}
.hero-section #hero-slider .content .link:hover {
  background-color: #22170c;
  color: #F3ECDC;
  border-color: #87613C;
}
.hero-section #hero-slider .owl-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
}
.hero-section #hero-slider .owl-nav button {
  font-size: 2rem;
  color: #F3ECDC;
  box-shadow: 0 1rem 2rem rgba(34, 23, 12, 0.1);
}

.link-call-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}
.link-call-cta i {
  transition: all 0.3s ease-in-out;
  background-color: #87613C;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  width: 64px;
  border-radius: 100%;
}
.link-call-cta i::before {
  transition: all 0.3s ease-in-out;
  font-size: 1.5rem;
}
.link-call-cta span {
  font-size: clamp(1.32rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  font-family: "Marcellus", Helvetica, Arial, sans-serif;
  color: #22170c;
}
.link-call-cta span small {
  font-size: clamp(0.8rem, 2vw, 1rem);
  color: #87613C;
  font-family: "Jost", sans-serif;
}
.link-call-cta:hover i {
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.2);
}
.link-call-cta:hover i::before {
  transform: scale(1.1);
}

@media (max-width: 991px) {
  #about .img-fluid {
    margin-top: 2rem;
  }
}

#rooms .title {
  margin-bottom: 1rem;
}
#rooms .sub-title {
  margin-bottom: 2rem;
}
#rooms p {
  margin-bottom: 2rem;
}

.rooms {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.rooms .room {
  border-radius: 2rem;
  border: thin solid #eee;
  background-color: white;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.rooms .room .content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.rooms .room .content .name {
  font-family: "Marcellus", Helvetica, Arial, sans-serif;
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 400;
}
.rooms .room .content .tagline {
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: #87613C;
}
.rooms .room:hover {
  box-shadow: 0 1rem 2rem rgba(34, 23, 12, 0.1);
}
.rooms .room .link {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  text-decoration: none;
  color: #87613C;
}
.rooms .room .link:hover {
  color: #22170c;
}
.rooms .room .link::after {
  content: "\f138";
  display: block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: 400 !important;
  font-variant: normal;
  text-transform: none;
}
.rooms .room-slider {
  height: 650px;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 991px) {
  .rooms .room-slider {
    height: 400px;
  }
}
.rooms .swiper-slide {
  background-size: cover;
  background-position: center;
  height: 100%;
}

.parallax-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-image: url("../img/img-bg-testimonial.jpg");
  background-size: cover;
  position: relative;
}
.parallax-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(34, 23, 12, 0.8);
}
.parallax-item .container {
  position: relative;
  z-index: 1;
}

#testimonial {
  color: #F3ECDC;
}
#testimonial .comment {
  font-family: "Marcellus", Helvetica, Arial, sans-serif;
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 300;
  margin-bottom: 3rem;
  text-align: center;
}
#testimonial .name {
  font-family: "Jost", sans-serif;
  font-size: clamp(1rem, 2vw, 1.16rem);
  font-weight: 400;
  text-align: center;
}
#testimonial .stars {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
#testimonial .stars i {
  color: yellow;
  font-size: 1.5rem;
}
#testimonial .owl-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

#places {
  position: relative;
  margin-top: 2rem;
}
#places .place {
  position: relative;
  background-color: white !important;
  border: thin solid #eee;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(34, 23, 12, 0.05);
  transition: all 0.3s ease-in-out;
}
#places .place:hover {
  box-shadow: 0 1rem 2rem rgba(34, 23, 12, 0.1);
}
#places .place img {
  display: block;
  height: 450px !important;
  width: 100%;
}
#places .place .content {
  padding: 2rem;
}
#places .place .content .name {
  min-height: 64px;
  font-family: "Marcellus", Helvetica, Arial, sans-serif;
  color: #22170c;
}
#places .place .content .time {
  font-size: clamp(0.8rem, 2vw, 1rem);
  font-weight: 500;
  margin-bottom: 1rem;
  text-transform: uppercase;
  color: #87613C;
}
#places .place .content p {
  min-height: 100px;
}

.nearbyplaces {
  overflow: hidden;
  background-color: white !important;
}
.nearbyplaces .owl-stage-outer {
  overflow: visible;
}
.nearbyplaces .owl-stage-outer .owl-item {
  opacity: 0.5;
}
.nearbyplaces .owl-stage-outer .owl-item.active {
  opacity: 1;
}
.nearbyplaces .owl-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-card {
  background-color: #F3ECDC;
  margin-bottom: 80px;
  border-radius: 32px;
  border: thin solid #eee;
  overflow: hidden;
}
.contact-card .content {
  padding: 2.5rem;
}
.contact-card .links {
  display: flex;
  gap: 2rem;
  flex-direction: column;
}
.contact-card .links .link-call-cta span {
  font-size: clamp(0.8rem, 2vw, 1rem);
  display: flex;
  flex-direction: column;
  color: #87613C;
  font-family: "Jost", sans-serif;
}
.contact-card .links .link-call-cta span small {
  font-size: clamp(1.32rem, 2vw, 1.5rem);
  font-family: "Marcellus", Helvetica, Arial, sans-serif;
  color: #22170c;
}
.contact-card iframe {
  width: 100%;
  min-height: 250px;
  border: none;
}
@media (max-width: 991px) {
  .contact-card iframe {
    min-height: 180px;
  }
}
.contact-card form {
  padding: 2rem;
}

.form-control:focus {
  border-color: #87613C;
  box-shadow: 0 0 0 0.25rem rgba(135, 97, 60, 0.25);
}

.social-media-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.social-media-links a {
  color: #87613C;
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
}
.social-media-links a:hover {
  color: #22170c;
}

footer {
  padding: 0 0 1rem;
  color: #F3ECDC;
  position: relative;
}
footer .title {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: #22170c;
  font-family: "Marcellus", Helvetica, Arial, sans-serif;
}
footer .title small {
  color: #87613C;
  font-size: clamp(0.8rem, 2vw, 1rem);
  font-weight: 600;
  font-family: "Jost", sans-serif;
  text-transform: uppercase;
}
footer::before {
  content: "";
  position: absolute;
  height: 80%;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #22170c;
  z-index: -1;
}
footer .footer-logo {
  display: block;
  margin: auto;
}
footer .social-media-links {
  justify-content: center;
  margin-top: 1rem;
}
footer .social-media-links a {
  height: 32px;
  width: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  font-size: 1.2rem;
}
footer .social-media-links a:hover {
  background-color: #F3ECDC;
  color: #22170c;
}
footer .copyright-note {
  border-top: thin solid rgba(243, 236, 220, 0.1);
  padding-top: 1rem;
  margin-top: 50px;
}
@media (max-width: 991px) {
  footer .copyright-note {
    text-align: center;
  }
}
footer .copyright-note p {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
}
footer .copyright-note a {
  color: #87613C;
  text-decoration: none;
}
footer .copyright-note a:hover {
  text-decoration: underline;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(30px);
    visibility: hidden;
  }
  to {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
}
@keyframes hideDown {
  from {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
  to {
    opacity: 0;
    transform: translateY(30px);
    visibility: hidden;
  }
}
#backToTop {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 40px;
  height: 40px;
  background: #22170c;
  color: #F3ECDC;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  z-index: 999;
  transition: all 0.3s ease;
  animation-fill-mode: forwards;
}
#backToTop.show {
  animation: revealUp 0.4s ease forwards;
}
#backToTop.hide {
  animation: hideDown 0.4s ease forwards;
}

.sticky-btn {
  position: fixed;
  right: 35px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  transition: all 0.3s ease;
  animation-fill-mode: forwards;
  text-decoration: none;
}
.sticky-btn i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-size: 1.2rem;
  color: white;
}
.sticky-btn.show {
  animation: revealUp 0.4s ease forwards;
}
.sticky-btn.hide {
  animation: hideDown 0.4s ease forwards;
}

#callBtn {
  bottom: 100px;
  background-color: #22170c;
}

#whatsappBtn {
  bottom: 160px;
  background: #25d366;
}

#airbnbBtn {
  bottom: 220px;
  background: #ff5a5f;
}

.btn-cta {
  background-color: #22170c;
  border: thin solid transparent;
  padding: 1rem 1.5rem;
  text-transform: uppercase;
  text-decoration: none;
  color: #F3ECDC;
  border-radius: 100px;
}
.btn-cta:hover {
  background-color: #87613C;
  color: #F3ECDC;
  border-color: #87613C;
}

.page-cover {
  background-color: #22170c;
  color: #F3ECDC;
  padding: 250px 0 100px;
}
@media (max-width: 991px) {
  .page-cover {
    padding: 200px 0 100px;
  }
  .page-cover h1 {
    text-align: center;
  }
}

.link-group {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.link-group svg {
  height: 20px;
  width: 20px;
}

.link-listing {
  font-size: 14px;
  display: flex;
  gap: 8px;
  align-items: center;
  text-decoration: none;
  color: #87613C;
  border: thin solid #87613C;
  padding: 4px 16px;
  border-radius: 1rem;
}
.link-listing img {
  display: block;
  height: 16px;
}

/* Ripple Animation Styles */
.ripple-button {
  position: relative;
  overflow: hidden;
  background-color: #F3ECDC;
  color: #22170c;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 0 #87613C;
  animation: ripple 2s infinite;
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 23, 12, 0.6);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(13, 110, 253, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
  }
}
.ripple-button:hover {
  background-color: #22170c;
  color: #F3ECDC;
}

.video-div {
  display: block;
  position: relative;
}
.video-div .ripple-button {
  position: absolute;
  top: 68%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

#videoModal .modal {
  border-radius: 1rem;
  overflow: hidden;
}
#videoModal .modal-content {
  border-radius: 1rem;
  overflow: hidden;
}
#videoModal .modal-body {
  padding: 0;
  border-radius: 1rem;
  overflow: hidden;
}/*# sourceMappingURL=main.css.map */