@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --color1:#a59967;
  --color2:#0A5732;
  --text-color:#7A7A7A;
  --gap: 16px;
  --radius: 16px;
  --shadow: 0 6px 24px rgba(0,0,0,.12);
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, ul, li {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  background: transparent;
  text-decoration: none;
  quotes: none;
  list-style: none;
}

html, body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body:unresolved {
  opacity: 0;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1;
  opacity: 1;
  position: relative;
  -webkit-text-size-adjust: none;
  font-family: "Montserrat", "Roboto", sans-serif;
}

::-moz-selection { /* Code for Firefox */
  color: #ffffff;
  background: #000000;
}

::selection {
  color: #ffffff;
  background: #000000;
}

article, aside, footer, header, hgroup, nav, section, figure, figcaption {
  display: block;
  margin: 0px 0 0 0;
}

* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

input, textarea {
  border-radius: 0;
  font-family: "Montserrat", "Roboto", sans-serif;
}

input[type=submit],
input[type=button] {
  -webkit-appearance: none;
}

button {
  font-family: "Montserrat", "Roboto", sans-serif;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

:focus {
  outline: 0;
}

::-moz-focus-inner {
  border: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

*, *:after, *:before {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
}

a {
  transition: all 0.9s ease;
  outline: none;
  text-decoration: none;
  font-family: "Montserrat", "Roboto", sans-serif;
  font-size: 0.9rem;
  color: var(--color1);
  font-weight: 500;
}

a:hover {
  color: var(--text-color);
}

.clearfloat {
  clear: both;
}

img {
  width: 100%;
  display: block;
  transition: all 1s ease;
  margin: auto;
}

body h1 {
  font-size: 2rem;
  font-family: "Playfair Display", serif;
  color: var(--color1);
}

body h2 {
  font-size: 1.8rem;
  font-family: "Playfair Display", serif;
  color: var(--color1);
  line-height: 1.4;
}

body h3 {
  font-size: 1.6rem;
  font-family: "Playfair Display", serif;
  color: var(--color1);
}

body h4 {
  font-size: 1.4rem;
  font-family: "Playfair Display", serif;
  color: var(--color1);
}

body h5 {
  font-size: 1.2rem;
  font-family: "Playfair Display", serif;
  color: var(--color1);
}

body h6 {
  font-size: 1rem;
  font-family: "Playfair Display", serif;
  color: var(--color1);
}

body p {
  font-size: 0.9rem;
  line-height: 1.9;
  font-weight: 400;
  font-family: "Montserrat", "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  color: var(--text-color);
}

.container-rigid {
  width: 85%;
  max-width: 1500px;
  margin: auto;
}

header {
  width: 100%;
  float: left;
}
header .desktop-navigation-wrapper {
  position: absolute;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 12;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: rgba(0, 0, 0, 0.07) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}
header .mobile-navigation-wrapper {
  display: none;
}

.desktop-navigation .logo {
  width: 200px;
  margin-right:10px;
}
.desktop-navigation li {
  position: relative;
}
.desktop-navigation li a {
  display: inline-block;
  position: relative;
  padding: 2rem 0;
}
.desktop-navigation li a i {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  font-size: 0.7rem;
}
.desktop-navigation li a::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  border-radius: 5px;
  height: 0.12em;
  bottom: 28px;
  left: 0;
  background: var(--color1);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
.desktop-navigation li a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.desktop-navigation li a.active {
  font-weight: 600;
  color: #666;
}
.desktop-navigation li a.active::after {
  content: "";
  position: absolute;
  width: 100%;
  border-radius: 5px;
  height: 0.09em;
  bottom: 24px;
  left: 0;
  background: #666;
  transform: scaleX(1);
}
.desktop-navigation .book-now{
    margin-left:10px;
}
.desktop-navigation .book-now a {
  padding: 12px 25px;
  color: white;
  background: var(--color1);
  border: 1px solid var(--color1);
  font-size: 0.8rem;
  font-weight: 600;
}
.desktop-navigation .book-now a:hover {
  color: var(--color1);
  background: transparent;
}
.desktop-navigation .desktop-submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  box-shadow: var(--shadow);
  padding: 0;
  display: none;
  z-index: 1234;
  width: 200px;
}
.desktop-navigation .desktop-submenu li {
  padding: 0;
  margin: 0;
}
.desktop-navigation .desktop-submenu li a {
  padding: 12px 15px;
  display: block;
  font-size: 0.8rem;
  color: var(--text-color);
  font-weight: 500;
  border-bottom: 1px solid var(--color1);
  text-transform: uppercase;
  line-height: 1.5;
}
.desktop-navigation .desktop-submenu li a:hover {
  background: var(--color1);
  color: white;
}
.desktop-navigation .desktop-submenu li a::after {
  bottom: -1px;
}
.desktop-navigation li:hover .desktop-submenu {
  display: block;
}

.homepage-wrapper {
  width: 100%;
  float: left;
}

.home-banner-wrapper {
  width: 100%;
  float: left;
  min-height: 700px;
  height: 100vh;
  position: relative;
}
.home-banner-wrapper .mySwiper {
  width: 100%;
  height: 100%;
}
.home-banner-wrapper .mySwiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  height: 100%;
}
.home-banner-wrapper .mySwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.home-banner-wrapper .home-banner-content {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.485);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.home-banner-wrapper .home-banner-content h1 {
  color: white;
}
.home-banner-wrapper .home-banner-content p {
  max-width: 1000px;
  color: white;
  font-size: 1rem;
  line-height: 1.8;
}
.home-banner-wrapper .home-banner-content p strong {
  font-weight: 600;
}
.home-banner-wrapper .home-banner-content .banner-links a {
  padding: 15px 25px;
  background: white;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid white;
}
.home-banner-wrapper .home-banner-content .banner-links a:hover {
  background: transparent;
  color: white;
}
.home-banner-wrapper .home-banner-content .banner-links a:last-child {
  color: white;
  background: var(--color1);
  border: 1px solid var(--color1);
}
.home-banner-wrapper .home-banner-content .banner-links a:last-child:hover {
  background: transparent;
  color: white;
  border-color: white;
}
.home-banner-wrapper .home-banner-content .banner-tripadvisor a {
  width: 80px;
}
.home-banner-wrapper .swiper-pagination {
  z-index: 123;
  bottom: 1.4rem;
}
.home-banner-wrapper .swiper-pagination-bullet {
  background: white;
  opacity: 0.6;
  width: 8px;
  height: 8px;
}
.home-banner-wrapper .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 5px;
  background: white;
  opacity: 1;
}
.home-banner-wrapper .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .home-banner-wrapper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 6px;
}

.home-intro-wrapper {
  width: 100%;
  float: left;
  padding: 4rem 0;
}
.home-intro-wrapper .row {
  justify-content: space-between;
  padding: 0 !important;
}
.home-intro-wrapper .row .col, .home-intro-wrapper .row .col-lg-3, .home-intro-wrapper .row .col-lg-8 {
  padding: 0 !important;
}
.home-intro-wrapper .row h2 {
  font-size: 2.5rem;
}

