@font-face {
    font-family: "Isidora";
    src: url("./assets/fonts/isidora-light.woff") format("woff");
    font-style: normal;
    font-weight: 300;
    font-display: swap;
}


body {
    margin: 0;
    font-family: "Isidora", sans-serif;
}


/* =========================
   HEADER
========================= */

.dev1-cbox-header-navigation {
    width: 100%;
    min-height: 82px;

    padding-left: 72px;
    padding-right: 72px;

    display: flex;
    align-items: center;

    gap: 38px;

    background: #612d87;
    color: #ffffff;

    box-sizing: border-box;
}


.dev1-cbox-header-navigation *,
.dev1-cbox-header-navigation *::before,
.dev1-cbox-header-navigation *::after {
    box-sizing: border-box;
}


/* =========================
   LOGO
========================= */

.dev1-cbox-header-navigation__logo-area {
    width: 160px;
    flex-shrink: 0;
}


.dev1-cbox-header-navigation__logo-link {
    display: block;
}


.dev1-cbox-header-navigation__logo  {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 1;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* =========================
   SEARCH
========================= */

.dev1-cbox-header-navigation__search {
    width: 405px;
    min-height: 46px;

    padding: 0 17px;

    display: flex;
    align-items: center;

    gap: 10px;

    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 999px;

    color: #ffffff;

    background: rgba(255, 255, 255, 0.14);
}


.dev1-cbox-header-navigation__search-icon {
    flex-shrink: 0;

    color: #ffffff;

    font-size: 18px;
    line-height: 1;
}


.dev1-cbox-header-navigation__search-input {
    width: 100%;
    min-width: 0;

    padding: 0;

    border: 0;
    outline: 0;

    color: #ffffff;

    background: transparent;

    font-family: "Isidora", sans-serif;
    font-size: 16px;
    font-weight: 300;
}


.dev1-cbox-header-navigation__search-input::placeholder {
    color: rgba(255, 255, 255, 0.88);
}


/* =========================
   NAVIGATION
========================= */

.dev1-cbox-header-navigation__menu {
    margin-left: auto;

    display: flex;
    align-items: center;

    gap: 22px;
}


.dev1-cbox-header-navigation__menu-link {
    color: #ffffff;

    background: transparent;

    text-decoration: none;

    font-family: "Isidora", sans-serif;
    font-size: 14px;
    font-weight: 300;

    letter-spacing: 0.035em;

    text-transform: uppercase;

    white-space: nowrap;
}


/* =========================
   HOTEL MENU
========================= */

.dev1-cbox-header-navigation__hotel-menu {
    position: relative;
}


/* Hotel Button */

.dev1-cbox-header-navigation__hotel-button {
    min-height: 42px;

    padding: 10px 13px;

    border: 1px solid transparent;
    border-radius: 12px 0;

    color: #ffffff;

    background: transparent;

    display: flex;
    align-items: center;

    font-family: "Isidora", sans-serif;
    font-size: 14px;
    font-weight: 300;

    letter-spacing: 0.035em;

    text-transform: uppercase;

    white-space: nowrap;

    cursor: pointer;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}


.dev1-cbox-header-navigation__hotel-button:hover,
.dev1-cbox-header-navigation__hotel-button:focus-visible,
.dev1-cbox-header-navigation__hotel-menu--open
.dev1-cbox-header-navigation__hotel-button {
    border-color: rgba(255, 255, 255, 0.3);

    background: rgba(255, 255, 255, 0.12);
}


/* Hotel Arrow */

.dev1-cbox-header-navigation__hotel-arrow {
    position: relative;

    display: inline-block;

    width: 8px;
    height: 8px;

    margin: -4px 0 0 7px;

    overflow: hidden;

    color: transparent;

    border-right: 1.5px solid rgba(255, 255, 255, 0.92);
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.92);

    vertical-align: middle;

    transform: rotate(45deg);

    transition: transform 0.2s ease;
}


