/* ════════════════════════════════
   SITE HEADER
   ════════════════════════════════ */

.scrolled .site-header {
    background: #ffffff20;
    backdrop-filter: blur(10px);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 200;
    padding: 0 40px;
    background: transparent;
    transition: background 0.3s, box-shadow 0.3s;
}

.site-header .inner {
    max-width: 1200px;
    margin: 0 auto;
    height: 64px;
    display: flex;
    align-items: center;
    gap: 8px;
}


.site-header .the-menu {}

.site-header .the-menu img {
    display: block;
    height: 17px;
    width: 22px;
}

.site-header .the-logo {
    flex-shrink: 0;
    margin-right: 8px;
}

.site-header .the-logo img {
    height: 36px;
    display: block;
}

/* ── Nav ── */
.site-header .the-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-header .the-nav a,
.site-header .nav-trigger {
    font-size: 15px;
    color: #000;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    transition: background 0.15s;
    text-decoration: none;

}

.site-header .the-nav .actived {
    font-weight: 700;
}

.site-header .the-nav .actived::after {
    content: '';
    display: block;
    height: 2px;
    background: #FFE808;
    margin-top: 2px;
    border-radius: 2px;
}

.site-header .nav-arrow {
    font-size: 17px;
    transition: transform 0.2s;
}

/* ── Dropdown common ── */
.site-header .nav-item {
    position: relative;
}

.site-header .nav-panel {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    border-radius: 24px;
    padding: 35px 17px;
    z-index: 300;
    box-shadow: 0px 10px 24px 0px #FFF0BE;
    border: 1px solid #FFF4A2;
    width: 314px;
}

.site-header .nav-item.nav-open>.nav-panel {
    display: block;
}

.site-header .nav-item.nav-open>.nav-trigger .nav-arrow {
    transform: rotate(180deg);
}

/* ── Rooms panel: 3-col grid ── */
.site-header .rooms-panel {
    width: 640px;
    left: -8px;
}

