:root {
  --primary-color: #5a4524;
  --accent-color: #f0e4d0;
  --font-family-text: 'Georgia', serif;
  --font-family-body: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --icon-filter-primary: brightness(0) saturate(100%) invert(25%) sepia(12%) saturate(372%) hue-rotate(345deg) brightness(101%) contrast(90%);
  --icon-filter-primary-hover: brightness(0) saturate(100%) invert(44%) sepia(17%) saturate(563%) hue-rotate(335deg) brightness(97%) contrast(89%);
}

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

html,
body {
  width: 100%;
  height: 100%;
}

body {
  font-family: var(--font-family-body);
  background-color: #fff;
}

.d-none {
  display: none !important;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 95px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
}

.hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 2;
}


.hero-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 750px;
  height: auto;
  z-index: 4;
  filter: brightness(0) invert(1) drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.hero-content {
  position: absolute;
  bottom: 150px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 4;
  text-align: center;
}

.hero-text {
  text-align: center;
}

.hero-company {
  font-family: var(--font-family-text);
  font-size: 1.2rem;
  font-weight: normal;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  color: #fff;
}

.hero-coming {
  font-family: var(--font-family-text);
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: #fff;
  margin: 0;
}

/* BOOKING FORM */
#searchForm {
  width: 100%;
  height: 95px;
  background-color: #f9f6f3;
  box-shadow: 0 0 15px 0 rgb(41 51 88 / 10%);
  position: fixed;
  bottom: 0;
  z-index: 6;
}

#searchForm .searchFormClose {
  display: none;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.neobookings-mask {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  gap: 13px;
}

.neobookings-mask .field {
  width: calc(18% - 13px);
  height: 100%;
  color: var(--primary-color);
  cursor: pointer;
  text-align: center;
  position: relative;
  padding: 13px 0;
  border-bottom: 1px solid #e8e6d9;
}

.neobookings-mask .field.neobookings-book-btn {
  width: 10%;
  border-bottom: none;
}

.neobookings-mask .field input,
.neobookings-mask .field input::placeholder {
  color: var(--primary-color);
  font-family: var(--font-family-text);
  font-style: italic;
  font-size: 18px;
  outline: unset;
  pointer-events: none;
}

.date_range_picker {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.neobookings-form__param__promocode {
  background-color: transparent;
  border: 0px;
  outline: none;
  width: 100%;
  text-align: center;
  pointer-events: auto !important;
  cursor: text;
  color: var(--primary-color);
}

.neobookings-form__param__date {
  flex: 1;
  background-color: transparent;
  border: 0px;
  color: var(--primary-color);
  font-family: var(--font-family-text);
  font-style: italic;
  font-size: 18px;
}

.neobookings-form__param__date--start {
  text-align: right;
}

body #neobookings-form #guestsfake {
  cursor: pointer;
  height: 100%;
  color: var(--primary-color);
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  text-align: center;
  font-family: var(--font-family-text);
  font-style: italic;
  font-size: 18px;
}

.btn-booking {
  background-color: var(--accent-color);
  color: var(--primary-color);
  border: none;
  padding: 10px 30px;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.btn-booking:hover {
  background-color: var(--primary-color);
  color: #fff;
}

body #neobookings-form .field label {
  margin-bottom: 10px;
  font-weight: bold;
  color: var(--primary-color);
  display: block;
  font-size: 12px;
  font-style: italic;
}

/* GUESTS MODAL */
body .thickbox.rooms-data {
  height: auto;
  width: auto;
  display: flex;
  align-items: center;
  z-index: 120;
  left: 50%;
  transform: translateX(-50%);
}

body .thickbox.rooms-data .rooms-modal-pop-up {
  background-color: #fff;
  padding: 10px 20px;
  font-family: var(--font-family-body);
  color: var(--primary-color);
  max-width: 90vw;
}

body .thickbox.rooms-data .rooms-modal-pop-up .room {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 535px;
  max-width: 100%;
  position: relative;
  margin-bottom: 20px;
}

