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

.header {
    background: #2ab7ca;
    font-family: "Montserrat", sans-serif;
    padding: 10px;
}

.wrapper {
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1;
}

.footer {
    background: #2ab7ca;
    font-family: "Montserrat", sans-serif;
    padding: 18px 10px;
}

.footer-text {
    color: white;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
}

.footer-image {
    max-width: 100px;
}

.vacation {
    border: 1px solid #ccc;
    border-radius: 20px;
}

.vacation-clickable {
    cursor: pointer;
}

.vacation-image-container {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    overflow: hidden;
    position: relative;
}

.vacation-image {
    height: auto;
    width: 100%;
}

.vacation-image-with-zoom {
    transition: transform .5s ease;
}

.vacation-image-container .country {
    background: #fe4a49;
    bottom: 20px;
    color: white;
    display: block;
    font-family: "Montserrat", sans-serif;
    padding: 8px;
    position: absolute;
    right: 0;
    text-transform: uppercase;
}

.vacation:hover .vacation-image-with-zoom {
    transform: scale(1.1);
}

.vacation-content {
    font-family: "Montserrat", sans-serif;
    padding: 10px;
}

.vacation-content p {
    margin-bottom: 10px;
    margin-left: 10px;
}

.vacation-content p:empty {
    height: 16px;
}

.vacation-content .location {
    font-size: 24px;
}

.vacation-content .detail {
    display: block;
    margin-bottom: 5px;
}

.separator {
    background: #ccc;
    display: block;
    height: 1px;
    margin: 5px 0;
    width: 100%;
}

.price {
    font-family: "Montserrat", sans-serif;
    text-align: right;
}

.price .small-text {
    color: #333;
    font-size: 13px;
}

.price .price-value {
    font-size: 24px;
    font-weight: bold;
}

.price .smaller-text {
    color: #333;
    font-size: 11px;
}

.price-wrapper-floating {
    bottom: 0;
    position: absolute;
    right: 0;
}

