@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap");

@import url("https://use.typekit.net/byx6gcl.css");

:root {
  --brand-white: #FFFFFF;
  --brand-black: #000000;
  --brand-gold: #C2A01E;
  --brand-background: #F8F8F8;
  --brand-border: #FFFFFF66;
  --brand-shadow: 0px 0px 15px -4px #00000033;
  
  --custom-transition: all 0.2s linear;
  
  --img-ratio-rate-primary: 4 / 3;
  --img-ratio-rate-primary-mobile: 4 / 3;
  --img-ratio-rate-secondary: 4 / 3;
  --img-ratio-rate-secondary-mobile: 4 / 3;
  --img-ratio-mda-secondary-rate: 4 / 3;
  --img-ratio-mda-secondary-rate-mobile: 4 / 3;
  
  --mda-box-background: var(--brand-color);
  --mda-box-text: var(--text-pressed);
  --mda-box-text-hover: var(--brand-white);
  --cell-box-background: var(--brand-bg50);
}

@media screen {
  
  .header a i,
  .backtotop a i,
  .footer a i {
    margin-right: 0px;
  }
  
  .main-be-area {
    background-color: var(--brand-background);
  }
  
  .mda-table__checkout-date::after,
  .mda-table__checkout-date .mda-table__tooltip-actor::after,
  .avvio-calendar .hovered:hover::before,
  .avvio-calendar .check-out::before {
    display: none !important;
  }
  
  .sticky,
  .content {
    background-attachment: unset !important;
    background-repeat: repeat-y !important;
    background-size: 100% auto !important;
  }
  
  .header {
    display: flex;
    justify-content: center;
    align-items: center;
    
    background-color: var(--brand-white);
    box-shadow: var(--brand-shadow);
    
    padding-block: 22.5px;
    /* border-bottom: 1px solid var(--border-default); */
    z-index: 4;
  }
  
  .header .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-between;
    align-items: center;
    
    width: 100%;
    padding-inline: 30px;
  }
  
  .header .invisible-flex-item {
    display: flex;
    align-self: stretch;
    
    width: 150px;
    height: 100%;
  }
  
  .header .logo {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .header .logo a img {
    display: block;
    
    height: 80px;
    width: auto;
    
    transition: var(--custom-transition);
  }
  
  .header .logo a:hover img {
    opacity: 80%;
  }
  
  .header .backtosite {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  
  .header .backtosite a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    background-color: transparent;
    color: var(--brand-color);
    
    font-size: 13px;
    font-weight: 400;
    line-height: 30px;
    text-align: center;
    text-transform: uppercase;
    
    min-width: 141px;
    column-gap: var(--spacing-1x);
    padding-top: var(--spacing-1x);
    padding-bottom: 2px;
    padding-inline: 0px;
    border-bottom: 1px solid var(--brand-color);
    
    transition: var(--custom-transition);
  }
  
  .header .backtosite a i {
    font-size: 22px;
  }
  
  .header .backtosite:hover a {
    color: var(--brand-gold);
    border-color: 1px solid var(--brand-gold);
  }
  
  /* --- "Only 5 left" tag --- */
  #avvio .card-information__bubble {
    background-color: transparent;
    color: var(--attention-default);
    
    border-color: transparent;
  }
  
  #avvio .card-information__bubble.banner--warning .banner__caption {
    color: inherit;
  }
  
  /* --- MDA changes --- */
  .mda-table .date-header .state.active,
  .mda-table .date-header .caption,
  .mda-cell-stay {
    color: var(--brand-white) !important;
  }
  
  .mda-table__closed {
    background-color: var(--brand-background);
  }
  
  .footer {
    display: flex;
    justify-content: center;
    align-items: center;
    
    background-color: var(--brand-color);
    color: var(--brand-white);
    
    font-size: 17px;
    font-weight: 400;
    line-height: 28px;
    text-align: start;
    
    padding-top: 60px;
    padding-bottom: 20px;
  }
  
  .footer .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: space-between;
    align-items: flex-start;
    
    column-gap: 0px;
    row-gap: var(--spacing-2x);
    padding-inline: 55.44px;
  }
  
  .footer .practical-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    align-self: stretch;
    
    font-size: 17px;
    font-weight: 400;
    line-height: 28px;
    
    row-gap: var(--spacing-1x);
    padding-inline: var(--spacing-4x);
    border-right: 1px solid var(--brand-border);
  }
  
  .footer .practical-info h3 {
    font-size: 24px;
    font-weight: 400;
    line-height: 28.8px;
    text-transform: uppercase;
    
    margin-block: 0px;
  }
  
  .footer .address {
    padding-bottom: var(--spacing-2x);
  }
  
  .footer .contact {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    
    padding-bottom: var(--spacing-2x);
  }
  
  .footer .contact p {
    margin-block: 0px;
  }
  
  .footer .contact a {
    color: var(--brand-white);
    
    transition: var(--custom-transition);
  }
  
  .footer .contact a:hover {
    color: var(--brand-gold);
  }
  
  .footer .footer-logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    
    padding-bottom: 25px;
  }
  
  .footer .footer-logo img {
    display: block;
    
    width: 173px;
    height: auto;
    
    transition: var(--custom-transition);
  }
  
  .footer .footer-logo:hover img {
    opacity: 80%;
  }
  
  .footer .links {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    align-self: stretch;
    
    font-size: 17px;
    font-weight: 400;
    line-height: 28px;
    
    padding-inline: 35px;
    
    border-right: 1px solid var(--brand-border);
  }
  
  .footer .links a {
    color: var(--brand-white);
    
    transition: var(--custom-transition);
  }
  
  .footer .links a:hover {
    color: var(--brand-gold);
  }
  
  .footer small {
    font-size: inherit;
    line-height: inherit;
    
    padding-top: var(--spacing-1x);
  }
  
  .footer small a {
    color: var(--brand-white);
    
    transition: var(--custom-transition);
  }
  
  .footer small a:hover {
    color: var(--brand-gold);
  }
  
  .footer .extras {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    align-self: stretch;
    
    font-size: 17px;
    font-weight: 400;
    line-height: 28px;
    
    row-gap: var(--spacing-1x);
    padding-inline: var(--spacing-4x);
    
    border-right: 1px solid var(--brand-border);
  }
  
  .footer .extras a {
    color: var(--brand-white);
    
    width: 100%;
    padding-bottom: var(--spacing-1x);
    border-bottom: 1px solid var(--brand-white);
    
    transition: var(--custom-transition);
  }
  
  .footer .extras a:hover {
    color: var(--brand-gold);
  }
  
  .footer .extras a:last-child {
    border-bottom: 0px solid transparent;
  }
  
  .footer .socials {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    
    font-size: 13px;
    font-weight: 400;
    line-height: 28px;
    
    gap: var(--spacing-1x);
    padding-inline: var(--spacing-4x);
  }
  
  .footer .socials p {
    flex-basis: 100%;
    margin-block: 0px;
  }
  
  .footer .socials a {
    color: var(--brand-white);
    
    font-size: 26px;
    
    transition: var(--custom-transition);
  }
  
  .footer .socials a svg {
    display: block;
    
    fill: var(--brand-white);
    
    width: var(--spacing-4x);
    
    transition: var(--custom-transition);
  }
  
  .footer .socials a:hover,
  .footer .socials a:hover svg { /* Default backup */
    color: var(--brand-gold);
    fill: var(--brand-gold);
  }
  
  .footer .socials a:nth-child(2):hover, .footer .socials a:nth-child(2):hover svg {color:#4B69AD;fill:#4B69AD;} /* Facebook */
  .footer .socials a:nth-child(3):hover, .footer .socials a:nth-child(3):hover svg {color:#37AEDE;fill:#37AEDE;} /* Facebook */
  .footer .socials a:nth-child(4):hover, .footer .socials a:nth-child(4):hover svg {color:#D32D4D;fill:#D32D4D;} /* Instagram */
  .footer .socials a:nth-child(5):hover, .footer .socials a:nth-child(5):hover svg {color:#DF3D38;fill:#DF3D38;} /* Pinterest */
  .footer .socials a:nth-child(6):hover, .footer .socials a:nth-child(6):hover svg {color:#D32D4D;fill:#D32D4D;} /* YouTube */
  .footer .socials a:nth-child(7):hover, .footer .socials a:nth-child(7):hover svg {color:#3ADD45;fill:#3ADD45;} /* TripAdvisor */
  
}



@media screen and (max-width: 1499px) {
  .header .logo a img {
    height: 70px;
  }
  .footer .container {
    padding-inline: calc(55.44px / 2);
  }
}



@media screen and (max-width: 1199px) {
  .header .logo a img {
    height: 60px;
  }
  .footer .container {
    padding-inline: 0px;
  }
}



/* ----- Tablet specific ----- */
@media screen and (max-width: 999px) {
  
  .header .container {
    grid-template-columns: repeat(2, auto);
  }
  
  .header .invisible-flex-item {
    display: none;
  }
  
  .header .logo a img {
    height: 50px;
  }
  
  .footer .container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer .practical-info {order: 1; padding-inline: var(--spacing-3x);}
  .footer .socials {order: 2; padding-inline: var(--spacing-3x);}
  .footer .links {order: 3; padding-inline: var(--spacing-3x);}
  .footer .extras {order: 4; padding-inline: var(--spacing-3x); border-right: 0px solid transparent;}
  
}



/* ----- Mobile specific ----- */
@media screen and (max-width: 499px) {
  
  .header .container {
    display: flex;
    justify-content: center;

    padding-inline: 0px;
  }
  
  .header .backtosite {
    display: none;
  }
  
  .footer .container {
    display: flex;
    flex-direction: column;
  }
  
  .footer .practical-info {border-right: 0px solid transparent;}
  .footer .socials {}
  .footer .links {border-right: 0px solid transparent;}
  .footer .extras {}
  
}