/* =========================
   HOTEL DROPDOWN
========================= */

.dev1-cbox-header-navigation__hotel-dropdown {
    position: absolute;

    z-index: 1020;

    top: calc(100% + 12px);
    left: 0;

    min-width: 250px;

    padding: 12px;

    display: grid;

    gap: 4px;

    border: 1px solid rgba(97, 45, 135, 0.16);
    border-top: 4px solid #612d87;

    border-radius: 20px 0;

    opacity: 0;
    visibility: hidden;

    transform: translateY(-8px);

    color: #171219;

    background: rgba(255, 255, 255, 0.99);

    box-shadow: 0 22px 54px rgba(40, 16, 52, 0.2);

    backdrop-filter: blur(16px);

    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease;
}


/* Dropdown Top Arrow */

.dev1-cbox-header-navigation__hotel-dropdown::before {
    content: "";

    position: absolute;

    top: -7px;
    left: 25px;

    width: 14px;
    height: 14px;

    border-top: 4px solid #612d87;
    border-left: 4px solid #612d87;

    background: #612d87;

    transform: rotate(45deg);
}


/* Open Dropdown */

.dev1-cbox-header-navigation__hotel-menu--open
.dev1-cbox-header-navigation__hotel-dropdown {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}


/* Rotate Arrow When Open */

.dev1-cbox-header-navigation__hotel-menu--open
.dev1-cbox-header-navigation__hotel-arrow {
    transform: translateY(4px) rotate(225deg);
}


/* Dropdown Links */

.dev1-cbox-header-navigation__hotel-dropdown-link {
    position: relative;

    z-index: 1;

    padding: 13px 38px 13px 14px;

    border-bottom: 1px solid rgba(133, 115, 98, 0.18);

    border-radius: 10px 0;

    color: #171219;

    text-decoration: none;

    font-family: "Isidora", sans-serif;

    font-size: 15px;
    font-weight: 300;

    line-height: 1.25;

    transition:
        color 0.18s ease,
        background-color 0.18s ease,
        padding-left 0.18s ease;
}


.dev1-cbox-header-navigation__hotel-dropdown-link:last-child {
    border-bottom: 0;
}


/* Dropdown Link Arrow */

.dev1-cbox-header-navigation__hotel-dropdown-link::after {
    content: "\2192";

    position: absolute;

    top: 50%;
    right: 14px;

    color: #612d87;

    opacity: 0;

    transform: translate(-5px, -50%);

    transition:
        opacity 0.18s ease,
        transform 0.18s ease;
}


.dev1-cbox-header-navigation__hotel-dropdown-link:hover,
.dev1-cbox-header-navigation__hotel-dropdown-link:focus-visible {
    padding-left: 18px;

    color: #612d87;

    background: #f4eef7;
}


.dev1-cbox-header-navigation__hotel-dropdown-link:hover::after,
.dev1-cbox-header-navigation__hotel-dropdown-link:focus-visible::after {
    opacity: 1;

    transform: translate(0, -50%);
}


/* =========================
   BUY TICKET BUTTON
========================= */

.dev1-cbox-header-navigation__ticket-button {
    min-width: 154px;
    min-height: 46px;

    padding: 0 20px 0 23px;

    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    border: 0;

    border-radius: 18px 0;

    color: #4f1e66;

    background: #ffffff;

    text-decoration: none;

    font-family: "Isidora", sans-serif;

    font-size: 13px;
    font-weight: 300;

    letter-spacing: 0.035em;

    text-transform: uppercase;

    white-space: nowrap;
}


.dev1-cbox-header-navigation__ticket-arrow {
    color: #d31787;

    font-size: 16px;

    line-height: 1;
}


.dev1-cbox-header-navigation__ticket-button:hover,
.dev1-cbox-header-navigation__ticket-button:focus-visible {
    background: #f8f3fa;
}


/* =========================
   FOCUS
========================= */