.site-header .rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-header .rooms-grid a {
    font-size: 14px;
    color: #111;
    font-weight: 500;
    padding: 12px 14px;
    border-radius: 10px;
    background: #f5f5f5;
    transition: background 0.15s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.site-header .rooms-grid li>a:hover {
    background: #FFE808;
    color: #000;
}


.mobile-nav-box {
    display: none;
}


/* ── About / Language shared panel ── */
.site-header .list-panel {
    min-width: 180px;
    flex-direction: column;
    gap: 10px;
    list-style: none;
}

.site-header .nav-item.nav-open>.list-panel {
    display: flex;
}

.site-header .list-panel li>a {
    font-size: 14px;
    font-weight: 500;
    padding: 12px 14px;
    border-radius: 10px;
    background: #f5f5f5;
    transition: background 0.15s, color 0.15s;
    text-align: center;
    display: block;
}

.site-header .list-panel li>a:hover {
    background: #FFE808;
    color: #000;
}

/* ── Nav right ── */
.site-header .the-nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

/* ── Language trigger & panel position ── */
.site-header .lang-trigger {
    border: 1px solid rgba(0, 0, 0, 0.18);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 14px;
}

.site-header .lang-trigger:hover {
    background: rgba(0, 0, 0, 0.05);
}

.site-header .lang-panel {
    right: 0;
    left: auto;
    min-width: 200px;
}

.site-header .lang-coming {
    font-size: 13px;
    color: #aaa;
    padding: 8px 16px 4px;
    text-align: center;
}

/* ── Login btn ── */
.site-header .the-login {
    cursor: pointer;
}

.site-header .the-login .btn {
    background: #FFE808;
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 700;
    color: #000;
    white-space: nowrap;
    transition: background 0.15s;
}

.site-header .the-login .btn:hover {
    background: #f5df00;
}

/* ════════════════════════════════
   FOOTER
   ════════════════════════════════ */

footer {
    --dark-bg: #000;
    --text-secondary: #A0A0A0;
    --text-primary: #fff;

    background: var(--dark-bg);
    padding: 20px 0;
    align-items: center;
    display: flex;
    justify-content: space-between;
    text-align: start;
}

footer .footer-inner {
    margin: 0 auto;
    max-width: 1200px;
}

footer .footer-inner .footer-breadcrumb {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
    margin-bottom: 68px;
}

footer .footer-breadcrumb>a,
footer .footer-breadcrumb>span {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    text-decoration: none;
}

footer .footer-breadcrumb>a,
footer .footer-breadcrumb>span {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.6;
    text-decoration: none;
}

footer .footer-breadcrumb>span:last-child {
    color: var(--text-primary);
}

footer .footer-top {
    display: grid;
    gap: 60px;
    grid-template-columns: 1fr 2fr;
}

footer .footer-brand {
    max-width: 300px;
}

footer .footer-logo {
    font-size: 28px;
    margin-bottom: 0;
}

footer .footer-logo img {
    height: 40px;
}

footer .footer-tagline {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

footer .footer-lang-switcher {
    position: relative;
    display: inline-block;
}

footer .footer-lang-btn {
    align-items: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    font-size: 14px;
    gap: 8px;
    padding: 8px 16px;
    transition: border-color 0.2s;
}

footer .footer-lang-btn:hover {
    border-color: rgba(255, 255, 255, 0.7);
}

footer .footer-lang-arrow {
    font-size: 11px;
    opacity: 0.7;
    transition: transform 0.2s;
}

footer .footer-lang-btn[aria-expanded="true"] .footer-lang-arrow {
    transform: rotate(180deg);
}

footer .footer-lang-dropdown {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    bottom: calc(100% + 8px);
    display: none;
    left: 0;
    list-style: none;
    margin: 0;
    min-width: 160px;
    overflow: hidden;
    padding: 6px 0;
    position: absolute;
}

footer .footer-lang-dropdown.nav-open {
    display: block;
}

footer .footer-lang-dropdown li {
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 14px;
    padding: 10px 16px;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}

footer .footer-lang-dropdown li:hover {
    background: rgba(255, 255, 255, 0.08);
}

footer .footer-lang-dropdown li a {
    color: var(--text-secondary);
    display: block;
    text-decoration: none;
}

footer .footer-lang-dropdown li:hover a {
    color: var(--text-primary);
}

footer .footer-columns {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(4, 1fr);
}

footer .footer-column h4 {
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

footer .footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

footer .footer-column li {
    margin-bottom: 10px;
}

footer .footer-column a {
    color: var(--text-secondary);
    font-size: 14px;
    text-decoration: none;
    transition: color .2s;
}

footer .footer-bottom {
    border-top: 1px solid var(--dark-border);
    display: flex;
    gap: 16px;
    padding-top: 32px;
    text-align: center;
    flex-direction: row;
    justify-content: space-between;
    text-align: start;
}

footer .footer-copy {
    color: var(--text-secondary);
    font-size: 12px;
    text-align: right;
    line-height: 1.66;
}

footer .footer-legal {
    display: flex;
    gap: 24px;
    justify-content: center;
}

footer .footer-legal a {
    color: var(--text-secondary);
    font-size: 13px;
    text-decoration: none;
    transition: color .2s;
}

@media only screen and (min-width:768px) {
    .hidden-sm-and-up {
        display: none !important;
    }
}

@media only screen and (max-width:767px) {
    .hidden-xs-only {
        display: none !important;
    }

    .site-header {
        padding: 0 16px;
    }

    .site-header .inner {
        gap: 6px;
    }

    .site-header .rooms-panel {
        width: calc(100vw - 32px);
        left: 50%;
        transform: translateX(-50%);
    }

    .site-header .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mobile-nav-box {
        position: fixed;
        z-index: 999;
        width: 75%;
        left: 0;
        top: 0;
        height: 100%;
        background: #fff;
        display: flex;
        flex-direction: column;
        padding-top: 0.64rem;
        align-items: center;
        text-align: left;
        border: unset;
        display: none;
    }

    .mobile-nav-box.nav-open {
        display: block;
    }

    .mobile-nav-box .logo {
        height: 1rem;
        padding-left: 0.74rem;
        margin-top: 1.5rem;
    }

    .mobile-nav-box .close {
        position: absolute;
        left: 0.48rem;
        top: 0.6rem;
        width: 0.97rem;
    }

    .mobile-nav {
        padding-left: 0.74rem;
        padding-right: 0.74rem;
        display: block;
        margin: 0;
        margin-top: .2rem;
        margin-bottom: .8rem;
        background: #fff;
        z-index: 10;
        width: 100%;
        box-sizing: border-box;
        list-style: none;
    }

    #home-landpage .head-menu ul li a {
        color: #000;
    }

    .mobil-login {
        border-radius: 0.67rem;
        background: #FFE808;
        font-size: 0.39rem;
        font-weight: bold;
        color: #000;
        display: inline;
        width: 210px;
        margin-top: 100px;
        position: absolute;
        bottom: 15%;
        left: 30px;
        height: 50px;
        text-align: center;
        line-height: 50px;
    }

    .head-menu ul li {
        color: #000;
        font-size: 0.39rem;
        line-height: 0.46rem;
        font-weight: bold;
    }

    .head-menu ul li .content {
        margin-top: 0.2rem;
        padding-left: 0;
    }

    .head-menu ul li .content li a {
        font-size: 0.34rem;
        line-height: 2;
    }

    .head-menu ul li .content li {
        opacity: 0.6;
        margin-top: 0;
    }

    .mobile-nav li {
        /* margin-top: 0.3rem; */
        /* margin-bottom: 0.3rem; */
        font-size: 0.37rem;
        /* border-bottom: .5px solid rgba(0,0,0,.14); */
        /* height: 40px; */
        line-height: 40px;
        margin-top: .5rem;
        list-style: none;
    }

    .mobile-nav li a {
        color: #000;
        text-decoration: unset;
    }

    .click-tag {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .click-tag::after {
        content: "";
        width: 0.29rem;
        height: 0.29rem;
        background: url(/images/homeLp/arrow-down.svg) no-repeat;
        background-size: 100% 100%;
    }

    .click-tag.nav-open::after {
        transform: rotate(180deg)
    }

    .mobile-nav .nav-hide {
        display: none;
    }

    footer {

        padding: 20px;
    }


    footer .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }


    footer .footer-top {
        gap: 40px;
        grid-template-columns: 1fr;
    }

    footer .footer-bottom {
        flex-direction: column;

    }

    footer .footer-copy {
        text-align: center;
    }

    footer .footer-legal {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    footer .footer-legal a {
        color: var(--text-primary);
    }
}