.reserve-button {
    margin-right: 20px;
    display: inline-block;
    background: #2ab7ca;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}

.reserve-button:hover {
    text-decoration: underline;
}

/** Contact page **/

.contact-page {
    font-family: "Montserrat", sans-serif;
}

.contact-page.title {
    font-family: "Montserrat", sans-serif;
}

/** Vacations calendar **/

.vacations-calendar .ui-datepicker {
    align-items: center;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
}

.vacations-calendar .ui-datepicker-prev,
.vacations-calendar .ui-datepicker-next {
    color: black;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    margin: 0 10px;
    user-select: none
}

.vacations-calendar .ui-datepicker-title {
    font-family: "Montserrat", sans-serif;
    margin-top: 6px;
    text-align: center;
}

.vacations-calendar th {
    font-family: "Montserrat", sans-serif;
    height: 35px;
    text-align: center;
    width: 35px;
}

.vacations-calendar .day {
    height: 35px;
    padding: 1px;
    text-align: center;
    width: 35px;
}

.vacations-calendar .day > a {
    align-items: center;
    color: black;
    display: flex;
    font-family: "Montserrat", sans-serif;
    height: 100%;
    justify-content: center;
    text-decoration: none;
    width: 100%;
}

.vacations-calendar .day.vacation-day > a {
    color: white;
    cursor: pointer;
}

.vacations-calendar .day.vacation-day-0 > a {
    background: #455d7a;
}

.vacations-calendar .day.vacation-day-1 > a {
    background: #f95959;
}

.vacations-calendar .day.vacation-day-2 > a {
    background: #f96d00;
}

.vacations-calendar .day.vacation-day-3 > a {
    background: #005792;
}

.vacations-calendar .day.vacation-day-4 > a {
    background: #42b883;
}

.vacations-calendar .day.vacation-day-5 > a {
    background: #c24d2c;
}

.vacations-calendar .day.vacation-day-6 > a {
    background: #0092ca;
}

.vacations-calendar .day.vacation-day-7 > a {
    background: #1f6f78;
}

.vacations-calendar .day.vacation-day-8 > a {
    background: #be3144;
}

.vacations-calendar .day.vacation-day-9 > a {
    background: #1e549f;
}

.vacations-calendar .day.start > a {
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
}

.vacations-calendar .day.end > a {
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
}

.loader {
    width: 15px;
    aspect-ratio: 1;
    border-radius: 50%;
    animation: l5 1s infinite linear alternate;
}
@keyframes l5 {
    0%  {box-shadow: 20px 0 #000, -20px 0 #0002;background: #000 }
    33% {box-shadow: 20px 0 #000, -20px 0 #0002;background: #0002}
    66% {box-shadow: 20px 0 #0002,-20px 0 #000; background: #0002}
    100%{box-shadow: 20px 0 #0002,-20px 0 #000; background: #000 }
}

.header-link {
    color: white;
    text-decoration: none;
}

.header-link:hover,
.header-link.active {
    text-decoration: underline;
}

.expired {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    color: white;
    background: rgba(161, 161, 161, 0.8);
    padding: 10px 30px;
    font-size: 30px;
    text-transform: uppercase;
}

.expired > span {
    white-space: nowrap;
}

.instagram-button {
    bottom: 20px;
    display: block;
    position: fixed;
    right: 20px;
    width: 50px;
    height: 50px;
}

.instagram-button > img {
    height: 100%;
    width: 100%;
}

.messenger-button {
    bottom: 90px;
    display: block;
    position: fixed;
    right: 20px;
    width: 50px;
    height: 50px;
}

.messenger-button > img {
    height: 100%;
    width: 100%;
}

.speech-button-wrapper {
    position: fixed;
    right: 90px;
}

.instagram-speech-bubble {
    bottom: 20px;
}

.messenger-speech-bubble {
    bottom: 90px;
}

.speech-bubble {
    position: relative;
    border-radius: .4em;
    color: white;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
}

.speech-bubble:after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-right: 0;
    margin-top: -10px;
    margin-right: -10px;
}

.instagram-speech-bubble .speech-bubble {
    background: #fa7e1e;
}

.messenger-speech-bubble .speech-bubble {
    background: #0084ff;
}

.instagram-speech-bubble .speech-bubble:after {
    border-left-color: #fa7e1e;
}

.messenger-speech-bubble .speech-bubble:after {
    border-left-color: #0084ff;
}

.page-subtitle {
    font-family: "Montserrat", sans-serif;
    font-size: 36px;
    margin-bottom: 15px;
}

.page-subtitle-smaller {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
}

.other-vacations .vacation {
    border-radius: 10px;
}

.other-vacations .vacation-image-container {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.other-vacations .vacation-image-container .country {
    font-size: 14px;
}

.other-vacations .vacation-content .location {
    font-size: 20px;
}

.other-vacations .vacation-content .detail {
    font-size: 14px;
}

.other-vacations .price .price-value {
    font-size: 20px
}

.accommodation-image {
    width: 100%;
}

.contact-element {
    margin-bottom: 10px;
    width: 500px;
}

.about-content {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
}

.accommodation-image {
    cursor: pointer;
}

.zoom-photo-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.zoom-photo {
    height: auto;
    width: 50%;
}

@media (max-width: 767px) {
    .logo {
        width: 120px;
    }

    .page-subtitle {
        font-size: 28px;
    }

    .vacation-content .location {
        font-size: 20px;
    }

    .vacation-content .detail {
        font-size: 15px;
    }

    .instagram-speech-bubble,
    .messenger-speech-bubble {
        display: none;
    }

    .messenger-button {
        bottom: 80px;
    }

    .instagram-button {
        bottom: 20px;
    }

    .messenger-button,
    .instagram-button {
        height: 45px;
        width: 45px;
    }

    .calendar-wrapper {
        display: none;
    }

    .price-wrapper-floating {
        position: relative;
        justify-content: space-between !important;
    }

    .price .price-value {
        font-size: 22px;
    }

    .navbar-menu {
        margin-top: 10px;
    }

    .contact-element {
        width: 100%;
    }

    .header-link,
    .footer-text {
        font-size: 15px;
    }

    .zoom-photo {
        height: auto;
        width: 90%;
    }
}

/* Twemoji emoji styling - match text size */
.emoji,
img.emoji {
    height: 1em;
    width: 1em;
    margin: 0 .05em 0 .1em;
    vertical-align: -0.1em;
    display: inline-block;
}
