@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Martel+Sans:wght@200;300;400;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&display=swap');

:root {
  /* Set by Compass from Design Wizard: */
  --branding-default: #f4b1c3;
  --branding-hovered: #883914;
  --branding-pressed: #f6ab4a;

  /* Aliases (derive from above): */
  --brand-color: #883914;
  --brand-color-rgb: 136, 57, 20;
  --brand-hovered: #f6ab4a;
  --brand-pressed: var(--branding-pressed);

  --brand-color-2: #f6ab4a;
  --brand-color-3: #f4b1c3;

  /* Customisable text/bg variants: */
  --text-over-branding: #291C1D;
  --brand-color-text: var(--brand-color);
  --brand-color-background: #f2ecd8;
  --brand-color-border: var(--brand-color);

  /* Make all spacing 25% larger: */
  --spacing-1x: 10px;

  /* Use Amatic SC for headings: */
  --font-family-1: "Amatic SC", handwriting;
  --font-family-2: "Martel Sans", sans-serif;
  --footer-font: "Martel Sans", sans-serif;
  --font-stack-sans-serif: "Martel Sans", sans-serif;

  /* Increase paragraph size: */
  --text-size-paragraph: 18px;
  --line-height-paragraph: 24px;

  /* Heading size: */
  --text-size-h5: 26px;
  --text-size-h4: 32px;
  --text-size-h3: 42px;

  /* Border radius */
  --border-radius-1x: 0;

  /* Make primary images wider (cinematic): */
  --img-ratio-primary: 21 / 9;
  --img-ratio-room-primary: 21 / 9;
  --img-ratio-rate-primary: 21 / 9;

  /* Make secondary images square: */
  --img-ratio-secondary: 1 / 1;
  --img-ratio-room-secondary: 1 / 1;
  --img-ratio-rate-secondary: 1 / 1;

  /* Different ratios for mobile: */
  --img-ratio-primary-mobile: 16 / 9;
  --img-ratio-room-primary-mobile: 4 / 3;

  /* Design system overrides: */
  --background-surface: #f6f3ea;
  --base-default: #f2ecd8;
  --base-depth: #f2ecd8;
  --text-default: #291c1d;
  --border-default: #883914;

  /* Transition */
  --custom-transition: all 200ms ease-out;
}

@media screen and (max-width: 991px) {
  :root {
    --font-size-body: 16px;
    --font-size-20: 20px;
    --font-size-22: 22px;
    --container-max-width: 1200px;
  }
}

/* ----- Headings ------ */
.heading,
.heading.h1, 
.heading-1,
.heading-2,
.heading-3,
.heading-4,
.heading-5,
.sub-heading {
  font-family: var(--font-family-1);
  line-height: 48px;
  color: var(--brand-color);
}

/* ----- Header ----- */
.brand {
  background-color: var(--brand-color-background);
}

.header-style-4 {
  padding: 40px 12px;
  min-height: 100px;
  border-bottom: 1px solid var(--border-default);
}

.header-style-4 .header-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.header-style-4 .logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-style-4 .logo img {
  width: 176px;
  transition: var(--custom-transition);
}

.header-style-4 .logo img:hover {
  opacity: 0.7;
}

.header-style-4 .logo a {
  display: flex;
  height: auto;
  margin: 0;
}

.header-style-4 .logo svg {
  transition: var(--custom-transition);
}

.header-style-4 .logo svg:hover {
  opacity: 0.7;
}

.header-style-4 .backtosite {
  width: fit-content;
}

.header-style-4 .backtosite a.button {
  display: inline-block;
  padding: 5px 30px;
  border: 2px solid var(--border-default);
  border-radius: 15px;
  text-transform: uppercase;
  color: var(--text-over-branding);
  background-color: var(--branding-default);
}

.header-style-4 .backtosite a.button:hover,
.header-style-4 .backtosite a.button:active {
  background-color: var(--brand-hovered);
  border-color: var(--text-over-branding);
  color: var(--text-over-branding);
}

/* ----- Content ----- */
.button,
.button__text,
.button--branded,
.button--primary,
.button--secondary,
.button-card-horizontal {
  transition: var(--custom-transition);
}

.button--plain {
  padding: 5px 0;
}

