:root {
    --header-bg: #000000;
    --logo-bg: #8a0014;
    --text-color: #e4dfdf;
    --border-color: #333333;
    --hover-line-color: #8a0014;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--header-bg);
    width: 100%;
}

.header-main-bar {
    height: 60px;
    display: flex;
    max-width: 1261px;
    margin: auto;
    align-items: center;
    position: relative;
    z-index: 1001;
}

.header-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 100%;
}

.burger-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 5px;
    z-index: 2001;
}

.burger-line {
    display: block;
    width: 27px;
    height: 2px;
    background-color: var(--text-color);
}

.brand-logo-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-logo {
    max-height: 47px;
    margin-bottom: 15px;
    display: block;
    width: auto;
}

.top-bar-link {
    font-weight: 300;
}

.mobile-phone-icon {
    color: var(--text-color);

}

@media(min-width:768px) {
    .mobile-phone-icon {
        display: none;

    }

}

@media(min-width: 768px) {
    .custom-logo {
        max-height: 60px;

        margin-bottom: 0;
    }
}

.header-actions-mobile {
    display: flex;
    align-items: center;
}

.header-actions-desktop {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
    color: var(--text-color);
    font-size: 14px;
}


@media(max-width: 768px) {
    .header-actions-desktop {
        display: none;
    }
}

.desktop-phone-text {
    color: var(--text-color);
    text-decoration: none;
    font-size: 15px;
    white-space: nowrap;
}

.header-nav-bar-desktop {
    display: none;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--header-bg);
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu-overlay.is-open {
    transform: translateX(0);
}

.mobile-menu-top {
    display: flex;
    justify-content: flex-end;
    padding: 20px 20px 10px;
}

.close-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: block;
}

.mobile-menu-container {
    padding: 0 20px 40px;
    color: var(--text-color);
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    border-bottom: 1px solid transparent;
}

.mobile-nav a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-color);
    text-decoration: none;
    padding: 15px 0;
    font-size: 16px;
    font-weight: 400;
}

.mobile-nav a span {
    font-size: 20px;
}

.mobile-menu-bottom {
    margin-top: 40px;
}

.mobile-menu-bottom ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-divider {
    border: 0;
    border-top: 1px solid var(--border-color);
    margin: 20px 0;
}

.mobile-footer-links li a {
    display: block;
    color: var(--text-color);
    text-decoration: none;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar-link {
    display: none;
}

.btn-online-booking {
    display: inline-block;
    background: var(--hover-line-color);
    color:  white;
    text-decoration: none;
    padding: 10px 24px;
    font-weight: bold;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 14px;
    transition: background 0.3s;
}

.btn-online-booking:hover {
    background: color-mix(in srgb, var(--hover-line-color), black 10%);
}


@media (min-width: 1261px) {
    .burger-btn {
        display: none;
    }

    .brand-logo-wrapper {
        position: static;
        transform: none;
        left: auto;
    }

    .header-container {
        justify-content: space-between;

    }

    .top-bar-link {
        display: block;
    }

    .header-actions-mobile {
        display: none;
    }

    .desktop-phone-link {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-nav-bar-desktop {
        display: block;
        max-width: 1261px;
        margin: auto;
        background-color: var(--header-bg);
        border-top: 1px solid #222;
        text-align: center;
    }

    .desktop-menu-list {
        list-style: none;
        padding: 0 20px;
        margin: 0;
        display: flex;
        justify-content: center;
        gap: 35px;
    }

    .desktop-menu-list li a {
        display: block;
        color: var(--text-color);
        text-decoration: none;
        padding: 15px 0;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 1px;
        position: relative;
    }

    .desktop-menu-list li a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 3px;
        background-color: var(--hover-line-color);
    }

    .desktop-menu-list li a:hover::after {
        width: 100%;
    }

    .mobile-menu-overlay {
        display: none !important;
    }

    .custom-logo {
        transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), margin-bottom 0.3s ease;
    }

    .site-header.nav-is-hidden .custom-logo {
        max-height: 45px;
        margin: 5px 0 15px;
    }
}