.dev1-cbox-header-navigation :focus-visible {
    outline: 3px solid #ffffff;

    outline-offset: 3px;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1100px) {

    .dev1-cbox-header-navigation {
        min-height: 68px;

        padding: 10px 25px;

        flex-wrap: wrap;

        gap: 15px;
    }


    .dev1-cbox-header-navigation__logo-area {
        width: 135px;
    }


    .dev1-cbox-header-navigation__search {
        flex: 1;

        width: auto;
    }


    .dev1-cbox-header-navigation__menu {
        width: 100%;

        margin-left: 0;

        justify-content: flex-end;

        gap: 14px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .dev1-cbox-header-navigation {
        padding: 12px 18px;

        gap: 12px;
    }


    .dev1-cbox-header-navigation__logo-area {
        width: 122px;
    }


    .dev1-cbox-header-navigation__search {
        width: 100%;

        order: 3;

        flex: none;
    }


    .dev1-cbox-header-navigation__menu {
        width: 100%;

        justify-content: flex-start;

        flex-wrap: wrap;

        gap: 10px;
    }


    .dev1-cbox-header-navigation__ticket-button {
        min-width: 145px;
    }


    .dev1-cbox-header-navigation__hotel-dropdown {
        min-width: 230px;
    }


    #cboxHotelDropdown {
        left: -9px;
    }

}




/* =========================================================
   FOOTER
========================================================= */

.dev1-cbox-footer {
    display: block;

    width: 100%;

    height: auto !important;

    min-height: 0 !important;

    margin: 0;

    padding: 0;

    background: #0d0810;

    color: #ffffff;

    overflow: hidden;

    font-family: "Isidora", sans-serif;
}


/* =========================================================
   CONTAINER
========================================================= */

.dev1-cbox-footer__container {
    width: calc(100% - 296px);

    max-width: 1538px;

    height: auto;

    min-height: 0;

    margin: 0 auto;

    padding-top: 75px;

    padding-bottom: 0;
}


/* =========================================================
   MAIN FOOTER
========================================================= */

.dev1-cbox-footer__main {
    display: grid;

    grid-template-columns:
        1.45fr
        0.85fr
        0.85fr
        1.1fr;

    column-gap: 70px;

    align-items: start;

    width: 100%;

    margin: 0;

    padding: 0;
}


/* =========================================================
   BRAND
========================================================= */

.dev1-cbox-footer__brand {
    min-width: 0;

    margin: 0;

    padding: 0;
}


/* =========================================================
   LOGO
========================================================= */

.dev1-cbox-footer-navigation__logo {
    display: block;

    width: 190px;

    max-width: 100%;

    height: auto;

    margin: 0;

    padding: 0;

    filter: brightness(0) invert(1);
}


/* =========================================================
   DESCRIPTION
========================================================= */

.dev1-cbox-footer__description {
    max-width: 400px;

    margin: 38px 0 0;

    padding: 0;

    color: #9991a8;

    font-size: 16px;

    font-weight: 300;

    line-height: 1.65;
}


/* =========================================================
   COLUMNS
========================================================= */

.dev1-cbox-footer__column {
    min-width: 0;

    margin: 0;

    padding: 0;
}


/* =========================================================
   HEADINGS
========================================================= */

.dev1-cbox-footer__heading {
    margin: 0 0 24px;

    padding: 0;

    color: #ffffff;

    font-size: 17px;

    font-weight: 300;

    line-height: 1.2;
}


/* =========================================================
   LINKS
========================================================= */

.dev1-cbox-footer__links {
    display: flex;

    flex-direction: column;

    gap: 16px;

    margin: 0;

    padding: 0;
}


.dev1-cbox-footer__link {
    display: block;

    margin: 0;

    padding: 0;

    color: #9991a8;

    font-size: 16px;

    font-weight: 300;

    line-height: 1.35;

    text-decoration: none;

    transition: color 0.2s ease;
}


.dev1-cbox-footer__link:hover {
    color: #ffffff;
}