.home-video-wrapper {
  width: 100%;
  float: left;
  min-height: 600px;
  height: 85vh;
  position: relative;
  overflow: hidden;
}
.home-video-wrapper #video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 3;
  transition: opacity 0.5s ease;
}
.home-video-wrapper video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  width: auto;
  height: auto;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.home-video-wrapper video.playing {
  opacity: 1;
  z-index: 2;
}
.home-video-wrapper .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 7.5%;
  pointer-events: none;
  color: white;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
}
.home-video-wrapper .overlay-content {
  width: 38%;
  background: #fbfaf8;
  display: block;
  text-align: left;
  padding: 3rem 2.5rem;
  pointer-events: all;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.home-video-wrapper .overlay-content a {
  padding: 12px 20px;
  font-size: 0.8rem;
  border: 1px var(--color1) solid;
  text-transform: uppercase;
  font-weight: 600;
  background: transparent;
  margin-top: 5px;
  float: left;
  pointer-events: all;
}
.home-video-wrapper .overlay-content a:hover {
  background: var(--color1);
  color: white;
}
.home-video-wrapper .overlay-content p {
  font-size: 0.85rem;
}
.home-video-wrapper .overlay-content h2 {
  font-size: 1.4rem;
}

.home-service-wrapper {
  width: 100%;
  float: left;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.home-service-wrapper .home-service {
  width: 100%;
  float: left;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.home-service-wrapper .home-service .home-service-content {
  width: 40%;
  padding: 3.2rem 2.5rem;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  background: white;
  background: #fbfaf8;
  position: relative;
  z-index: 2;
}
.home-service-wrapper .home-service .home-service-content a {
  padding: 12px 20px;
  font-size: 0.8rem;
  border: 1px var(--color1) solid;
  text-transform: uppercase;
  font-weight: 600;
  background: transparent;
  margin-top: 5px;
  float: left;
}
.home-service-wrapper .home-service .home-service-content a i {
  font-size: 1rem;
  line-height: 0;
}
.home-service-wrapper .home-service .home-service-content a:hover {
  background: var(--color1);
  color: white;
}
.home-service-wrapper .home-service .home-service-content p {
  font-size: 0.85rem;
}
.home-service-wrapper .home-service .home-service-image {
  width: 50%;
}
.home-service-wrapper .home-service-left .home-service-content {
  left: 3.5%;
}
.home-service-wrapper .home-service-right {
  justify-content: flex-start;
}
.home-service-wrapper .home-service-right .home-service-content {
  right: 3.5%;
}

.home-aminities-wrapper {
  width: 100%;
  float: left;
  background: #fbfaf8;
  background: var(--color1);
  padding-bottom: 5rem;
  overflow: hidden;
  position: relative;
}
.home-aminities-wrapper .home-aminities-intro {
  padding: 4rem 0 2rem;
}
.home-aminities-wrapper .home-aminities-intro p {
  color: white;
}
.home-aminities-wrapper .home-aminities-intro h2 {
  color: white;
}

.home-aminities-slider {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.home-aminities-slider .amenity-slide img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.home-aminities-slider .amenity-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.home-aminities-slider .slick-slider-wrapper {
  padding-left: 0;
  overflow: hidden;
  position: relative;
}
.home-aminities-slider .slick-slider-wrapper .slick-arrow {
  position: absolute;
  top: 40%;
  width: 3rem;
  height: 3rem;
  z-index: 12345;
  border: none;
  background: rgba(0, 0, 0, 0.647);
  color: white;
  font-size: 1.5rem;
}
.home-aminities-slider .slick-slider-wrapper .custom-prev {
  left: 1.5rem;
}
.home-aminities-slider .slick-slider-wrapper .custom-next {
  right: 2rem;
}
.home-aminities-slider .amenity-slide {
  margin: 0 10px;
}
.home-aminities-slider .amenity-slide .amenity-slide-content {
  background: white;
  box-shadow: rgba(0, 0, 0, 0.01) 0px 3px 12px;
}
.home-aminities-slider .amenity-slide .amenity-content {
  height: 100%;
  min-height: 150px;
}
.home-aminities-slider .slick-list {
  overflow: hidden;
  padding: 0;
}

.amenity-content h4 {
  margin-bottom: 8px;
  font-size: 1.1rem;
  font-weight: 600;
}

.amenity-content p {
  font-size: 0.8rem;
  color: #555;
}

.home-testimonials-wrapper {
  width: 100%;
  float: left;
  padding: 5rem 0;
}
.home-testimonials-wrapper .section-title {
  color: var(--color1);
  margin-bottom: 15px;
  font-weight: 600;
}
.home-testimonials-wrapper .swiper-wrapper {
  display: flex;
  align-items: stretch;
  padding-bottom: 60px;
}
.home-testimonials-wrapper .feedback-card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  box-sizing: border-box;
}
.home-testimonials-wrapper .swiper-slide {
  display: flex;
  height: auto !important;
}
.home-testimonials-wrapper .feedback-text {
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 1.4rem;
  text-align: center;
  font-size: 0.9rem;
}
.home-testimonials-wrapper .feedback-author {
  font-weight: bold;
  font-size: 15px;
  color: #666;
  text-align: center;
}
.home-testimonials-wrapper .feedback-author span {
  font-weight: normal;
  color: #666;
  font-style: italic;
}
.home-testimonials-wrapper .swiper-button-next,
.home-testimonials-wrapper .swiper-button-prev {
  color: #b88c58;
}
.home-testimonials-wrapper .feedback-swiper {
  padding: 0 5px;
}
.home-testimonials-wrapper .swiper-button-next, .home-testimonials-wrapper .swiper-button-prev {
  top: unset;
  bottom: 0px;
  z-index: 1234;
  width: 2.2rem;
  height: 2.2rem;
  background: var(--color1);
  color: white;
}
.home-testimonials-wrapper .swiper-button-next::after, .home-testimonials-wrapper .swiper-button-prev::after {
  font-size: 1rem;
}
.home-testimonials-wrapper .swiper-button-next {
  right: calc(50% - 50px);
}
.home-testimonials-wrapper .swiper-button-prev {
  left: calc(50% - 50px);
}

.home-dine-wrapper {
  width: 100%;
  float: left;
}
.home-dine-wrapper .home-dine {
  width: 100%;
  float: left;
  position: relative;
}
.home-dine-wrapper .home-dine img {
  max-height: 750px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.home-dine-wrapper .home-dine-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
}
.home-dine-wrapper .home-dine-content h2 {
  color: white;
  padding-bottom: 10px;
  font-size: 2rem;
}
.home-dine-wrapper .home-dine-content p {
  max-width: 800px;
  color: white;
  text-align: center;
  padding-bottom: 25px;
}
.home-dine-wrapper .home-dine-content .home-dine-links {
  float: left;
  width: 100%;
  display: flex;
  justify-content: center;
}
.home-dine-wrapper .home-dine-content a {
  color: white;
  background: var(--color1);
  border: var(--color1) 1px solid;
  padding: 12px 20px;
  float: left;
  text-transform: uppercase;
  font-size: 0.8rem;
}
.home-dine-wrapper .home-dine-content a:hover {
  background: #544819;
  border-color: #544819;
}

footer {
  width: 100%;
  float: left;
}
footer .footer-newsletter-wrapper {
  width: 100%;
  float: left;
  padding: 3rem 0;
}
footer .footer-newsletter {
  width: 100%;
  max-width: 1200px;
}
footer .footer-newsletter h3 {
  font-size: 1.8rem;
}
footer .footer-newsletter p {
  font-size: 1rem;
}
footer .footer-newsletter form {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: flex-end;
}
footer .footer-newsletter form .input-group {
  width: 100%;
}
footer .footer-newsletter form .input-group label, footer .footer-newsletter form .input-group input {
  display: block;
  width: 100%;
}
footer .footer-newsletter form .input-group label {
  font-size: 0.85rem;
  padding-bottom: 8px;
  color: var(--text-color);
  font-weight: 500;
}
footer .footer-newsletter form .input-group input {
  border: var(--color1) 1px solid;
  padding: 10px;
}
footer .footer-newsletter form button {
  color: white;
  background: var(--color1);
  padding: 14px 20px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 600;
}
footer .footer-newsletter form button:hover {
  background: #544819;
}

.footer-main-wrapper {
  background: var(--color1);
  padding: 3rem 0;
}
.footer-main-wrapper a {
  color: white;
  font-size: 0.8rem;
}
.footer-main-wrapper h2 {
  color: white;
}
.footer-main-wrapper p {
  color: white;
  font-size: 0.8rem;
  font-weight: 500;
}
.footer-main-wrapper .footer-main {
  display: grid;
  grid-template-columns: 4fr 3fr 5fr;
  gap: 30px;
}
.footer-main-wrapper .footer-main .footer-logo {
  width: 10rem;
}
.footer-main-wrapper .footer-main .footer-column h2 {
  font-family: Lato;
  text-transform: uppercase;
  padding-bottom: 15px;
  font-size: 1.4rem;
  font-weight: 600;
}
.footer-main-wrapper .footer-main .footer-column ul li {
  padding: 8px 0;
  text-transform: uppercase;
}
.footer-main-wrapper .footer-main .footer-column iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
}
.footer-main-wrapper .footer-main .footer-column iframe .gm-style .place-card, .footer-main-wrapper .footer-main .footer-column iframe .gm-style .default-card, .footer-main-wrapper .footer-main .footer-column iframe .gm-style .directions-card {
  display: none;
}

.footer-bottom p, .footer-bottom a {
  color: var(--color1);
  font-size: 0.85rem;
  font-weight: 500;
}
.footer-bottom .footer-socials a {
  width: 25px !important;
  height: 25px !important;
  background: var(--color1);
  border-radius: 30px;
  float: left;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-bottom .footer-socials a i {
  line-height: 1;
}

.sticky-contact-buttons {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sticky-btn {
  background: var(--color1);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  transition: box-shadow 0.2s;
  border: none;
  text-decoration: none;
  transition: all 0.3s ease;
}

.sticky-btn.sticky-call {
  font-size: 1.5rem;
}

.sticky-btn:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  color: #25d366;
  background: white;
}

.sticky-btn.sticky-call:hover {
  color: var(--color1);
}

.stay-banner-wrapper {
  height: 70vh;
  min-height: 100%;
  max-height: 700px;
  position: relative;
}
.stay-banner-wrapper .home-banner-content h1 {
  font-size: 2.5rem;
  line-height: 1.45;
}
.stay-banner-wrapper .mySwiper2, .stay-banner-wrapper .mySwiper3, .stay-banner-wrapper .mySwiper4 {
  width: 100%;
  height: 100%;
}
.stay-banner-wrapper .mySwiper2 .swiper-slide, .stay-banner-wrapper .mySwiper3 .swiper-slide, .stay-banner-wrapper .mySwiper4 .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  height: 100%;
}
.stay-banner-wrapper .mySwiper2 .swiper-slide img, .stay-banner-wrapper .mySwiper3 .swiper-slide img, .stay-banner-wrapper .mySwiper4 .swiper-slide img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.stay-room-wrapper {
  width: 100%;
  float: left;
  background: #fbfaf8;
  overflow: hidden;
}
.stay-room-wrapper .stay-room-row {
  padding-bottom: 6rem;
  padding-top: 5rem;
  border-bottom: 1px solid #ddd;
}
.stay-room-wrapper .stay-room-content h2 {
  font-size: 1.8rem;
  padding-bottom: 10px;
}
.stay-room-wrapper .stay-room-content p {
  padding-bottom: 8px;
}
.stay-room-wrapper .stay-room-content .stay-ctas {
  padding-top: 15px;
  display: flex;
  flex-wrap: wrap;
}
.stay-room-wrapper .stay-room-content .stay-ctas a {
  padding: 12px 20px;
  font-size: 0.8rem;
  border: 1px var(--color1) solid;
  text-transform: uppercase;
  font-weight: 600;
  background: transparent;
  margin-right: 15px;
  margin-bottom: 10px;
}
.stay-room-wrapper .stay-room-content .stay-ctas a:hover {
  background: var(--color1);
  color: white;
}

.gallery-container .swiper {
  width: 100%;
  height: 100%;
}
.gallery-container .swiper-slide {
  background: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.gallery-container .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery-container .swiper-pagination {
  position: absolute;
  bottom: -1.8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.gallery-container .swiper-pagination-bullet-active {
  background: var(--color1);
  width: 18px;
  border-radius: 10px;
}

.single-stay-intro a {
  padding: 12px 20px;
  font-size: 0.8rem;
  border: 1px var(--color1) solid;
  text-transform: uppercase;
  font-weight: 600;
  background: transparent;
  margin-top: 5px;
  float: left;
  color: white;
  background: var(--color1);
}
.single-stay-intro a:hover {
  background: transparent;
  color: var(--color1);
}

.stay-inclusions-wrapper {
  width: 100%;
  float: left;
}
.stay-inclusions-wrapper .stay-inclusions {
  width: 100%;
  float: left;
  padding: 3rem 3rem 2.5rem;
  background: var(--color1);
}
.stay-inclusions-wrapper .stay-inclusions h3 {
  color: white;
  font-size: 1.8rem;
  padding-bottom: 2.4rem;
  position: relative;
}
.stay-inclusions-wrapper .stay-inclusions h3:before {
  content: "";
  position: absolute;
  left: 0.75rem;
  bottom: 1.4rem;
  width: 80px;
  height: 1.5px;
  background: white;
}
.stay-inclusions-wrapper .stay-inclusions ul li {
  color: white;
  font-size: 0.9rem;
  padding-bottom: 20px;
  position: relative;
  padding-left: 20px;
}
.stay-inclusions-wrapper .stay-inclusions ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
}

.single-stay-contacts a {
  font-weight: 600;
  text-decoration: underline;
}

.single-stay-gallery-wrapper {
  width: 100%;
  float: left;
  padding: 1rem 0 4rem;
  /* Navigation buttons */
  /* Keep arrows just outside slides but within the padded area */
}
.single-stay-gallery-wrapper .single-stay-gallery {
  width: 100%;
  float: left;
  overflow: hidden;
}
.single-stay-gallery-wrapper .swiper {
  overflow: visible; /* let slide edges be visible */
}
.single-stay-gallery-wrapper .swiper-slide {
  height: 100%;
  overflow: hidden;
  background: #1b1f2a;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}
.single-stay-gallery-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.single-stay-gallery-wrapper .swiper-button-next,
.single-stay-gallery-wrapper .swiper-button-prev {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, 0.2);
  transition: transform 0.18s ease, background 0.18s ease, opacity 0.18s ease;
  opacity: 0.95;
  color: #fff;
}
.single-stay-gallery-wrapper .swiper-button-next:hover,
.single-stay-gallery-wrapper .swiper-button-prev:hover {
  background: rgba(0, 0, 0, 0.6);
  transform: translateY(-1px);
}
.single-stay-gallery-wrapper .swiper-button-next:after,
.single-stay-gallery-wrapper .swiper-button-prev:after {
  font-size: 16px;
}
.single-stay-gallery-wrapper .swiper-button-prev {
  left: 4px;
}
.single-stay-gallery-wrapper .swiper-button-next {
  right: 4px;
}
.single-stay-gallery-wrapper .slider-wrap {
  position: relative;
}

.stay-options-wrapper {
  width: 100%;
  float: left;
  background: #FAF5F1;
  padding: 4rem 0;
}
.stay-options-wrapper .stay-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}
.stay-options-wrapper .stay-card {
  position: relative;
  height: 500px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.stay-options-wrapper .stay-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}
.stay-options-wrapper .card-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.stay-options-wrapper .stay-card:hover .card-image {
  transform: scale(1.05);
}
.stay-options-wrapper .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 4rem;
  align-items: center;
  padding: 40px;
  color: white;
}
.stay-options-wrapper .stay-card:hover .card-overlay {
  opacity: 1;
}
.stay-options-wrapper .overlay-content {
  text-align: center;
}
.stay-options-wrapper .overlay-title {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.stay-options-wrapper .overlay-description {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.9;
  color: white;
}
.stay-options-wrapper .amenities {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}
.stay-options-wrapper .amenity {
  font-size: 0.8rem;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.stay-options-wrapper .book-button {
  background: white;
  color: var(--color1);
  padding: 10px 20px;
  border: none;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.stay-options-wrapper .book-button:hover {
  background: var(--color1);
  color: white;
  transform: translateY(-2px);
}
.stay-options-wrapper .book-button::after {
  content: "→";
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  transform: translateY(-2px);
}
.stay-options-wrapper .book-button:hover::after {
  transform: translateX(5px);
}
.stay-options-wrapper .card-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(184, 149, 106, 0.9));
  background: var(--color1);
  padding: 1.2rem 1.5rem;
}
.stay-options-wrapper .footer-title {
  font-size: 1.3rem;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Playfair Display", serif;
}
.stay-options-wrapper .footer-arrow {
  font-size: 1.7rem;
  transition: transform 0.3s ease;
}
.stay-options-wrapper .stay-card:hover .footer-arrow {
  transform: translateX(10px);
}
.stay-options-wrapper .explore-more {
  text-align: center;
}
.stay-options-wrapper .explore-button {
  background: transparent;
  color: var(--color1);
  padding: 12px 25px;
  border: 1.5px solid var(--color1);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}
.stay-options-wrapper .explore-button:hover {
  background: var(--color1);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(184, 149, 106, 0.3);
}
.stay-options-wrapper .explore-button::after {
  content: "→";
  font-size: 1.3rem;
  transition: transform 0.3s ease;
  transform: translateY(-3px);
}
.stay-options-wrapper .explore-button:hover::after {
  transform: translateX(5px);
}

/* Loading Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.stay-card {
  animation: fadeInUp 0.6s ease-out forwards;
}

.stay-card:nth-child(1) {
  animation-delay: 0.1s;
}

.stay-card:nth-child(2) {
  animation-delay: 0.2s;
}

.stay-card:nth-child(3) {
  animation-delay: 0.3s;
}

.dining-intro-wrapper {
  padding-bottom: 5rem;
}
.dining-intro-wrapper .stay-ctas {
  padding-top: 15px;
  display: flex;
  flex-wrap: wrap;
}
.dining-intro-wrapper .stay-ctas a {
  padding: 12px 20px;
  font-size: 0.8rem;
  border: 1px var(--color1) solid;
  text-transform: uppercase;
  font-weight: 600;
  background: transparent;
  margin-right: 15px;
  margin-bottom: 10px;
}
.dining-intro-wrapper .stay-ctas a:hover {
  background: var(--color1);
  color: white;
}
.dining-intro-wrapper .stay-ctas a:first-child {
  color: white;
  background: var(--color1);
}

.dining-content-wrapper {
  width: 100%;
  float: left;
  padding: 5.5rem 0;
  background: #fbfaf8;
}
.dining-content-wrapper h3 {
  line-height: 1.6;
}

.dining-content-cards {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 30px;
  align-items: start;
  /* First card - Gourmet dish */
  /* Second card - Beach dining */
  /* Third card - Wine cellar */
  /* Fourth card - Additional content area */
  /* Decorative elements */
  /* Animation on scroll */
  /* Typography enhancements */
}
.dining-content-cards .culinary-card {
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  background: white;
}
.dining-content-cards .culinary-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.dining-content-cards .card-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left bottom;
     object-position: left bottom;
  transition: transform 0.6s ease;
}
.dining-content-cards .culinary-card:hover .card-image {
  transform: scale(1.05);
}
.dining-content-cards .gourmet-card {
  grid-column: 1;
  grid-row: 1/3;
  height: 600px;
}
.dining-content-cards .gourmet-card .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.8));
  padding: 30px 30px 30px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.dining-content-cards .gourmet-title {
  color: #333;
  padding-bottom: 10px;
}
.dining-content-cards .gourmet-text {
  color: #5a6b4f;
  color: #333;
  font-size: 0.9rem;
  line-height: 1.7;
  font-style: italic;
  font-weight: 500;
}
.dining-content-cards .beach-card {
  grid-column: 2;
  grid-row: 1;
  height: 400px;
  position: relative;
}
.dining-content-cards .beach-card .card-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.92);
  padding: 20px;
  border-radius: 8px;
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
}
.dining-content-cards .beach-text {
  color: #4a5c42;
  font-size: 0.9rem;
  line-height: 1.6;
}
.dining-content-cards .wine-card {
  grid-column: 3;
  grid-row: 1;
  height: 400px;
}
.dining-content-cards .wine-card .card-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.92);
  padding: 20px;
  border-radius: 8px;
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
}
.dining-content-cards .wine-text {
  color: #4a5c42;
  font-size: 0.9rem;
  line-height: 1.6;
}
.dining-content-cards .content-card {
  grid-column: 2/4;
  grid-row: 2;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  padding: 20px 40px;
}
.dining-content-cards .additional-content {
  text-align: center;
  color: #5a6b4f;
  font-size: 1.1rem;
  line-height: 1.8;
  font-style: italic;
  max-width: 700px;
}
.dining-content-cards .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.dining-content-cards .culinary-card:hover .card-overlay {
  opacity: 1;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.dining-content-cards .culinary-card {
  animation: fadeInUp 0.8s ease-out forwards;
}
.dining-content-cards .culinary-card:nth-child(1) {
  animation-delay: 0.1s;
}
.dining-content-cards .culinary-card:nth-child(2) {
  animation-delay: 0.2s;
}
.dining-content-cards .culinary-card:nth-child(3) {
  animation-delay: 0.3s;
}
.dining-content-cards .culinary-card:nth-child(4) {
  animation-delay: 0.4s;
}
.dining-content-cards .highlight {
  color: #8b7355;
  font-weight: 500;
}
.dining-content-cards .elegant-separator {
  width: 40px;
  height: 2px;
  background: #b8956a;
  margin: 15px auto;
  border-radius: 1px;
}

.dining-offers-wrapper {
  width: 100%;
  float: left;
}
.dining-offers-wrapper a {
  padding: 12px 20px;
  font-size: 0.8rem;
  border: 1px var(--color1) solid;
  text-transform: uppercase;
  font-weight: 600;
  background: transparent;
  margin-right: 15px;
  margin-bottom: 10px;
}

.history-banner-wrapper {
  height: 85vh;
  max-height: 700px;
}

.history-intro-wrapper {
  width: 100%;
  float: left;
  padding: 4rem 0;
}

.timeline-wrapper {
  width: 100%;
  float: left;
  padding: 4rem 0 5rem;
  background: #fbfaf8;
}

.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  width: 4px;
  background: var(--color1);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
}

