/* =========================================================
   Global Header (works with theme.css)
========================================================= */

/* Sticky wrapper */
.sticky-wrapper.sticky {
    background-color: #3c3535;
    box-shadow: none;
}

/* Main header container */
.th-header.header-layout6 {
    position: sticky;
    top: 0;
    z-index: 1002;
    background-color: #3c3535;
    font-family: sans-serif;
}

/* Prevent layout shift when fixed */
body.with-fixed-header {
    padding-top: 0;
}

/* Desktop header background */
.th-header .menu-area {
    background: #3c3535;
    border-bottom: 1px solid #3c3535;
}

/* Desktop menu */
.main-menu > ul {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Menu links */
.main-menu a {
    color: #ffffff !important;
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    text-decoration: none;
}

.main-menu a:hover {
    color: var(--hw-orange) !important;
}

/* Hide menu on mobile */
@media (max-width: 991.98px) {
    .main-menu {
        display: none !important;
    }
}

/* =========================================================
   Mobile Menu
 ========================================================= */
.th-menu-wrapper {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,0.55);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
}
.th-menu-wrapper.th-body-visible {
    opacity: 1;
    visibility: visible;
}

.th-menu-wrapper .th-menu-area {
    width: 100%;
    max-width: 240px;
    background-color: var(--hw-card);
    border-right: 1px solid var(--hw-border);
    height: 100%;
    position: relative;
    left: -110%;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    padding: 20px;
}

.th-menu-wrapper.th-body-visible .th-menu-area {
    left: 0;
    opacity: 1;
    visibility: visible;
}

/* Mobile list */
.th-mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0 12px 24px;
}

.th-mobile-menu ul li {
    display: flex;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
}
.th-mobile-menu ul li a {
    color: #222 !important;
    font-size: 16px;
    padding: 14px 0;
    display: block;
    text-decoration: none;
    line-height: 23px;
}

.th-menu-close {
    color: #333;
    font-size: 28px;
    position: absolute;
    top: 18px;
    right: 18px;
    background: none;
    border: none;
}

/* =========================================================
   Header Buttons / Icons
========================================================= */

/* BOOK NOW */
.hw-header-booknow a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 26px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    background: var(--hw-orange);
    color: #ffffff;
    transition: .2s ease;
}
.hw-header-booknow a:hover {
    background: var(--hw-orange-soft);
    color: #111;
    transform: translateY(-1px);
}

/* Mobile menu toggle */
.th-menu-toggle {
    width: 47px;
    height: 47px;
    background-color: var(--hw-orange);
    color: #ffffff !important;
    border: none;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
    padding: 0;
    transition: background 0.3s ease;
}
.th-menu-toggle:hover {
    background-color: var(--hw-orange-soft);
}

/* Phone icon button */
.call-btn-inline {
    width: 44px;
    height: 44px;
    background-color: var(--hw-orange);
    color: #ffffff !important;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    transition: background 0.3s ease;
}
.call-btn-inline:hover {
    background-color: var(--hw-orange-soft);
}
