/* General Overview Styles */

:root {
  --white: rgb(252, 248, 248);
  /* "Montserrat",  */
  --main-font: "Aboreto", Verdana, sans-serif;
  --main-font-spacing: 0.3px;
  --secondary-font: "Montserrat", Verdana, sans-serif;
  --headline-font: "Oswald", "Andalé Mono", monospace;
  --bold: bold;
}

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

@keyframes slideUpBooking {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.zoom-into-view {
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.zoom-into-view.animate {
  opacity: 1;
}
.fadeIn {
  opacity: 0;
  transition: opacity ease 2s;
}
.fadeIn.animate {
  opacity: 1;
}
.fadeIn2 {
  opacity: 0;
  transition: opacity ease 2s;
  transition-delay: 2.7s;
}
.fadeIn2.animate {
  opacity: 1;
}
.accolade-item::before {
  opacity: 0;
  transition: opacity ease 2s;
}
.accolade-item::after {
  opacity: 0;
  transition: opacity ease 2s;
}
.accolade-item.animate::before {
  opacity: 1;
  transition-delay: 1.7s;
}
.accolade-item.animate::after {
  opacity: 1;
  transition-delay: 1.7s;
}
.slideUp {
  opacity: 0;
  transform: translateY(3.25rem);
  transition: opacity 1.5s ease-out, transform 1s ease-out;
}
.slideUp.animate {
  opacity: 1;
  transform: translateY(-1.7rem);
}
.slideUp2 {
  opacity: 0;
  transform: translateY(3.25rem);
  transition: opacity 0.3s ease-out, transform 1s ease-out;
}
.slideUp2.animate {
  opacity: 1;
  transform: translateY(-1.7rem);
}
/* Stagger the animations */
.slideUp2:nth-child(1).animate {
  transition-delay: 0s;
}

.slideUp2:nth-child(2).animate {
  transition-delay: 0.3s;
}

.slideUp2:nth-child(3).animate {
  transition-delay: 0.6s;
}
.staggerReveal {
  opacity: 0;
  filter: blur(5px);
  transform: translateX(-100%);
  transition: all 1s;
}
.staggerReveal.animate {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}
.slideRight {
  opacity: 0;
  transform: translateX(10.25rem);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}
.slideRight.animate {
  opacity: 1;
  transform: translateX(0);
}
.slideFromRight {
  transform: translateX(5.25rem);
  transition: transform 0.7s ease-out, opacity 0.5s ease-out;
  opacity: 0;
}
.slideFromRight.animate {
  transform: translateX(0);
  opacity: 1;
}
.slideLeft {
  opacity: 0;
  transform: translateX(-10.25rem);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}
.slideLeft.animate {
  opacity: 1;
  transform: translateX(0);
}
.hero-slideLeft {
  opacity: 0;
  transform: translateX(-10%);
  transition: transform 1s ease-out, opacity 1s ease-in;
}
.hero-slideLeft.animate {
  opacity: 1;
  transform: translateX(0);
}

* {
  box-sizing: border-box;
  /* margin-right: auto;
  margin-left: auto; */
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

.content.hero {
  background-color: transparent;
}

.spacer {
  padding-bottom: 10rem;
}

* {
  /* outline: 1px solid red !important; */
  /* margin: 0 !important;
      padding: 0 !important; */
}

@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Aboreto";
  font-style: normal;
  font-weight: 400;
  src: local(""),
    url("/assets/fonts/aboreto-v2-latin-regular.woff2") format("woff2"),
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
      url("/assets/fonts/aboreto-v2-latin-regular.woff2") format("woff");
}

/* montserrat-regular - latin */
@font-face {
  font-display: swap;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: url(),
    url("/assets/fonts/montserrat-v30-latin-regular.woff2") format("woff2"),
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
      url("/assets/fonts/montserrat-v30-latin-regular.woff2") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

.book-btn-white {
  padding: 0.5rem 1rem;
  height: 40px;
  border-radius: 0.5rem;
  background-color: rgb(252, 241, 224);
  color: rgb(0, 0, 0);
  /* background-color: transparent;
  color: rgb(0, 0, 0); */
  font-family: var(--main-font);
  border: 1px solid rgb(191, 191, 191);
  transition: all 0.3s ease;
  align-self: start;
  text-decoration: none;
  font-size: clamp(1.1rem, calc(2vw + 0.2rem), 1rem);
}

.book-btn-white:hover {
  /* background-color: rgb(191, 191, 191);
  color: rgb(255, 255, 255); */
  transform: scale(0.9);
}

.book-btn-gray {
  padding: 0.5rem 1rem;
  height: 40px;
  border-radius: 0.5rem;
  /* background-color: transparent;
  color: rgb(255, 255, 255); */
  background-color: rgb(252, 241, 224);
  color: rgb(0, 0, 0);
  font-family: var(--main-font);
  border: 1px solid rgb(191, 191, 191);
  transition: all 0.3s ease;
  align-self: start;
  text-decoration: none;
  font-size: clamp(1.1rem, calc(2vw + 0.2rem), 1rem);
}

.header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 10;
  color: white;
  height: 5rem;
  padding: 2rem 6rem;
  font-family: var(--main-font);
  transition: background-color 0.4s ease, box-shadow 0.4s ease, height 0.4s ease,
    color 0.4s ease, padding 0.4s ease;
}

.header.scrolled {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 100%;
  box-shadow: rgba(146, 155, 164, 0.3) 0px 2px 12px;
  background-color: rgb(255, 255, 255);
  height: 5rem;
  padding: 2rem 6rem;
  color: black;
}

.company-container {
  display: flex;
  flex-direction: row;
}

.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  /* justify-content: space-between; */
  /* margin-left: auto; */
  gap: 2rem;
}

.navbar-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 10;
  display: none;
}

