@import "https://fonts.googleapis.com/css2?family=Jost:wght@400;700&display=swap";
@import "https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap";
body.lb-disable-scrolling {
  overflow: hidden;
}

.lightboxOverlay {
  z-index: 9999;
  opacity: .8;
  background-color: #000;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}

.lightbox {
  z-index: 10000;
  text-align: center;
  outline: none;
  width: 100%;
  font-weight: normal;
  line-height: 0;
  position: absolute;
  left: 0;
}

.lightbox .lb-image {
  max-width: inherit;
  border: 4px solid #fff;
  border-radius: 3px;
  height: auto;
  max-height: none;
  display: block;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  background-color: #fff;
  border-radius: 4px;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  position: relative;
}

.lb-outerContainer:after {
  content: "";
  clear: both;
  display: table;
}

.lb-loader {
  text-align: center;
  width: 100%;
  height: 25%;
  line-height: 0;
  position: absolute;
  top: 43%;
  left: 0;
}

.lb-cancel {
  width: 32px;
  height: 32px;
  margin: 0 auto;
  display: block;
}

.lb-nav {
  z-index: 10;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.lb-container > .nav {
  left: 0;
}

.lb-prev, .lb-next {
  cursor: pointer;
  height: 100%;
  display: block;
}

.lb-nav a.lb-prev {
  float: left;
  opacity: 0;
  -o-transition: opacity .6s;
  width: 34%;
  transition: opacity .6s;
  position: relative;
  left: 0;

  &:after {
    content: "";
    color: #fff;
    text-align: center;
    width: 32px;
    height: 32px;
    font-family: "Font Awesome 6 Free";
    font-size: 32px;
    line-height: 32px;
    display: block;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
  }
}

.lb-nav a.lb-prev:hover {
  opacity: 1;
}

.lb-nav a.lb-next {
  float: right;
  opacity: 0;
  -o-transition: opacity .6s;
  width: 64%;
  transition: opacity .6s;
  position: relative;
  right: 0;

  &:after {
    content: "";
    color: #fff;
    text-align: center;
    width: 32px;
    height: 32px;
    font-family: "Font Awesome 6 Free";
    font-size: 32px;
    line-height: 32px;
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
  }
}

.lb-nav a.lb-next:hover {
  opacity: 1;
}

.lb-dataContainer {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  width: 100%;
  margin: 0 auto;
  padding-top: 5px;
}

.lb-dataContainer:after {
  content: "";
  clear: both;
  display: table;
}

.lb-data {
  color: #ccc;
  padding: 0 4px;
}

.lb-data .lb-details {
  float: left;
  text-align: left;
  width: 85%;
  line-height: 1.1em;
  display: none;
}

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em;
}

.lb-data .lb-caption a {
  color: #4ae;
}

.lb-data .lb-number {
  clear: left;
  color: #999;
  padding-bottom: 1em;
  font-size: 12px;
  display: block;
}

.lb-data .lb-close {
  float: right;
  text-align: right;
  opacity: .7;
  -o-transition: opacity .2s;
  outline: none;
  width: 30px;
  height: 30px;
  transition: opacity .2s;
  display: block;
  position: relative;

  &:after {
    text-align: center;
    content: "";
    color: #fff;
    width: 30px;
    height: 30px;
    font-family: "Font Awesome 6 Free";
    font-size: 30px;
    line-height: 30px;
    display: block;
    position: absolute;
    inset: 0;
  }
}

.lb-data .lb-close:hover {
  cursor: pointer;
  opacity: 1;
}

:root {
  --black: #050505;
  --lightgrey: #d6d9e6;
  --grey: #9699ab;
  --white: #fff;
  --primary: #ff5263;
  --secondary: #1f3f5b;
  --error: #ff5252;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1100px;
  color: var(--black);
  background-color: var(--white);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  height: 100%;
  font-family: Jost, system-ui, Avenir, Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.25;
}

*, :before, :after {
  box-sizing: border-box;
}

* {
  -webkit-tap-highlight-color: transparent;
}

#root {
  height: 100%;
  overflow-x: hidden;
}

@media (width >= 1100px) {
  #root {
    height: 100%;
  }
}

a {
  color: inherit;
  -webkit-text-decoration: inherit;
  text-decoration: inherit;
  font-weight: 400;
  transition: color .1s ease-in-out;
}

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

body {
  margin: 0;
}

@media (width >= 1100px) {
  body {
    height: 100%;
  }
}

h1, h2, h3, h4 {
  margin: 0 0 .5em;
  font-family: Libre Baskerville, serif;
  font-weight: normal;
  line-height: 1.1;
}

h1 {
  font-size: 3.2em;
}

h2 {
  font-size: 2em;
}

h3 {
  font-size: 1.75em;
  font-style: italic;
}

