/* ================================
   Logo — Mobile & Desktop
================================ */
/* 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;
}
.main-menu a {
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    color: #ffffff;
}
    
.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 0.3s ease, visibility 0.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 0.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
========================================================= */

/* 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);
    color: #111;
}

/* Mobile BOOK NOW 外层按钮 */
.hw-header-btn {
    background-color:var(--hw-orange);
    padding: 10px 32px;
    color: #ffffff;
}

 .hw-header-btn:hover {
  background: var(--hw-orange-soft);
  color: #111111;
  transform: translateY(-1px);
  box-shadow: 0 10px 32px rgba(255,79,0,0.35);
}
/* 只在手机端显示的 BOOK NOW */
.btn-header-mobile {
    display: inline-block;
}

@media (min-width: 992px) {
    .btn-header-mobile {
        display: none !important;
    }
}

/* =========================================================
   All Header Nav Links (Desktop + Mobile + BOOK NOW)
========================================================= */

.hw-nav-link {
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    color: #ffffff;
}

.hw-nav-link:hover {
    color: var(--text-main);
}

/* BOOK NOW 特别强调 */
.hw-nav-link--book {
    font-weight: 600;
}

/* 手机导航里字体稍微大一点 */
.th-mobile-menu .hw-nav-link {
    font-size: 17px;
}

/* 让按钮里的链接撑满点击区域 */
.hw-btn a {
    display: inline-block;
    width: 100%;
    height: 100%;
}
.th-mobile-menu ul li a:before{
    content: none !important;
}