.timeline-content {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 45%;
  height: -moz-fit-content;
  height: fit-content;
}

.timeline-image {
  width: 100%;
  max-width: 45%;
}
.timeline-image p {
  font-weight: 500;
}
.timeline-image img {
  max-height: 550px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.timeline-date {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color1);
}

.timeline-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  color: #444;
}

.timeline-text {
  color: var(--text-color);
  line-height: 1.7;
  font-size: 1rem;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  background: var(--color1);
  border: 4px solid white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2);
}

/* Guest Cards */
.guest-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid var(--color1);
  height: 100%;
}

.guest-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.guest-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
}

.guest-description {
  color: #666;
  font-size: 0.95rem;
}

/* Location Section */
.location-section {
  background: var(--secondary-gradient);
  color: white;
}

.cta-button {
  background: var(--primary-gradient);
  border: none;
  border-radius: 50px;
  padding: 1rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  background: var(--primary-gradient);
}

/* Floating Shapes */
.floating-shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.shape {
  position: absolute;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.shape:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape:nth-child(2) {
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.shape:nth-child(3) {
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}
.history-gallery-wrapper {
  padding: 5rem 0 1rem;
}

.history-gallery-title a.book-btn {
  padding: 12px 20px;
  font-size: 0.8rem;
  border: 1px var(--color1) solid;
  text-transform: uppercase;
  font-weight: 600;
  background: transparent;
  margin-top: 5px;
  float: left;
  color: white;
  background: var(--color1);
}
.history-gallery-title a.book-btn:hover {
  background: transparent;
  color: var(--color1);
}

.attractions-banner-wrapper {
  height: 100vh;
  min-height: 100%;
  max-height: 900px;
  position: relative;
}

.attractions-intro-wrapper {
  background: #FAF5F1;
}
.attractions-intro-wrapper .row h2 {
  font-size: 2rem;
}
.attractions-intro-wrapper li {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: auto;
}
.attractions-intro-wrapper li p {
  text-align: center;
  line-height: 1.4;
}
.attractions-intro-wrapper li p.fs-6 {
  font-weight: 500;
  font-size: 0.8rem !important;
  text-transform: uppercase;
}
.attractions-intro-wrapper li img {
  width: 50px;
  margin: unset;
  padding-bottom: 8px;
}
.attractions-intro-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.attractions-section-wrapper {
  /* Hover lift */
}
.attractions-section-wrapper .attractions-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.8rem;
}
.attractions-section-wrapper .attraction-card {
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: translateZ(0);
}
.attractions-section-wrapper .attraction-image {
  position: relative;
  width: 100%;
  /* 3:2 responsive cover */
  padding-top: 66.6667%;
  background-size: cover;
  background-position: center;
}
.attractions-section-wrapper .attraction-distance {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(17, 24, 39, 0.86);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.2px;
}
.attractions-section-wrapper .attraction-content {
  padding: 14px 16px 18px;
}
.attractions-section-wrapper .attraction-title {
  margin: 0 0 6px 0;
  font-size: 18px;
  line-height: 1.3;
}
.attractions-section-wrapper .attraction-description {
  margin: 0;
  font-size: 14px;
  color: #4b5563;
}
.attractions-section-wrapper .attraction-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.attractions-section-wrapper .attraction-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
}
.attractions-section-wrapper .wrap {
  max-width: 1200px;
  padding: 24px;
  margin: 0 auto;
}

