@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Lato:wght@300;400;700;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    background-color: #f1f4f7;
    color: #3b495e;
    font-family: "DM Sans", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

.wrapper {
  width: 100%;
  max-width: 900px;
  margin: 50px auto;
  padding-left: 30px;
  padding-right: 30px;
  box-sizing: border-box;
}

.wrapper > * {
  margin-bottom: 30px;
}

/* ------------------------------------------- */
/*           Snippflow Hotel Hero              */
/* ------------------------------------------- */

.sf-hotel-hero {
  position: relative;
  width: 100%;
  height: 50vh;
  font-size: 1rem;
  line-height: 1.2;
  color: #fff;
}
.sf-hotel-hero a {
  color: #a9c7ee;
}
.sf-hotel-hero .hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 30px;
}
.sf-hotel-hero .hero-top a.hero-logo {
  display: block;
  line-height: 0;
}
.sf-hotel-hero .hero-top a.hero-logo img {
  width: 140px;
  height: auto;
}

.sf-hotel-hero .hero-top .hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 20px;
  border-radius: 30px;
}

.sf-hotel-hero .hero-top a.booking-button {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 20px;
  color: #fff;
  font-weight: 700;
  border: 1px solid #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.sf-hotel-hero .hero-top a.booking-button:hover {
  background-color: #fff;
  border: 1px solid #fff;
  color: #000;
}

.sf-hotel-hero .hero-top .menu-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}
.sf-hotel-hero .hero-top .menu-icons a {
  font-size: 24px;
  display: none;
}              
.sf-hotel-hero .hero-top .menu-icons a.open-menu {
    display: block;
}
.sf-hotel-hero .hero-content {
  height: 100vh;
 % width: 100%;
}
.sf-hotel-hero .hero-content .hero-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50vh;
  position: absolute;
  left: 0;
  top: 0;
}
.sf-hotel-hero .hero-content .banner-wrapper {
  text-align: center;
}
.sf-hotel-hero .hero-content .banner-wrapper > *:not(:last-child) {
  margin-bottom: 30px;
}
.sf-hotel-hero .hero-content .banner-wrapper h1 {
  font-size: clamp(2.5rem,5vw, 6rem);
  line-height: 1;
  font-weight: 900;
}
.sf-hotel-hero .hero-content .banner-wrapper p { 
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4vw;
}
.sf-hotel-hero .hero-content .banner-wrapper a.read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  font-size: 20px;
  background-color: #a9c7ee;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.sf-hotel-hero .hero-content .banner-wrapper a.read-more:hover {
  transform: scale(1.1);
}
.sf-hotel-hero .hero-content .slick-slider,
.sf-hotel-hero .hero-content .slick-slider .item {
  width: 100%;
  height: 75vh;
  background-image: url(1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.sf-hotel-hero .hero-content .slick-slider img {
  width: 100%;
%  height: 100vh;
%  object-fit: cover;
}

/* Sticky header  */
.sticky-header:not(.menu-is-open) .sf-hotel-hero .hero-top {
  justify-content: flex-end;
}
.sticky-header:not(.menu-is-open) .sf-hotel-hero .hero-logo {
  display: none;
}
.sticky-header:not(.menu-is-open) .sf-hotel-hero .hero-actions {
  background-color: rgba(0,0,0,.85);
}
.sticky-header:not(.menu-is-open) .sf-hotel-hero .hero-actions .booking-button {
  border: 1px solid rgba(255,255,255,.3);
}

@media only screen and (max-width: 767px) {
  .sf-hotel-hero .hero-top { padding: 10px 10px 10px 20px; }
  .sf-hotel-hero .hero-top a.hero-logo img { width: 120px; }
  .sf-hotel-hero .hero-top .hero-actions { padding: 7px 15px; gap: 10px; }
  .sf-hotel-hero .hero-top a.booking-button { padding: 10px 12px; }
  .sf-hotel-hero .hero-top a.booking-button span { display: none; }
  .sf-hotel-hero .hero-top .phone-number { display: none; }
}


/* ------------------------------------------- */
/*           Snippflow Menu Overlay            */
/* ------------------------------------------- */

.sf-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 35%;
  height: 100%;
  max-height: 45%;
  background-color: rgba(241,244,247,1);
  background-image: url(images/pattern.png);
  font-size: 1rem;
  line-height: 1.5;
  z-index: 999;
  overflow-y: auto;
}
.sf-menu-overlay a { 
  color: #f5de9c;
  text-decoration: none;
}
.sf-menu-overlay a:hover {
  text-decoration: underline;
}
.sf-menu-overlay .overlay-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  color: #fff;
  padding: 50px;
}
.sf-menu-overlay .overlay-navigation {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 1200px;
}
.sf-menu-overlay .overlay-addons {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}
.sf-menu-overlay .menu-links ul { 
  display: inline-flex;
  flex-wrap: wrap;
  list-style: none;
}
.sf-menu-overlay .menu-links li {
  width: 75%;
  margin: 0;
}
.sf-menu-overlay .menu-links a {
  display: inline-block;
  position: relative;
  color: #000;
  font-size: max(1.2rem, 3vw);
  text-decoration: none;
}
.sf-menu-overlay .menu-links a:after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 0%;
  height: 1px;
  background-color: #000;
  transition: all 0.3s ease-in-out;
}
.sf-menu-overlay .menu-links a:hover:after {
  width: 100%;
}
.sf-menu-overlay .address-box address {
  font-style: normal;
  margin-bottom: 10px;
}

.sf-menu-overlay .social-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.sf-menu-overlay .social-links a {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media only screen and (max-width: 767px) {
  .sf-menu-overlay { padding-top: 50px; }
  .sf-menu-overlay .overlay-content { flex-direction: column; justify-content: flex-start; gap: 30px; padding: 25px; height: auto; }
  .sf-menu-overlay .overlay-navigation { max-width: unset; width: 100%; }
  .sf-menu-overlay .overlay-addons { width: 100%; }
  .sf-menu-overlay .menu-links ul { gap: 10px; }
  .sf-menu-overlay .menu-links li { width: 100%; }
}