/* ==========================
   HEADER BASE
========================== */

.site-header {
    background: #fff;
    top: 0;
}


/* Default Desktop View */
.header-mobile {
    display: none;
}

/* Responsive Breakpoint */
@media (max-width: 1024px) {
    .header-desktop {
        display: none !important;
    }

    .header-mobile {
        display: block;
    }
}

/* ==========================
   DESKTOP HEADER LAYOUT
========================== */

.header-desktop {
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-left,
.menu-right {
    flex: 1;
}

.menu-left ul{
    padding-bottom: 10px;
}

.menu-right {
    text-align: right;
}

.menu-right ul{
    padding-bottom: 5px;
}

/* ==========================
   LOGO
========================== */

.desktop-logo {
    margin: 0 10px;
}

.desktop-logo img.custom-logo {
    max-height: 130px;
    max-width: 139px;
    margin-bottom: -50px; /* avoid !important */
}

/* ==========================
   NAVIGATION BASE
========================== */

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

.nav-menu {
    border-bottom: 1px solid #87878759;
}

.nav-menu li {
    display: inline-block;
    position: relative;
    margin: 0 14px;
}

.nav-menu li:first-child {
    margin-left: 0;
}

.nav-menu a {
    text-decoration: none;
    font-family: "Times New Roman", Times, serif;
    font-weight: 400;
    font-size: 16px;
    color: #474747;
    text-transform: uppercase;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #660033;
}

/* ==========================
   DROPDOWN MENU
========================== */

.nav-menu li.menu-item-has-children > a::after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: 6px;
    background: url('/wp-content/uploads/2026/01/Vector.png') no-repeat center;
    background-size: contain;
}

/* Submenu container */
.nav-menu .sub-menu {
    position: absolute;
    top: 130%;
    left: -22px;
    min-width: 220px;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 1000;
	margin-top: 5px;
}

/* Submenu items */
.nav-menu .sub-menu li {
    display: block;
    margin: 0;
    text-align: left;
    border-bottom: 1px solid #878787;
}

.nav-menu .sub-menu a {
    display: block;
    padding: 12px 16px;
    font-size: 14px;
    color: #474747;
    text-transform: capitalize;
    line-height: 1.4;
    white-space: normal;
    word-break: break-word;
}

.nav-menu .sub-menu a:hover {
    background: #f5f5f5;
    color: #660033;
}

/* Hover open */
.nav-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ==========================
   CTA BUTTON (LAST MENU ITEM)
========================== */

.menu-right .nav-menu > li:last-child {
    background: #660033;
    border-radius: 15px;
    padding: 5px 13px;
    margin-right: 0;
    transition: all 0.3s ease;
}

.menu-right .nav-menu > li:last-child > a {
    color: #fff;
}

.menu-right .nav-menu > li:last-child:hover {
    background: transparent;
    border: 1px solid #660033;
}

.menu-right .nav-menu > li:last-child:hover > a {
    color: #660033;
}

/* ==========================
   SECOND LEVEL SUBMENU
========================== */

.nav-menu .sub-menu .sub-menu {
    top: 0;
    left: 100%;
}


/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 1024px) {
    .nav-menu .sub-menu {
        display: none;
    }
}

/* ==========================
   MOBILE HEADER BASE
========================== */

/* Hidden by default (desktop first) */
.header-mobile {
    display: none;
    padding: 14px 18px;
    background: #fff;
}

.mobile-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap:15px;
}

/* ==========================
   MOBILE LOGO
========================== */

.mobile-logo img {
    max-height: 130px;
    max-width: 78px;
    width: auto;
}

.subs_btn img {
    width: 25px;
}

.left_toggle_mob {
    border-bottom: 1px solid #87878759;
    padding-bottom: 5px;
}

/* ==========================
   HAMBURGER TOGGLE
========================== */

.mobile-toggle {
    font-size: 26px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0px;
    transition: transform 0.3s ease;
    color: #474747;
    text-decoration: none !important;
    justify-self: start;
}

.subs_btn {
    justify-self: auto;
    border-bottom: 1px solid #87878759;
    padding-bottom: 16px;
}

.subs_btn a {
    display: flex;
    justify-content: flex-end;
    gap: 5px;
    text-decoration: none;
    align-items: center;
}

.subs_btn .subs_txt {
    font-family: "Times New Roman", Times, serif;
    font-size: 12px;
    color: #660033;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Rotate when active (add .active via JS) */
.mobile-toggle.active {
    transform: rotate(90deg);
}

/* ==========================
   MOBILE MENU CONTAINER
========================== */

.mobile-menu {
    display: none;
}

.mobile-menu.open {
    display: block;
}

/* ==========================
   MOBILE NAV ITEMS
========================== */

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

.mobile-nav li {
    position: relative;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
    text-align: left;
    list-style: none;
}

.mobile-nav a {
    text-decoration: none;
    font-size: 16px;
    color: #111;
    display: inline-block;
    text-transform: capitalize;
}

/* ==========================
   SUBMENU (ACCORDION STYLE)
========================== */

.mobile-nav .sub-menu {
    display: none;
    padding-top: 10px;
}

.mobile-nav .sub-menu.open {
    display: block;
    transition: max-height 0.3s ease;
}

.submenu-toggle {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    font-size: 18px;
    cursor: pointer;
    color: #474747;
    text-decoration: none !important;
}

/* ==========================
   RESPONSIVE BREAKPOINT
========================== */

@media (max-width: 1024px) {

    .header-desktop {
        display: none;
    }

    .header-mobile {
        display: block;
    }

}