.attractions-experience-wrapper {
  background: #FAF5F1;
}
.attractions-experience-wrapper .experience-card {
  background: white;
  padding: 30px;
  text-align: center;
  transition: all 0.5s ease;
  height: 100%;
}
.attractions-experience-wrapper .experience-card h3 {
  font-size: 1rem;
  padding-bottom: 8px;
  color: #444;
  font-family: "Montserrat", "Roboto", sans-serif;
  font-weight: 600;
}
.attractions-experience-wrapper .experience-card p {
  font-size: 0.85rem;
  line-height: 1.6;
}
.attractions-experience-wrapper .experience-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(65, 54, 39, 0.1);
}
.attractions-experience-wrapper .experience-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #fcb040, #ff6b35);
  background: linear-gradient(to bottom, #a59967, #f5f3e6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: white;
}

.gallery-grid-wrapper {
  /* Stack images in preview */
  /* Expanded gallery modal */
}
.gallery-grid-wrapper h1 {
  font-size: 2.5rem;
  padding-bottom: 1rem;
}
.gallery-grid-wrapper .gallery-card {
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.gallery-grid-wrapper .gallery-card:hover {
  transform: translateY(-3px);
}
.gallery-grid-wrapper .gallery-stack {
  display: grid;
}
.gallery-grid-wrapper .gallery-stack img {
  width: 100%;
  grid-area: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s;
}
.gallery-grid-wrapper .gallery-stack img:nth-child(2) {
  transform: rotate(-2deg) translateY(4px);
}
.gallery-grid-wrapper .gallery-stack img:nth-child(3) {
  transform: rotate(2deg) translateY(8px);
}
.gallery-grid-wrapper .gallery-stack img:nth-child(4) {
  transform: rotate(-3deg) translateY(12px);
}
.gallery-grid-wrapper .gallery-stack img:nth-child(5) {
  transform: rotate(3deg) translateY(16px);
}
.gallery-grid-wrapper .gallery-title {
  position: relative;
  bottom: -1rem;
  color: var(--text-color);
  padding: 15px 12px;
  border-radius: 6px;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}
.gallery-grid-wrapper .modal-gallery img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.gallery-grid-wrapper .modal-lg, .gallery-grid-wrapper .modal-xl {
  max-width: 1100px;
}
.gallery-grid-wrapper .modal-content {
  overflow: hidden;
}
.gallery-grid-wrapper .modal-content .modal-body {
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  overflow-x: hidden;
}
.gallery-grid-wrapper .modal-title {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}

.gallery-hero-wrapper {
  height: 55vh;
  min-height: 500px;
  overflow: hidden;
}
.gallery-hero-wrapper img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}
.gallery-hero-wrapper .gallery-hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  padding-top: 4rem;
}
.gallery-hero-wrapper .gallery-hero-content h1 {
  font-size: 3rem;
  padding-bottom: 0.8rem;
  color: white;
}
.gallery-hero-wrapper .gallery-hero-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  color: white;
}

