/* PRELOADER */
.preloader {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 100vw;
    left: 0;
    z-index: 9999999999;
    background: var(--text-color-light-1);
    overflow: hidden;
    height: 100vh;
    top: 0;
}

.preloader-image {
    height: 3rem;
    top: calc(var(--vh)*100 / 2 - 1.5rem);
}

.preloader-image img {
    height: 3rem;
}

.animation-preloader-image {
    animation: pulse 2s infinite;
    animation-delay: 0s;
}

@keyframes pulse {
    from { transform: scale3d(1, 1, 1); }
    50% { transform: scale3d(1.1, 1.1, 1.1); }
    to { transform: scale3d(1, 1, 1); }
}

.animation-preloader-fadeout {
    animation: preloader-fadeout 1s forwards;
}

@keyframes preloader-fadeout {
    from { transform: translateY(1); }
    to { transform: translateY(-200vh); }
}

.animation-preloader-fadein {
    animation: preloader-fadein 1s forwards;
}

@keyframes preloader-fadein {
    from { opacity: 0; transform: translateY(-200vh); }
    to { opacity: 1; transform: translateY(1); }
}

/* HEADER */
header {
    position: fixed;
    width: 100vw;
    z-index: 10;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    transition: all 0.5s ease;
    background: linear-gradient(180deg, var(--background-color-dark-1) 0%, rgba(17, 17, 17, 0) 100%);
}

/* HEADER - LANGUAGES */
.header-languages {
    line-height: 100%!important;
}

.languages-item {
    color: var(--text-color-light-2);
    text-transform: uppercase!important;
    font-family: 'Cormorant', serif;
    transition: all 0.5s ease;
}

.languages-item:hover {
    color: var(--text-color-light-1);
}

.languages-item:nth-of-type(1) {
    margin-right: 0.5rem;
}

.languages-item.languages-item-active {
    color: var(--text-color-light-1);
}

/* Hide EN language switcher until ready */
.languages-item[data-language="en"] {
    display: none;
}

/* HEADER - LOGO */
.header-logo img {
    height: 3rem;
}

.header-logo {
    position: relative;
    cursor: pointer;
}

.header-logo-label {
    position: absolute;
    top: 4rem;
    font-size: 8px;
    line-height: 150%;
    text-align: center;
    text-transform: uppercase;
    color: var(--text-color-light-1);
}

@media (max-width: 991.98px) {
    .header-logo img { height: 2.5rem; }
    .header-logo-label { top: 3rem; }
}

@media (max-width: 319.98px) {
    .header-logo img { height: 2rem; }
    .header-logo-label { top: 3rem; font-size: 6px; }
}

/* HEADER - BURGER */
.header-burger {
    position: relative;
    cursor: pointer;
    height: 1rem;
    width: 2rem;
}

.burger-line {
    width: 100%;
    height: 1px;
    background-color: var(--text-color-light-1);
    transition: all 0.3s linear;
}

.burger-line:nth-of-type(1) {
    transform-origin: right center;
    transform: scaleX(0.75);
}

.burger-line:nth-of-type(2) {
    margin: auto;
    transform-origin: left center;
}

.burger-line:nth-of-type(3) {
    transform-origin: right center;
    transform: scaleX(0.75);
}

.header-burger:hover .burger-line:nth-of-type(1) {
    transform: scaleX(1);
}

.header-burger:hover .burger-line:nth-of-type(2) {
    transform: scaleX(0.75);
}

.header-burger:hover .burger-line:nth-of-type(3) {
    transform: scaleX(1);
}

/* MOBILE APP BADGES (desktop header) */
.mobile-app-bage--desktop {
    height: 2rem;
    display: block;
}