/* =========================================================
   NEWSLETTER
========================================================= */

.dev1-cbox-footer__newsletter-text {
    max-width: 350px;

    margin: 0 0 20px;

    padding: 0;

    color: #9991a8;

    font-size: 16px;

    font-weight: 300;

    line-height: 1.65;
}


.dev1-cbox-footer__form {
    width: 100%;

    max-width: 360px;

    margin: 0;

    padding: 0;
}


.dev1-cbox-footer__input-wrap {
    display: flex;

    align-items: stretch;

    width: 100%;

    height: 70px;

    border: 1px solid rgba(255, 255, 255, 0.18);

    border-radius: 18px;

    overflow: hidden;
}


.dev1-cbox-footer__input {
    flex: 1;

    min-width: 0;

    width: 100%;

    height: 100%;

    margin: 0;

    padding: 0 20px;

    border: 0;

    outline: 0;

    background: transparent;

    color: #ffffff;

    font-family: "Isidora", sans-serif;

    font-size: 16px;

    font-weight: 300;
}


.dev1-cbox-footer__input::placeholder {
    color: #9991a8;

    opacity: 1;
}


.dev1-cbox-footer__submit {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 62px;

    height: 100%;

    flex: 0 0 62px;

    margin: 0;

    padding: 0;

    border: 0;

    border-radius: 0;

    background: #f7ca55;

    color: #171018;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 22px;

    font-weight: 400;

    cursor: pointer;

    transition: background-color 0.2s ease;
}


.dev1-cbox-footer__submit:hover {
    background: #ffd76b;
}


/* =========================================================
   DIVIDER
========================================================= */

.dev1-cbox-footer__divider {
    width: 100%;

    height: 1px;

    margin: 72px 0 0;

    padding: 0;

    background: rgba(255, 255, 255, 0.12);
}


/* =========================================================
   BOTTOM
========================================================= */

.dev1-cbox-footer__bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    width: 100%;

    height: 72px;

    min-height: 0;

    margin: 0;

    padding: 0;
}


/* =========================================================
   COPYRIGHT
========================================================= */

.dev1-cbox-footer__copyright {
    margin: 0;

    padding: 0;

    color: #9991a8;

    font-size: 14px;

    font-weight: 300;

    line-height: 1.3;
}


/* =========================================================
   SOCIALS
========================================================= */

.dev1-cbox-footer__socials {
    display: flex;

    align-items: center;

    gap: 26px;

    margin: 0;

    padding: 0;
}


.dev1-cbox-footer__social {
    margin: 0;

    padding: 0;

    color: #9991a8;

    font-size: 14px;

    font-weight: 300;

    line-height: 1;

    text-decoration: none;

    transition: color 0.2s ease;
}


.dev1-cbox-footer__social:hover {
    color: #ffffff;
}


/* =========================================================
   REMOVE EXTRA SPACE
========================================================= */

.dev1-cbox-footer,
.dev1-cbox-footer__container,
.dev1-cbox-footer__main,
.dev1-cbox-footer__brand,
.dev1-cbox-footer__column,
.dev1-cbox-footer__bottom,
.dev1-cbox-footer__copyright,
.dev1-cbox-footer__socials,
.dev1-cbox-footer__social,
.dev1-cbox-footer__description,
.dev1-cbox-footer__newsletter-text,
.dev1-cbox-footer__form {
    margin-bottom: 0 !important;
}