.mobile-navigation-wrapper {
  display: none;
  background: #fff;
  position: absolute;
  position: fixed;
  z-index: 12489;
  width: 100%;
  float: left;
}

header .mobile-navigation-wrapper .container-rigid {
  padding: 0px;
}

.mobile-header {
  padding: 8px 25px;
  background: var(--color1);
  height: 85px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}
.mobile-header .logo {
  width: 180px;
}
.mobile-header .logo img {
  filter: brightness(0) invert(1);
}
.mobile-header .menu-toggle {
  width: 28px;
  height: 22px;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mobile-header .menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.mobile-header .menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
  position: absolute;
}
.mobile-header .menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-header .menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 9px;
  position: absolute;
}

.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid #ddd;
  padding: 0rem 0 2rem;
  height: calc(100vh - 85px);
}

.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.mobile-menu a {
  display: block;
  padding: 1.2rem 1rem;
  color: #222;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid #cac0b7;
  font-size: 0.9rem;
}

.mobile-menu a:hover {
  background: #FAF5F1;
}

.mobile-menu a.active {
  background: var(--color1);
  background: #FAF5F1;
  font-weight: 600;
  border-bottom: 2px solid var(--color1);
  border-left: 5px solid var(--color1);
}

.mobile-menu .mobile-submenu {
  display: none;
  background: #f9f9f9;
  background: #fbfaf8;
}

.mobile-menu .mobile-submenu a {
  padding-left: 1.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  background: #FAF5F1;
  background: var(--color1);
  color: white;
}

.mobile-menu .mobile-submenu a:hover {
  background: #FAF5F1;
  color: var(--color1);
  color: #444;
}

.mobile-menu .mobile-submenu a.active {
  background: var(--color1);
  position: relative;
  border-bottom: 2px solid #cac0b7;
  background: #FAF5F1;
  border-left: 10px solid var(--color1);
  color: var(--color1);
}

.mobile-menu .book-now a {
  background: var(--color1);
  color: white;
  font-size: 0.9rem;
  padding: 1.1rem 1.8rem;
}

.mobile-menu .has-submenu a {
  display: flex;
  justify-content: space-between;
}