/* FOOTER */
footer {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.footer-item {
    text-align: center;
    color: var(--text-color-dark-2);
    font-size: 8px;
    text-transform: uppercase!important;
    line-height: 150%;
    text-decoration: none;
    position: relative;
    z-index: 1;
}

.footer-disclamer {
    font-size: 8px;
    letter-spacing: var(--letter-space-small);
}

a.footer-item:hover {
    color: var(--text-color-light-1);
    text-decoration: none;
}

.footer-item a {
    opacity: 0.5;
}

.footer-item a:hover {
    opacity: 1!important;
}

@media (max-width: 991.98px) {
    footer {
        text-align: left;
    }
}

/* NAVIGATION */
.navigation {
    position: fixed!important;
    height: 100vh;
    height: calc(var(--vh, 1vh)*100)!important;
    width: 100vw!important;
    background: var(--background-color-dark-1)!important;
    top: 0!important;
    right: -100vw;
    z-index: 200!important;
    overflow-y: scroll!important;
    overflow-x: hidden!important;
    padding-top: 2rem!important;
    padding-bottom: 2rem!important;
    transition: right 0.3s ease!important;
}

@media (min-width: 768px) {
    .navigation { overflow-y: hidden; }
}

.navigation-showed {
    right: 0!important;
}

.navigation .container {
    overflow: hidden;
}

.navigation-row {
    min-height: 100%;
}

/* NAVIGATION - HEADER */
.navigation-header {
    z-index: 100;
    position: absolute;
    top: 2rem;
    width: 100%;
    height: auto;
    pointer-events: none;
}

.navigation-close {
    height: 1.5rem;
    width: 1.5rem;
    fill: var(--text-color-light-2);
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.navigation-close:hover {
    fill: var(--text-color-light-1);
}

/* NAVIGATION - SECTIONS */
.navigation-section {
    margin-bottom: 2rem;
}

@media (max-width: 767.98px) {
    .navigation-section { margin-bottom: 1.5rem; }
}

.navigation-left .navigation-section:nth-child(2) {
    margin-bottom: 0rem;
}

.navigation-heading {
    margin-bottom: 1rem;
}

.navigation-heading-text {
    font-size: 12px;
    line-height: 100%;
    color: var(--text-color-light-2);
    text-transform: uppercase;
}

/* NAVIGATION - ITEMS */
.navigation-item {
    margin-bottom: 1.25rem;
    letter-spacing: 0!important;
}

@media (max-width: 767.98px) {
    .navigation-item { margin-bottom: 1rem; }
}

.navigation-contacts .navigation-item {
    margin-bottom: 1rem;
}

.navigation-item-title {
    font-family: 'Cormorant', serif;
    font-size: 38px;
    line-height: 100%;
    color: var(--text-color-light-1);
    transition: all 0.5s ease;
    text-decoration: none;
}

@media (max-width: 767.98px) {
    .navigation-item-title { font-size: 32px; }
}

.navigation-item-title:hover {
    padding-left: 1rem;
    color: var(--text-color-light-1);
}

.navigation-phone {
    font-family: 'Cormorant', serif;
    font-size: 28px;
    line-height: 100%;
    color: var(--text-color-light-1)!important;
    text-decoration: none;
}

.navigation-phone:hover {
    opacity: 0.8;
}

.navigation-adress-title {
    color: var(--text-color-light-1);
}

.navigation-adress-description {
    font-size: 12px;
    letter-spacing: var(--letter-space-small);
    color: var(--text-color-light-2);
    text-decoration: none;
    transition: all 0.5s ease;
}

.navigation-adress-description:hover {
    color: var(--text-color-light-1);
}

/* NAVIGATION - SOCIAL */
.navigation-social-item {
    text-decoration: none;
    transition: all 0.5s ease;
}

.navigation-social-item svg {
    height: 1.5rem;
    width: 1.5rem;
}

.navigation-social-item svg path {
    fill: var(--text-color-light-2);
    transition: all 0.5s ease;
}

.navigation-social-item:hover svg path {
    fill: var(--text-color-light-1);
}

/* NAVIGATION - SMALLER ITEMS (info pages) */
.navigation-item-title--small {
    font-family: 'Cormorant', serif;
    font-size: 28px;
    line-height: 100%;
    color: var(--text-color-light-2);
    transition: all 0.5s ease;
    text-decoration: none;
}

@media (max-width: 767.98px) {
    .navigation-item-title--small { font-size: 24px; }
}

.navigation-item-title--small:hover {
    padding-left: 1rem;
    color: var(--text-color-light-1);
}

/* NAVIGATION - ACCORDION (homepage restaurants) */
.navigation-accordion-toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    margin-bottom: 1.5rem;
    -webkit-tap-highlight-color: transparent;
}

.navigation-accordion-toggle .chevron {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--text-color-light-2);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.navigation-accordion-toggle.open .chevron {
    transform: rotate(90deg);
}

.navigation-restaurants-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.navigation-restaurants-list.open {
    max-height: 600px;
}

.navigation-restaurants-list .navigation-item {
    margin-bottom: 1rem;
}

.navigation-item-title--accordion {
    font-family: 'Cormorant', serif;
    font-size: 30px;
    line-height: 100%;
    color: var(--text-color-light-2);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    padding-left: 0.5rem;
}

@media (max-width: 767.98px) {
    .navigation-item-title--accordion { font-size: 26px; }
}

.navigation-item-title--accordion:hover {
    padding-left: 1.5rem;
    color: var(--text-color-light-1);
}

/* NAVIGATION - APP BADGES */
.navigation-app-badge {
    height: 2.5rem;
    display: block;
}