.site {
  flex-direction: column;
  display: flex;
  position: relative;
  overflow-x: hidden;
}

@media (width >= 1100px) {
  .site {
    padding-left: 250px;
  }
}

.site .site-main {
  flex: 1;
}

@media (width >= 1280px) {
  .site .site-main {
    flex: 1;
    height: 100%;
    overflow-y: scroll;
  }
}

.site .site-main-container {
  flex: 1;
  padding-top: 60px;
}

@media (width >= 1100px) {
  .site .site-main-container {
    padding-top: 0;
  }
}

.main-content {
  margin: 0 -20px;
  padding-top: 60px;
  padding-left: 20px;
  padding-right: 20px;
}

@media (width >= 576px) {
  .main-content {
    margin: 0 -30px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (width >= 1100px) {
  .main-content {
    height: 100%;
    padding-top: 0;
    overflow-y: scroll;
  }
}

.container {
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

@media (width >= 576px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.main-header {
  background-color: var(--white);
  z-index: 98;
  border-bottom: 1px solid var(--lightgrey);
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  height: 60px;
  padding: 10px 15px;
  display: flex;
  position: fixed;
  left: 0;
  right: 0;
}

@media (width >= 576px) {
  .main-header {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (width >= 1100px) {
  .main-header {
    position: relative;
  }
}

.main-header .logo {
  width: 50px;
  height: 50px;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.main-header .logo img {
  width: 100%;
}

@media (width >= 1100px) {
  .main-header .logo {
    display: none;
  }
}

.main-header nav {
  display: none;
}

@media (width >= 576px) {
  .main-header nav {
    display: block;
  }
}

@media (width >= 1100px) {
  .main-header nav {
    display: none;
  }
}

.main-header nav ul {
  align-items: center;
  margin: 0;
  padding: 0;
  font-size: 1rem;
  list-style: none;
  display: flex;
}

.main-header nav ul li {
  align-items: center;
  height: 60px;
  padding: 0 15px;
  display: flex;
}

.main-header nav ul li:hover {
  background-color: #0000000d;
}

.main-header nav ul .button {
  margin-left: 10px;
}

.site-nav-overlay {
  opacity: 0;
  z-index: 99;
  pointer-events: none;
  background-color: #00000040;
  width: 100%;
  height: 100%;
  transition: opacity .3s ease-in-out;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
}

.site-nav-overlay.is-active {
  opacity: 1;
  pointer-events: all;
}

@media (width >= 1100px) {
  .site-nav-overlay {
    display: none;
  }
}

.site-nav {
  text-align: center;
  background-color: var(--white);
  z-index: 100;
  border-right: 1px solid var(--lightgrey);
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  width: 250px;
  min-width: 250px;
  height: 100%;
  padding: 40px 15px 20px;
  transition: left .3s cubic-bezier(.165, .84, .44, 1);
  display: flex;
  position: fixed;
  top: 0;
  left: -250px;
  overflow-y: scroll;
}

@media (width >= 1100px) {
  .site-nav {
    left: 0;
  }
}

.site-nav.is-active {
  left: 0;
}

.site-nav .top .logo {
  width: 80px;
  margin: 0 auto 30px;
  display: block;
}

.site-nav .top .logo img {
  width: 100%;
}

.site-nav .top nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav .top nav ul li + li {
  margin-top: 15px;
}

.site-nav .top nav ul li a {
  margin: 0 auto;
  padding: 10px 0;
  transition: all .1s ease-in-out;
  display: block;
}

.site-nav .top nav ul li a:hover {
  background-color: #0000000d;
}

.site-nav .top nav ul li .button {
  margin-top: 2rem;
}

.site-nav .bottom ul {
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.hamburger {
  font: inherit;
  cursor: pointer;
  text-transform: none;
  color: inherit;
  background-color: #0000;
  border: 0;
  height: 22px;
  margin: 0;
  transition-property: opacity, filter;
  transition-duration: .15s;
  transition-timing-function: linear;
  display: block;
  overflow: visible;
}

@media (width >= 576px) {
  .hamburger {
    display: none;
  }
}

.hamburger .hamburger-box {
  width: 30px;
  height: 22px;
  display: inline-block;
  position: relative;
}

.hamburger .hamburger-inner {
  margin-top: -2px;
  display: block;
  top: 2px;
}

.hamburger .hamburger-inner, .hamburger .hamburger-inner:after, .hamburger .hamburger-inner:before {
  background-color: currentColor;
  border-radius: 4px;
  width: 30px;
  height: 2px;
  transition-property: transform;
  transition-duration: .15s;
  transition-timing-function: ease;
  position: absolute;
}

.hamburger .hamburger-inner:after, .hamburger .hamburger-inner:before {
  content: "";
  display: block;
}

.hamburger .hamburger-inner:before {
  transition-property: transform, opacity;
  transition-duration: .15s;
  transition-timing-function: ease;
  top: 10px;
}

.hamburger .hamburger-inner:after {
  top: 20px;
}

.hamburger.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0)rotate(45deg);
}

.hamburger.is-active .hamburger-inner:after {
  transform: translate3d(0, -20px, 0)rotate(-90deg);
}

.hamburger.is-active .hamburger-inner:before {
  opacity: 0;
  transform: rotate(-45deg)translate3d(-5.71429px, -6px, 0);
}

.logo a {
  text-align: center;
  color: var(--black);
  line-height: 1;
  display: block;
}

.logo a .icon {
  width: 60px;
}

.logo a .text {
  font-weight: bold;
}

.logo a:hover {
  color: inherit;
}

.logo a img {
  max-width: 100%;
}

.button {
  border: 1px solid var(--black);
  background: var(--black);
  color: #fff;
  cursor: pointer;
  text-align: center;
  border-radius: 30px;
  max-width: 200px;
  padding: 10px 20px;
  font-family: inherit;
  font-size: 1em;
  transition: background-color .1s ease-in-out;
  display: block;
}

.button:hover {
  background: var(--black);
  color: var(--white);
  opacity: .8;
}

.button:focus, .button:focus-visible {
  outline: 4px auto -webkit-focus-ring-color;
}

.button + .center {
  margin: 0 auto;
}

#footer {
  text-align: center;
}

@media screen and (width >= 1100px) {
  #footer {
    text-align: right;
  }
}

.hero {
  padding-top: 3rem;
  padding-bottom: 6rem;
  position: relative;
}

.hero h1 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.hero h3 {
  margin-top: 0;
  font-size: 2rem;
}

.hero .text {
  z-index: 1;
  position: relative;
}

.hero .lead {
  max-width: 24rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
  padding-right: 2rem;
  font-size: 1.125rem;
}

@media (width >= 576px) {
  .hero .lead {
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
    margin-right: 40%;
  }
}

@media (width >= 768px) {
  .hero .lead {
    margin-right: 50%;
  }
}

@media (width >= 992px) {
  .hero .lead {
    margin-right: 60%;
  }
}

.hero .image-container {
  z-index: 0;
  margin-top: 2rem;
  display: block;
}

@media (width >= 576px) {
  .hero .image-container {
    opacity: .75;
    margin-top: 0;
    position: absolute;
    inset: 2rem 0 2rem 60%;
  }
}

@media (width >= 768px) {
  .hero .image-container {
    left: 50%;
  }
}

@media (width >= 992px) {
  .hero .image-container {
    left: 40%;
  }
}

.hero .image-container .image {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.hero .image-container .button {
  margin-top: 1rem;
  font-size: 1.25rem;
}

.about {
  text-align: center;
  background-color: #fbf7f2;
  padding-top: 3rem;
  padding-bottom: 3rem;
  position: relative;
}

.about .container {
  max-width: 600px;
}

#features {
  text-align: center;
  background-color: #fbf7f2;
  padding-top: 3rem;
  padding-bottom: 3rem;
  position: relative;
}

#features .card {
  border: 1px solid var(--black);
  border-radius: 5px;
  width: 300px;
  margin: 0 auto 3rem;
  padding: 1em;
}

#features .card .title {
  margin-bottom: .5em;
  font-family: Libre Baskerville;
  font-size: 1.2em;
}

#features .features {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  justify-items: center;
  gap: 1em;
  max-width: 800px;
  margin: 0 auto;
  display: grid;
}

#features .features .feature {
  border: 1px solid #0003;
  border-radius: 5px;
  width: 100%;
  padding: 1em;
}

#features .features .feature .title {
  margin-top: .5em;
}

.gallery {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.gallery img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.gallery .arrow {
  cursor: pointer;
  color: #000;
  text-align: center;
  background: none;
  border: none;
  outline: 0;
  width: 20px;
  height: 20px;
  font-size: 20px;
  line-height: 0;
  display: block;
  position: absolute;
  top: auto;
  bottom: -20px;
}

.location {
  padding-top: 3rem;
  padding-bottom: 3rem;
  position: relative;
}

.location .map {
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 5px;
  margin-top: 1rem;
  overflow: hidden;
}

@media screen and (width >= 768px) {
  .location .map {
    aspect-ratio: 1;
    margin-top: 0;
  }

  .location .row {
    justify-content: space-around;
    gap: 20px;
    display: flex;
  }

  .location .row > div {
    flex: 1;
  }
}

#booking {
  text-align: center;
  background-color: #fbf7f2;
  padding-top: 3rem;
  padding-bottom: 3rem;
  position: relative;
}

#booking .bookalet {
  border: 1px solid var(--lightgrey);
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
}
/*# sourceMappingURL=index.b2d9cf43.css.map */