.gallery-grid-wrapper {
  padding-top: 3rem !important;
}

.gallery-grid-wrapper .col-md-6 {
  margin-top: 20px !important;
}

.dining-offers-wrapper a {
  float: left;
}
.desktop-navigation-wrapper .book-now{
    display:flex;
    height: 100%;
    align-items: stretch;
    
}
.desktop-navigation{
    position: relative;
}
.langauge-dropdown-wrapper {
  
  /*height:100%;*/
}

.desktop-navigation-wrapper .book-now .language, .mobile-navigation-wrapper .mobile-right .language{
    padding:8px 10px;
    margin-right:0;
    display:flex;
    align-items:center;
    border:var(--color1) solid 1px;
    font-size:0.8rem;
    color:var(--text-color);
    color:#6a6036;
    font-weight:600;
    height:100%;
    background:none;
}
.mobile-navigation-wrapper .mobile-right .language{
    padding:0px 2px 7px;
    color:white;
    background:none;
    border:none;
    border-bottom:white solid 1px;
    font-size:0.75rem;
    margin-left:10px;
}
.mobile-navigation-wrapper .mobile-right {
    position:relative;
}
.desktop-navigation-wrapper .book-now .language img, .mobile-navigation-wrapper .mobile-right .language img{
    width:18px;
    margin-right:7px;
}
.desktop-navigation-wrapper .book-now .language i, .mobile-navigation-wrapper .mobile-right .language i{
    margin-left:2px;
}
.langauge-dropdown-wrapper #language-dropdown i {
  font-size: 12px;
}
.langauge-dropdown-wrapper .language-submenu {
  position: absolute;
  width: 100%;
  max-width:80px;
  background-color: #ffffff;
  top: 75px;
  /*left: 0;*/
  right: 0;
  z-index: 100;
  display: none;
  overflow: hidden;
  width:100%;
}

.mobile-navigation-wrapper .mobile-right .langauge-dropdown-wrapper .language-submenu{
    top:55px;
    right:0px;
    max-width:115px;
}
.langauge-dropdown-wrapper .language-submenu ul{
    display:block!important;
}
.langauge-dropdown-wrapper .language-submenu ul li{
    display:block;
}
.langauge-dropdown-wrapper .language-submenu ul a{
    width: 100%;
    padding: 10px 12px!important;
    color: var(--color1) !important;
    font-weight: 500!important;
    font-size: 14px;
    border-bottom: 1px var(--color1) solid;
    float:left;
    text-transform:uppercase;
    display:flex;
    align-items:center;
    background:white;
}
.mobile-navigation-wrapper .langauge-dropdown-wrapper .language-submenu ul a{
    font-size:12.5px;
    padding: 10px 12px!important;
}
.mobile-navigation-wrapper .langauge-dropdown-wrapper .language-submenu ul a.active{
    background:#FAF5F1;
    background:#ece0d7;
    color:#4a4a4a!important;
    font-weight:600;
}
.langauge-dropdown-wrapper .language-submenu ul a img{
    width:18px;
    margin:unset;
    margin-right:7px;
}
.langauge-dropdown-wrapper .language-submenu ul a:hover{
    background: var(--color1);
    background:#6a6036;
  color: white !important;
}
.langauge-dropdown-wrapper .language-submenu ul a.active{
    background: var(--color1);
  color: white !important;
}
.langauge-dropdown-wrapper .language-submenu ul a.active::after, .langauge-dropdown-wrapper .language-submenu ul a:hover::after{
    background: none!important;
}
.langauge-dropdown-wrapper .language-submenu ul li{
    padding:0!important;
}
.mobile-navigation-wrapper .book-now{
    
}