.menu-icon {
  display: none;
  width: 2rem;
  height: 2rem;
}

.nav-item {
  letter-spacing: 0.5px;
  font-size: clamp(1.1rem, calc(2vw + 0.2rem), 1.2rem);
  cursor: pointer;
}
.site-title {
  position: relative;
  left: 0;
  top: 0;
  /* transform: translate(-50%, -50%); */
  font-size: clamp(1.1rem, calc(2vw + 0.2rem), 2rem);
}

.header-btn {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  /* background-color: transparent; */
  background-color: rgb(252, 241, 224);
  color: rgb(0, 0, 0);
  font-family: var(--main-font);
  border: 1px solid rgb(191, 191, 191);
  transition: all 0.3s ease;
  align-self: center;
  font-size: clamp(0.7rem, calc(2vw + 0.2rem), 1rem);
  text-decoration: none;
  text-align: center;
}

.header-btn:hover {
  /* background-color: rgb(191, 191, 191);
  color: black; */
  transform: scale(0.9);
}

.header-btn.scrolled {
  /* color: black; */
}

.header-btn.scrolled:hover {
  /* color: white; */
}

.header-btn-hidden {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  background-color: rgb(252, 241, 224);
  color: rgb(0, 0, 0);
  font-family: var(--main-font);
  border: 1px solid rgb(191, 191, 191);
  transition: all 0.3s ease;
  align-self: center;
  font-size: clamp(0.7rem, calc(2vw + 0.1rem), 1rem);
  text-decoration: none;
  text-align: center;
  display: none;
}

.header-btn-hidden:hover {
  transform: scale(0.9);
}

.header-btn-hidden.scrolled {
  /* color: black; */
}

.header-btn-hidden.scrolled:hover {
  /* color: white; */
}

.logo {
  width: 150px;
  object-fit: contain;
}

/* Desktop container utility class */
.header.container {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1536px) {
  /* .header.container {
    max-width: 1280px;
  } */
}

@media (max-width: 1280px) {
  /* .header.container {
    max-width: 1024px;
  } */
}

@media (max-width: 1024px) {
  /* .header.container {
    max-width: 768px;
  } */
  .header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .header.scrolled {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .header-btn {
    display: none;
  }
  .header-btn-hidden {
    position: absolute;
    display: block;
    left: 50%;
    transform: translateX(-50%);
  }
  .menu-icon {
    display: block;
    margin-left: auto;
  }
  .navbar {
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    align-items: start;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    flex-direction: column;
    height: 100vh;
    width: 40%;
    transform: translateX(200%);
    opacity: 0;
    gap: 1rem;
    background-color: white;
    color: black;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  }
  .navbar-close {
    display: flex;
    color: black;
  }

  .navbar.navbar-open {
    transform: translateX(0%);
    opacity: 1;
  }
  .nav-item,
  .nav-item-with-dropdown {
    text-align: left;
  }
  .dropdown {
    left: 0;
    top: 25%;
  }
}

@media (max-width: 768px) {
  /* .header.container {
    max-width: 640px;
  } */

  .logo {
    width: 125px;
  }
}

@media (max-width: 640px) {
  /* .header.container {
    max-width: 475px;
  } */
  .logo {
    width: 100px;
  }
  .header-btn-hidden {
    padding: 0.5rem 0.5rem;
  }
}

@media (max-width: 475px) {
  header.container {
    width: 100%;
  }
  .logo {
    width: 75px;
  }
}

.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 2;
  font-family: var(--main-font);
  color: white;
  align-items: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.hsbw-calendar-container {
  color: rgb(101, 101, 101);
}

.hsbw-popup_inner {
  color: rgb(101, 101, 101);
}

.hsbw-field {
  color: rgb(101, 101, 101);
}

.hero-content h1 {
  margin: 0;
  letter-spacing: var(--main-font-spacing);
  font-size: clamp(1.8rem, calc(3vw + 0.2rem), 2.7rem);
}

.hero-content p {
  margin: 0;
  letter-spacing: var(--main-font-spacing);
  font-size: clamp(1.3rem, calc(3vw + 0.2rem), 2.3rem);
  letter-spacing: var(--main-font-spacing);
}

.hero-arrow {
  width: 3rem;
  transition: transform 0.2s ease-in-out;
}

.hero-arrow:hover {
  transform: scale(0.9);
}

#hostaway-booking-widget {
  position: absolute !important;
  margin-top: 10rem !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  transition: opacity 0.3s ease !important;
  box-shadow: inset 0 0 0 4px #f5f0e6 !important;
  border-radius: 50px !important;
}

/* Desktop container utility class */
.content.hero {
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 10rem;
}

/* 2xl */
@media (max-width: 1536px) {
  /* .content.hero {
    max-width: 1280px;
  } */
}

/* xl */
@media (max-width: 1280px) {
  /* .content.hero {
    max-width: 1024px;
  } */
  .hero-content {
    text-align: center;
  }
}

/* lg */
@media (max-width: 1024px) {
  /* .content.hero {
    max-width: 768px;
  } */
}

/* md */
@media (max-width: 768px) {
  /* .content.hero {
    max-width: 640px;
  } */
}

/* sm */
@media (max-width: 640px) {
  /* .content.hero {
    max-width: 475px;
  } */
}

/* xs */
@media (max-width: 475px) {
  .container {
    /* width: 100%; */
  }
}