body .thickbox.rooms-data .rooms-modal-pop-up .room .ages-inputs {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

body .thickbox.rooms-data .rooms-modal-pop-up .room .ages-inputs .ages-label {
  margin: 15px;
  min-width: 58px;
  max-width: 60px;
  font-weight: bold;
}

body .thickbox.rooms-data .rooms-modal-pop-up .room .ages-inputs .ages-container {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}

body .thickbox.rooms-data .rooms-modal-pop-up .room select {
  min-width: 130px;
  margin: 5px;
  border: 0px;
  border-bottom: 1px solid var(--primary-color);
  padding: 5px 10px;
  background-color: transparent;
  height: auto;
  font-family: var(--font-family-text);
  font-style: italic;
  font-size: 18px;
  color: var(--primary-color);
}

body .thickbox.rooms-data > div .room .icon {
  position: relative;
}

body .thickbox.rooms-data > div .room .icon.adult::after,
body .thickbox.rooms-data > div .room .icon.child::after {
  content: "";
  position: absolute;
  top: 13px;
  right: 21px;
  width: 17px;
  height: 17px;
  background-size: cover;
  filter: var(--icon-filter-primary);
  transition: filter 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

body .thickbox.rooms-data .rooms-modal-pop-up .room .icon:hover::after {
  filter: var(--icon-filter-primary-hover);
}

body .thickbox.rooms-data .rooms-modal-pop-up .room .icon.child::after {
  background-image: url("../img/children-icon.png");
}

body .thickbox.rooms-data .rooms-modal-pop-up #rooms {
  max-height: 60vh;
  overflow-y: auto;
  margin-bottom: 30px;
}

body .thickbox.rooms-data .rooms-modal-pop-up .room .icon.remove {
  color: black;
  text-decoration: none;
  display: flex;
  align-items: center;
  position: absolute;
  right: 0;
  top: 15px;
}

body .thickbox.rooms-data .rooms-modal-pop-up .room .room-title {
  margin: 15px;
  display: flex;
  align-items: center;
  min-width: 60px;
  font-weight: bold;
  color: var(--primary-color);
}

body .thickbox.rooms-data .rooms-modal-pop-up .action-buttons-container {
  display: flex;
  gap: 10px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-bottom: 10px;
}

body .thickbox.rooms-data .rooms-modal-pop-up .plus,
body .thickbox.rooms-data .rooms-modal-pop-up .guests-accept {
  cursor: pointer;
  display: inline-flex;
  padding: 9px 30px;
  border-radius: 30px;
  font-size: 0.844rem;
  font-weight: bold;
  text-decoration: none;
  transition: 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

body .thickbox.rooms-data .rooms-modal-pop-up .plus {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

body .thickbox.rooms-data .rooms-modal-pop-up .plus:hover {
  background-color: var(--primary-color);
  color: #fff;
}

body .thickbox.rooms-data .rooms-modal-pop-up .guests-accept {
  background-color: var(--accent-color);
  color: var(--primary-color);
  border: none;
}

body .thickbox.rooms-data .rooms-modal-pop-up .guests-accept:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-content {
    bottom: 120px;
  }

  .hero-coming {
    font-size: 2.5rem;
  }

  #searchForm {
    height: 100vh;
    z-index: 115;
  }

  .booking-wrapper {
    display: none;
  }

  .bookMobileButton {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    z-index: 100;
  }

  .bookMobileButton button {
    width: 100%;
    height: 65px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-radius: 0;
  }

  .booking-wrapper.open {
    background: #fff;
    z-index: 110;
    position: fixed;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
  }

  .booking-wrapper form {
    width: 100%;
    flex-direction: column;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
  }

  .booking-wrapper .neobookings-mask .field {
    width: 100%;
    margin-bottom: 7px;
  }

  .booking-wrapper .neobookings-mask .field input {
    height: 60px;
  }

  body #neobookings-form #guestsfake {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
  }

  body.calendar-open {
    overflow: hidden;
    max-height: 100vh;
  }

  body .thickbox.rooms-data > div {
    padding: 50px 15px 15px 15px;
    width: 100vw;
    height: 100vh;
  }

  body .thickbox.rooms-data .rooms-modal-pop-up .room {
    flex-direction: column;
    width: 100%;
  }

  body .thickbox.rooms-data .rooms-modal-pop-up .room select {
    width: calc(100% - 30px);
  }

  body .thickbox.rooms-data .rooms-modal-pop-up .room .icon.remove {
    justify-content: center;
  }

  body .thickbox.rooms-data .rooms-modal-pop-up #rooms {
    margin-top: 50px;
  }

  body .thickbox.rooms-data .rooms-modal-pop-up .room .ages-inputs {
    flex-direction: column;
  }

  body .thickbox.rooms-data {
    position: fixed;
    top: 0;
    left: 0;
    transform: none;
  }

  body .thickbox.rooms-data .rooms-modal-pop-up {
    max-width: none;
    border-radius: 0;
  }
}

@media (max-width: 768px) {
  .hero-logo {
    max-width: 500px;
  }

  .hero-content {
    bottom: 110px;
  }

  .hero-company {
    font-size: 0.9rem;
  }

  .hero-coming {
    font-size: 2rem;
  }

  .hero-section {
    padding-bottom: 65px;
  }

  #searchForm {
    height: auto;
  }

  .neobookings-mask {
    flex-direction: column;
  }

  .neobookings-mask .field {
    width: 100% !important;
  }
}

@media (max-width: 520px) {
  .hero-logo {
    max-width: 450px;
  }

  .hero-content {
    bottom: 100px;
  }

  .hero-company {
    font-size: 0.8rem;
  }

  .hero-coming {
    font-size: 1.6rem;
  }

  #searchForm {
    height: auto;
  }

  .neobookings-mask .field {
    margin: 5px 0;
  }

  body .thickbox.rooms-data .rooms-modal-pop-up .room .icon.remove {
    right: 30px;
  }
}