@media handheld, only screen and (min-width: 1920px) {
  .container-rigid {
    max-width: 1800px;
  }
}
/* Responsive Design */
@media (max-width: 1450px) {
  .home-banner-wrapper {
    height: 80vh;
    min-height: 550px;
  }
  .home-service-wrapper .home-service .home-service-image {
    width: 55%;
  }
  .home-service-wrapper .home-service-left .home-service-content {
    left: 8.5%;
  }
  .home-service-wrapper .home-service .home-service-content {
    width: 45%;
  }
  .home-service-wrapper .home-service-right .home-service-content {
    right: 8.5%;
  }
}
@media (max-width: 1200px) {
  body h1 {
    font-size: 2rem;
  }
  .home-banner-wrapper .home-banner-content .banner-tripadvisor a{
      width:60px;
  }
  .desktop-navigation .book-now a{
      padding:10px 15px;
  }
  .desktop-navigation-wrapper .book-now .language{
      padding:8px 10px;
  }
  .desktop-navigation li a{
      padding-left:0!important;
      padding-right:0!important;
      font-size:0.8rem;
  }
  .gallery-grid-wrapper {
    padding-top: 2rem !important;
  }
  .home-banner-wrapper {
    height: 70vh;
    min-height: 450px;
  }
  .home-intro-wrapper .row h2 {
    font-size: 2rem;
  }
  .home-intro-wrapper {
    padding: 3rem 0;
  }
  .home-video-wrapper .overlay-content {
    width: 100%;
    padding: 3rem 7.5%;
  }
  .home-video-wrapper {
    height: 100%;
    min-height: 500px;
  }
  .home-video-wrapper .video-overlay {
    padding-right: 0;
    position: relative;
    float: left;
    height: -moz-fit-content;
    height: fit-content;
  }
  .home-video-wrapper video {
    position: relative;
    top: unset;
    left: unset;
    transform: translate(0, 0);
    max-height: 600px;
  }
  .home-video-wrapper #video-placeholder {
    position: relative;
  }
  .home-service-wrapper .home-service .home-service-image {
    width: 50%;
  }
  .home-service-wrapper .home-service .home-service-content {
    width: 50%;
  }
  .home-service-wrapper .home-service-left .home-service-content {
    left: 7.5%;
  }
  .home-service-wrapper .home-service-right .home-service-content {
    right: 7.5%;
  }
  .home-aminities-wrapper .home-aminities-intro {
    padding: 3rem 0 1rem;
  }
  .home-aminities-wrapper {
    padding-bottom: 3rem;
  }
  .home-testimonials-wrapper {
    padding: 3rem 0;
  }
  body h2, footer .footer-newsletter h3 {
    font-size: 1.6rem;
  }
  .home-dine-wrapper .home-dine-content h2 {
    font-size: 1.8rem;
  }
  .footer-main-wrapper .footer-main {
    gap: 20px;
    display: flex;
    flex-wrap: wrap;
  }
  .footer-column1 {
    width: calc(50% - 15px);
  }
  .footer-column2 {
    width: calc(50% - 15px);
  }
  .footer-column3 {
    width: 100%;
  }
  .stay-banner-wrapper .home-banner-content h1 {
    font-size: 2rem;
  }
  .stay-inclusions-wrapper .stay-inclusions h3 {
    font-size: 1.6rem;
  }
  .single-stay-gallery-wrapper {
    padding-bottom: 3rem;
  }
  .stay-options-wrapper {
    padding: 3rem 0;
  }
  .dining-content-wrapper {
    padding: 3rem 0;
  }
  .dining-content-wrapper h3 {
    padding-top: 0 !important;
    font-size: 1.2rem;
    padding-bottom: 0.8rem !important;
  }
  .dining-content-cards .gourmet-title {
    font-size: 1.2rem;
  }
  .dining-content-cards {
    display: grid;
    gap: 25px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
  .dining-content-cards .gourmet-card {
    grid-column: 1/3;
    grid-row: 1;
  }
  .dining-content-cards .beach-card {
    grid-column: 1/2;
    grid-row: 2;
  }
  .dining-content-cards .wine-card {
    grid-column: 2/3;
    grid-row: 2;
  }
  .dining-content-cards .content-card {
    grid-column: 1/3;
    grid-row: 3;
    min-height: 100px;
    padding: 0;
  }
  .dining-content-cards .elegant-separator {
    margin: 8px auto;
  }
  .timeline-wrapper {
    padding: 3rem 0 3rem;
  }
  .timeline-wrapper .section-title {
    margin-bottom: 10px !important;
  }
  .gallery-hero-wrapper .gallery-hero-content h1 {
    font-size: 2.5rem;
  }
  .gallery-hero-wrapper .gallery-hero-content p {
    font-size: 1rem;
  }
  .stay-options-wrapper .stay-options {
    margin-bottom: 35px;
  }
}
@media (max-width: 1024px) {
  .dining-content-cards {
    grid-template-columns: 1fr 1fr !important;
    gap: 30px;
  }
  .gourmet-card {
    grid-column: 1;
    grid-row: 1/3;
    height: 500px;
  }
  .beach-card {
    grid-column: 2;
    grid-row: 1;
  }
  .wine-card {
    grid-column: 2;
    grid-row: 2;
    height: 300px;
  }
  .content-card {
    grid-column: 1/3;
    grid-row: 3;
    padding: 30px;
  }
 
  /*header .mobile-navigation-wrapper .container-rigid{*/
  /*            width: 100%;*/
  /*}*/
}
@media (max-width: 991.98px) {
  .home-intro-wrapper {
    padding: 1rem 0;
  }
  .home-intro-wrapper .row h2 {
    font-size: 1.8rem;
  }
  .gallery-grid-wrapper {
    padding-top: 3rem !important;
  }
  .home-service-wrapper {
    padding: 2rem 0;
  }
  .home-service-wrapper .home-service {
    flex-wrap: wrap;
    align-items: stretch;
  }
  .home-service-wrapper .home-service-left .home-service-content {
    left: 0%;
  }
  .home-service-wrapper .home-service-right .home-service-content {
    right: 0%;
  }
  .home-testimonials-wrapper {
    padding: 2rem 0;
  }
  footer .footer-newsletter-wrapper {
    padding: 2rem 0;
  }
  .home-video-wrapper video {
    max-height: 520px;
  }
  .stay-options-wrapper {
    padding: 2rem 0;
  }
  .dining-intro-wrapper {
    padding: 2rem 0 !important;
  }
  .dining-content-wrapper {
    padding: 2rem 0;
  }
  .dining-offers-wrapper a {
    float: left;
  }
  .timeline-wrapper {
    padding: 2rem 0 2rem;
  }
  .timeline-wrapper .section-title {
    margin-bottom: 5px !important;
  }
  .timeline::before {
    left: 8px;
    transform: translateX(0);
  }
  .timeline-dot {
    left: 0px;
    top: 20px;
    transform: translate(0, 0);
  }
  .timeline-content-wrapper {
    flex-direction: column;
    align-items: flex-end !important;
  }
  .timeline-image {
    width: calc(100% - 40px);
    max-width: 100%;
    margin-bottom: 15px;
  }
  .timeline-content {
    width: calc(100% - 40px);
    max-width: 100%;
    padding: 30px;
  }
  .timeline-title {
    font-size: 1.4rem;
    margin-bottom: 10px !important;
  }
  .timeline-text {
    font-size: 0.9rem;
  }
  .attractions-intro-wrapper ul {
    justify-content: space-between;
  }
  .attractions-intro-wrapper ul li {
    width: calc(25% - 1.13rem);
  }
}
@media (max-width: 960px) {
  .timeline-wrapper {
    padding: 0;
  }
   header .desktop-navigation-wrapper {
    display: none;
  }
  header .mobile-navigation-wrapper {
    display: block;
    background: var(--color1);
  }
  .timeline-wrapper .container-fluid {
    padding: 0 !important;
  }
  .attractions-section-wrapper {
    margin: 0 !important;
  }
  .attractions-section-wrapper .container-fluid {
    padding: 0 !important;
  }
  .attractions-section-header {
    padding-bottom: 10px !important;
  }
  .attractions-section-wrapper .attractions-grid {
    gap: 1.5rem;
  }
  .attractions-experience-wrapper {
    padding: 0 !important;
  }
  .attractions-experience-wrapper .container-fluid {
    margin: 0 !important;
    padding: 0 !important;
  }
  .attractions-experience-wrapper .container-rigid {
    padding-bottom: 10px;
  }
  
  .container-rigid {
    width: 100%;
    padding: 20px 25px;
  }
  .home-testimonials-wrapper {
    padding: 0.4rem 0;
  }
  .dining-offers-wrapper {
    padding: 0 !important;
  }
  .home-testimonials-wrapper .section-title {
    margin-bottom: 8px;
  }
  .home-service-wrapper .home-service .home-service-content {
    width: 100%;
  }
  .home-service-wrapper .home-service .home-service-image {
    width: 100%;
  }
  .home-service-wrapper .home-service-left .home-service-content {
    order: 2;
  }
  .home-service-wrapper .home-service-left .home-service-image {
    order: 1;
  }
  .home-service-wrapper .home-service {
    padding: 25px;
  }
  .home-service-wrapper {
    padding: 10px 0;
  }
  .dining-intro-wrapper .stay-ctas a {
    padding: 12px 15px 10px;
  }
  .dining-banner-wrapper .home-banner-content p {
    font-size: 1rem;
  }
  .dining-content-wrapper h3 {
    font-size: 1.1rem;
    font-weight: 400;
  }
  .dining-intro-wrapper {
    padding: 0.5rem 0 !important;
  }
  .dining-content-wrapper {
    padding: 0.5rem 0;
  }
  .dining-content-wrapper .w-75 {
    width: 100% !important;
    padding: 0 0 10px !important;
  }
  .dining-content-cards {
    gap: 20px;
    padding: 0;
  }
  .home-service-wrapper .home-service-left {
    padding-bottom: 5px;
  }
  body h1 {
    font-size: 1.8rem;
  }
  .stay-options-wrapper {
    padding: 10px 0;
  }
  .single-stay-gallery-wrapper {
    padding-bottom: 0.5rem;
  }
  .stay-inclusions-wrapper {
    margin-bottom: 0 !important;
    margin-top: -25px;
  }
  .stay-banner-wrapper .home-banner-content h1 {
    font-size: 1.8rem;
  }
  .home-video-wrapper video {
    max-height: 480px;
  }
  .home-aminities-wrapper {
    padding-bottom: 2rem;
  }
  .home-aminities-wrapper .home-aminities-intro {
    padding: 1rem 0 0;
  }
  .home-banner-wrapper .home-banner-content .banner-tripadvisor a {
    width: 60px;
  }
  .sticky-btn {
    width: 45px;
    height: 45px;
    font-size: 1.7rem;
  }
  .sticky-btn.sticky-call {
    font-size: 1.2rem;
  }
  .home-banner-wrapper {
    margin-top: 70px;
    height: 55vh;
    min-height: 450px;
  }
  .home-intro-wrapper {
    padding: 0 !important;
  }
  .home-intro-wrapper .row h2 {
    font-size: 1.6rem;
    padding: 0 0 5px !important;
  }
  .home-intro-wrapper .row .col-lg-12 {
    padding: 0 !important;
  }
  .home-video-wrapper .overlay-content {
    padding: 1.5rem 25px;
  }
  .home-service-wrapper .home-service .home-service-content {
    padding: 25px 25px 30px;
  }
  .home-service-wrapper .home-service .home-service-content p {
    padding-bottom: 0.5rem !important;
  }
  body h3, body h2, footer .footer-newsletter h3 {
    font-size: 1.4rem;
  }
  .home-dine-wrapper .home-dine-content h2 {
    font-size: 1.6rem;
    padding-bottom: 5px;
  }
  .home-dine-wrapper .home-dine-content p {
    padding-bottom: 15px;
  }
  footer .footer-newsletter-wrapper {
    padding: 0 0 8px;
  }
  footer .footer-newsletter p {
    font-size: 0.9rem;
  }
  .footer-main-wrapper .footer-main .footer-column h2 {
    padding-bottom: 8px;
    font-size: 1.2rem;
  }
  .footer-main-wrapper .footer-main .footer-column ul li {
    padding: 5px 0;
  }
  .footer-main-wrapper {
    padding: 0rem 0 1rem;
  }
  .footer-bottom-wrapper {
    padding: 0 !important;
  }
  .footer-bottom {
    flex-wrap: wrap;
    justify-content: center !important;
  }
  .footer-bottom p {
    width: 100%;
    text-align: center;
    line-height: 1.2;
  }
  .footer-bottom ul {
    width: 100%;
    justify-content: center;
    padding-top: 15px;
  }
  .stay-inclusions-wrapper .stay-inclusions {
    padding: 25px 25px 20px;
  }
  .stay-inclusions-wrapper .stay-inclusions h3 {
    font-size: 1.4rem;
  }
  .history-gallery-wrapper {
    padding-bottom: 0;
    padding-top: 0 !important;
  }
  .history-gallery-title {
    padding: 0 !important;
  }
  .history-gallery-title .container-rigid {
    padding-bottom: 10px;
  }
  .single-stay-gallery-wrapper .single-stay-gallery {
    padding-bottom: 5px !important;
  }
  .attractions-intro-wrapper .container-fluid {
    padding: 0 !important;
  }
  .gallery-hero-wrapper .gallery-hero-content p {
    font-size: 0.95rem;
  }
  .gallery-hero-wrapper .gallery-hero-content h1 {
    font-size: 1.8rem;
    padding-bottom: 0.5rem;
  }
  .gallery-grid-wrapper {
    padding: 3rem 0 0 !important;
    margin: 0 !important;
  }
  .gallery-grid-wrapper .gallery-title {
    font-size: 1rem;
    padding: 10px 8px;
  }
  .footer-main-wrapper .footer-main .footer-logo {
    width: 8rem;
  }
  .dining-offers-wrapper .container-fluid {
    padding: 0 !important;
  }
  .stay-options-wrapper .container-fluid {
    padding: 0 !important;
  }
  .stay-options-wrapper .stay-options {
    margin-bottom: 25px;
  }
}
@media (max-width: 768px) {
  .attractions-intro-wrapper ul li {
    width: 50%;
    padding: 15px;
  }
  .mobile-header{
      height:75px;
  }
  .mobile-navigation-wrapper .mobile-right .langauge-dropdown-wrapper .language-submenu{
      top:50px;
  }
  .mobile-header .logo{
      width:140px;
  }
  .home-banner-wrapper .home-banner-content .banner-links a{
      padding:12px 20px;
  }
  .attractions-intro-wrapper iframe {
    min-height: 350px;
  }
  .attractions-intro-wrapper ul {
    gap: 0 !important;
  }
  .attractions-intro-wrapper ul li:nth-child(1) {
    border-right: 1px solid var(--color1);
    border-bottom: 1px solid var(--color1);
  }
  .attractions-intro-wrapper ul li:nth-child(3) {
    border-right: 1px solid var(--color1);
  }
  .attractions-intro-wrapper ul li:nth-child(2) {
    border-bottom: 1px solid var(--color1);
  }
  .dining-content-cards {
    grid-template-columns: 1fr !important;
    gap: 25px;
  }
  .dining-content-cards .gourmet-card,
  .dining-content-cards .beach-card,
  .dining-content-cards .wine-card {
    grid-column: 1;
    grid-row: auto;
    height: -moz-fit-content;
    height: fit-content;
    max-height: 450px;
  }
  .dining-content-cards .content-card {
    grid-column: 1;
    grid-row: auto;
    min-height: 150px;
    padding: 5px;
    padding-top: 0;
  }
  .dining-content-cards .gourmet-text,
  .dining-content-cards .additional-content {
    font-size: 0.95rem;
  }
  .dining-content-cards .gourmet-text {
    font-size: 0.85rem;
    color: #4a5c42;
  }
  .dining-content-cards .beach-text,
  .dining-content-cards .wine-text {
    font-size: 0.85rem;
  }
  .dining-content-cards .culinary-card .card-content {
    padding: 20px;
  }
  .dining-content-cards .gourmet-card .card-content {
    padding: 30px 20px 20px;
  }
  .banner-tripadvisor {
    padding-top: 0 !important;
  }
  .home-banner-wrapper .home-banner-content .banner-tripadvisor a {
    width: 50px;
  }
  .stay-options-wrapper .section-title {
    font-size: 2.2rem;
  }
  .stay-options-wrapper .stay-options {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .stay-options-wrapper .stay-card {
    height: 400px;
  }
  .stay-options-wrapper .card-overlay {
    padding: 30px 25px;
  }
  .stay-options-wrapper .overlay-title {
    font-size: 1.2rem;
  }
  .stay-options-wrapper .overlay-description {
    font-size: 0.9rem;
  }
  .stay-options-wrapper .amenities {
    gap: 10px;
  }
  .stay-options-wrapper .amenity {
    font-size: 0.8rem;
    padding: 4px 10px;
  }
  .stay-options-wrapper .card-footer {
    padding: 25px 25px 20px;
  }
  .stay-options-wrapper .footer-title {
    font-size: 1.3rem;
  }
  body h1 {
    font-size: 1.6rem;
  }
  .home-banner-wrapper .home-banner-content h1 {
    padding-bottom: 0 !important;
  }
  .home-banner-wrapper .home-banner-content p {
    font-size: 0.8rem;
  }
  .home-intro-wrapper .row h2 {
    font-size: 1.4rem;
  }
  .home-banner-wrapper .home-banner-content .banner-links a{
      font-size:0.75rem;
  }
  footer .footer-newsletter form {
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-column1, .footer-column2 {
    width: 100%;
    padding-bottom: 10px;
  }
  .home-video-wrapper video {
    max-height: 400px;
  }
  .stay-banner-wrapper .home-banner-content h1 {
    font-size: 1.6rem;
  }
  .dining-content-wrapper h3 {
    font-size: 1rem;
    font-weight: 400;
  }
  .dining-content-cards .gourmet-card {
    max-height: 600px;
  }
  .dining-content-cards .gourmet-card .card-content {
    position: relative;
    padding: 20px;
  }
  .gym-intro-wrapper ul li {
    width: calc(100% - 10px);
    min-width: 200px;
  }
  .dining-content-cards .gourmet-title {
    font-size: 1.1rem;
  }
}
@media (max-width: 600px) {
  body h1 {
    font-size: 1.4rem;
  }
  .stay-banner-wrapper .home-banner-content h1 {
    font-size: 1.4rem;
  }
  .home-intro-wrapper .row h2 {
    font-size: 1.2rem;
  }
  .home-video-wrapper video {
    max-height: 320px;
  }
  .attractions-intro-wrapper iframe {
    min-height: 300px;
  }
}
@media (max-width: 480px) {
  .attractions-intro-wrapper ul li {
    width: 100%;
    border: none !important;
    border-bottom: 1px solid var(--color1) !important;
  }
  .attractions-intro-wrapper ul li:last-child {
    border-bottom: none !important;
  }
  .attractions-intro-wrapper iframe {
    min-height: 250px;
  }
}/*# sourceMappingURL=style.css.map */