.button--primary:hover,
.button--primary:active {
  color: var(--brand-color);
  text-decoration: underline;
}

.button__text.paragraph {
  font-family: var(--font-family-1);
  font-size: 28px;
  font-weight: 700;
  line-height: 48px;
}

.button.button--branded {
  display: inline-block;
  padding: 5px 30px;
  border: 2px solid var(--border-default);
  border-radius: 15px;
  background-color: var(--branding-default);
  text-transform: uppercase;
  color: var(--text-over-branding);
}

.button.button--branded:hover,
.button.button--branded:active {
  background-color: var(--brand-hovered);
  border-color: var(--text-over-branding);
  color: var(--text-over-branding);
}

.button.button--secondary {
  display: inline-block;
  padding: 5px 12px;
  border: 2px solid var(--border-default);
  border-radius: 15px;
  background-color: #fff;
  text-transform: uppercase;
  color: var(--text-default);
}

.button.button--secondary:hover,
.button.button--secondary:active {
  background-color: var(--brand-hovered);
  border-color: var(--text-over-branding);
  color: var(--text-over-branding);
}

.button-icon .button-icon__icon {
  width: 32px;
  height: 32px;
  color: var(--brand-color);
  background: none;
  border: none;
  border-radius: 5px;
  transition: var(--custom-transition);
}

.button-icon:hover:not(.disabled) .button-icon__icon {
  color: var(--brand-hovered);
  background: none;
  border: none;
}

.button-icon.button-icon--branded:not(.disabled) .button-icon__icon {
  border: 2px solid var(--border-default);
  background-color: var(--branding-default);
  color: var(--text-over-branding);
}

.button-icon.button-icon--branded:hover:not(.disabled) .button-icon__icon {
  background-color: var(--brand-hovered);
  border: 2px solid var(--text-over-branding);
  color: var(--text-over-branding);
}

.button-card-horizontal .button-card-horizontal__title {
  font-size: var(--text-size-h5);
}

.avvioCalendarFragment .label,
.avvio-calendar__month-header,
.avvio-calendar__dayname {
  font-family: var(--font-family-1);
  font-weight: 700;
}

.avvioCalendarFragment .label {
  font-size: 32px;
  color: var(--brand-color-2);
}

.avvioCalendarFragment .label .button__text {
  color: var(--text-default);
}

.avvio-calendar__month-header {
  font-size: 28px;
  line-height: 48px;
  color: var(--brand-color);
}

.avvio-calendar__month-header:hover,
.avvio-calendar__month-header:active {
  color: var(--brand-color-2);
}

.avvio-calendar__month-header i {
  font-size: 14px;
  vertical-align: middle;
}

.avvio-calendar__dayname {
  font-size: 24px;
}

#bigCalendar .confirm-section button {
  width: fit-content;
}

#bigCalendar .confirm-section button .paragraph {
  font-size: 28px;
  font-weight: 700;
  font-family: var(--font-family-1);
  line-height: 44px;
}

.info-bar-container .item {
  transition: var(--custom-transition);
}

.info-bar-container .one-item-image {
  border: none;
}

.occupancy-modal__room-config-header {
  align-items: center;
}

.text-field .text-field__input {
  border-radius: 15px;
}

.facebook::before {
  content: "\e809";
  font-family: "voyager-icon";
  font-style: normal;
  font-weight: 400;
}

.instagram::before {
  content: "\e80a";
  font-family: "voyager-icon";
  font-style: normal;
  font-weight: 400;
}

/* Footer */
.footer.footer-style-centred {
  background-color: var(--background-surface);
}

.footer-style-centred .footer-container p:first-child {
  font-size: var(--text-size-h4);
  font-family: var(--font-family-1);
  line-height: 48px;
  color: var(--brand-color);
}

/* Responsives */
@media screen and (max-width: 767px) {
  .header-style-4 .logo {
    position: relative;
    left: unset;
    top: unset;
    transform: unset;
    justify-content: flex-start;
  }

  .header-style-4 .header-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
}

@media screen and (max-width: 2000px) {
  .info-bar-container .item {
    min-width: 200px;
  }
}

@media screen and (max-width: 767px) {
  .info-bar-container {
    padding: 0 var(--spacing-05x);
  }
}