@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  /* Set by Compass from Design Wizard: */
  --branding-default: #b5532e;
  --branding-hovered: #8e3f22;
  --branding-pressed: #8e3f22;

  /* Aliases (derive from above): */
  --brand-color: var(--branding-default);
  --brand-color-rgb: 27, 56, 78;
  --brand-hovered: var(--branding-hovered);
  --brand-pressed: var(--branding-pressed);

  --brand-color-2: #104341;
  --brand-color-2-hovered: #746644;
  --brand-color-3: #4d151a;
  --brand-color-4: #130f0f;

  /* Customisable text/bg variants: */
  --text-over-branding: #fff;
  --brand-color-text: var(--brand-color);
  --brand-color-background: #fff;
  --brand-color-border: var(--brand-color);

  /* Make all spacing 25% larger: */
  --spacing-1x: 10px;

  /* Use Fraunces for headings: */
  --font-family-1: "Fraunces", sans-serif;
  --font-family-2: "Jost", sans-serif;
  --footer-font: "Jost", sans-serif;
  --font-stack-sans-serif: "Jost", sans-serif;

  /* Increase paragraph size: */
  --text-size-paragraph: 16px;
  --line-height-paragraph: 24px;

  /* 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: #faf8f5;
  --base-depth: #F0EFEC;
  --text-default: #130f0f;
  --border-default: #C7B58A;
  --mda-box-background: var(--brand-color-2);

  /* Transition */
  --custom-transition: all 200ms ease-out;
}

@media screen and (max-width: 991px) {
  :root {
    --font-size-body: 14px;
    --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);
}

/* ----- 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: 120px;
  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 {
  display: flex;
  font-family: var(--font-stack-sans-serif);
  font-size: 12px;
  font-weight: 600;
  padding: 14px 24px;
  letter-spacing: 3.36px;
  border-radius: var(--border-radius-1x);
  line-height: 100%;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: var(--text-over-branding);
  background-color: var(--brand-color);
}

.header-style-4 .backtosite a::after {
  content: "⟶";
  font-family: var(--font-family-1);
  font-size: 12px;
  transform-origin: center;
  transition: var(--custom-transition);
  flex-shrink: 0;
}

.header-style-4 .backtosite a:hover::after {
  transform: translateX(4px);
}

.header-style-4 .backtosite a:hover {
  background-color: var(--branding-hovered);
  border-color: var(--branding-hovered);
  color: var(--text-over-branding);
}

/* ----- Content ----- */
.button,
.button--primary,
.button--secondary,
.button--branded {
  transition: var(--custom-transition);
}

.button.button--secondary {
  text-transform: uppercase;
  letter-spacing: 3.36px;
}

.button.button--branded {
  display: flex;
  font-family: var(--font-stack-sans-serif);
  font-size: 12px;
  font-weight: 600;
  padding: 14px 24px;
  letter-spacing: 3.36px;
  border-radius: var(--border-radius-1x);
  line-height: 100%;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: var(--text-over-branding);
  background-color: var(--brand-color);
}

.button.button--branded::after {
  content: "⟶";
  font-family: var(--font-family-1);
  font-size: 12px;
  transform-origin: center;
  transition: var(--custom-transition);
  flex-shrink: 0;
}

.button.button--branded:hover::after {
  transform: translateX(4px);
}

.button.button--branded:hover {
  color: #fff;
  background-color: var(--brand-hovered);
  border-color: var(--brand-hovered);
}

.button-icon .button-icon__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  width: 40px;
  height: 40px;
  color: var(--branding-default);
  background: none;
  border: none;
  border-radius: var(--border-radius-1x);
  transition: var(--custom-transition);
}

.button-icon:hover:not(.disabled) .button-icon__icon {
  color: var(--branding-hovered);
  background: none;
  border: none;
}

.avvioCalendarFragment .label,
.avvio-calendar__month-header,
.avvio-calendar__dayname {
  font-family: var(--font-family-1);
  font-weight: 500;
}

#bigCalendar .confirm-section button {
  width: fit-content;
}

#bigCalendar .confirm-section button .paragraph {
  font-size: 12px;
}

.calendarConfirmBtn .button__text {
  font-size: 12px;
}

.info-bar-container .one-item-image {
  border: none;
}

.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;
}

@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);
  }
}