/********************************************************************
	Location Template CSS
********************************************************************/
.location .site-inner {
	margin-top: 0;
}

.location .content {
	width: 100%;
}

.location .site-inner {
	padding-bottom: 60px;
}

/* Location Menu Bar */
.location_menu_bar {
    background: rgb(145, 43, 139);
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.location_menu_bar .wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Remove default widget spacing */
.location_menu_bar .widget-area,
.location_menu_bar .widget {
    margin: 0;
    padding: 0;
}

/* Target WordPress menu output */
.location_menu_bar ul.menu,
.location_menu_bar .menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

/* Menu items */
.location_menu_bar ul.menu > li,
.location_menu_bar .menu > li {
    margin: 0;
    padding: 0;
}

/* Menu links */
.location_menu_bar ul.menu > li > a,
.location_menu_bar .menu > li > a {
    display: block;
    padding: 16px 22px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: background-color 0.25s ease, color 0.25s ease;
}

/* Hover + active state */
.location_menu_bar ul.menu > li > a:hover,
.location_menu_bar ul.menu > li.current-menu-item > a,
.location_menu_bar ul.menu > li.current_page_item > a,
.location_menu_bar .menu > li > a:hover,
.location_menu_bar .menu > li.current-menu-item > a,
.location_menu_bar .menu > li.current_page_item > a {
    background: #000;
    color: #ffffff;
}

/* Mobile */
@media (max-width: 768px) {
    .location_menu_bar .wrap {
        padding: 0;
    }

    .location_menu_bar ul.menu,
    .location_menu_bar .menu {
        flex-direction: column;
        align-items: stretch;
    }

    .location_menu_bar ul.menu > li > a,
    .location_menu_bar .menu > li > a {
        padding: 14px 20px;
        text-align: center;
        border-top: 1px solid rgba(255,255,255,0.12);
    }
}