.dev1-cbox-footer::after,
.dev1-cbox-footer__container::after {
    display: none;

    content: none;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (max-width: 1400px) {

    .dev1-cbox-footer__container {
        width: calc(100% - 180px);
    }


    .dev1-cbox-footer__main {
        column-gap: 55px;
    }


    .dev1-cbox-footer-navigation__logo {
        width: 180px;
    }
}


/* =========================================================
   TABLET / DESKTOP
========================================================= */

@media (max-width: 1100px) {

    .dev1-cbox-footer__container {
        width: calc(100% - 100px);

        padding-top: 65px;
    }


    .dev1-cbox-footer__main {
        grid-template-columns:
            repeat(2, 1fr);

        column-gap: 60px;

        row-gap: 45px;
    }


    .dev1-cbox-footer-navigation__logo {
        width: 175px;
    }


    .dev1-cbox-footer__divider {
        margin-top: 55px;
    }


    .dev1-cbox-footer__bottom {
        height: 65px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 800px) {

    .dev1-cbox-footer__container {
        width: calc(100% - 70px);

        padding-top: 42px;
    }


    .dev1-cbox-footer__main {
        grid-template-columns:
            repeat(2, 1fr);

        column-gap: 40px;

        row-gap: 40px;
    }


    .dev1-cbox-footer-navigation__logo {
        width: 170px;
    }


    .dev1-cbox-footer__description {
        margin-top: 20px;

        font-size: 15px;
    }


    .dev1-cbox-footer__heading {
        margin-bottom: 18px;

        font-size: 16px;
    }


    .dev1-cbox-footer__link {
        font-size: 15px;
    }


    .dev1-cbox-footer__newsletter-text {
        font-size: 15px;
    }


    .dev1-cbox-footer__divider {
        margin-top: 50px;
    }


    .dev1-cbox-footer__bottom {
        height: 60px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .dev1-cbox-footer__container {
        width: calc(100% - 40px);

        padding-top: 28px;
    }


    .dev1-cbox-footer__main {
        grid-template-columns: 1fr;

        column-gap: 0;

        row-gap: 35px;
    }


    .dev1-cbox-footer-navigation__logo {
        width: 200px;

        margin: 0;
    }


    .dev1-cbox-footer__description {
        max-width: 330px;

        margin-top: 12px;

        font-size: 14px;

        line-height: 1.6;
    }


    .dev1-cbox-footer__heading {
        margin-bottom: 16px;

        font-size: 16px;
    }


    .dev1-cbox-footer__links {
        gap: 12px;
    }


    .dev1-cbox-footer__link {
        font-size: 14px;
    }


    .dev1-cbox-footer__newsletter-text {
        max-width: 330px;

        margin-bottom: 16px;

        font-size: 14px;
    }


    .dev1-cbox-footer__input-wrap {
        height: 62px;

        border-radius: 16px;
    }


    .dev1-cbox-footer__input {
        padding: 0 16px;

        font-size: 14px;
    }


    .dev1-cbox-footer__submit {
        width: 58px;

        flex-basis: 58px;

        font-size: 20px;
    }


    .dev1-cbox-footer__divider {
        margin-top: 42px;
    }


    .dev1-cbox-footer__bottom {
        height: auto;

        min-height: 0;

        flex-direction: column;

        align-items: flex-start;

        justify-content: center;

        gap: 15px;

        padding: 16px 0 18px;
    }


    .dev1-cbox-footer__copyright {
        font-size: 13px;
    }


    .dev1-cbox-footer__socials {
        gap: 20px;
    }


    .dev1-cbox-footer__social {
        font-size: 13px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .dev1-cbox-footer__container {
        width: calc(100% - 30px);

        padding-top: 24px;
    }


    .dev1-cbox-footer-navigation__logo {
        width: 180px;
    }


    .dev1-cbox-footer__description {
        max-width: 300px;

        margin-top: 10px;

        font-size: 13px;
    }


    .dev1-cbox-footer__newsletter-text,
    .dev1-cbox-footer__link {
        font-size: 13px;
    }


    .dev1-cbox-footer__divider {
        margin-top: 38px;
    }


    .dev1-cbox-footer__bottom {
        gap: 14px;

        padding-top: 15px;

        padding-bottom: 16px;
    }


    .dev1-cbox-footer__socials {
        gap: 17px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .dev1-cbox-footer__link,
    .dev1-cbox-footer__social,
    .dev1-cbox-footer__submit {
        transition: none;
    }
}