/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Maven Pro', sans-serif;
    color: #333;
}
/* Announcement Bar */
.OLS_announcement-bar {
    width: 100%;
    background: #FCEBC0;
    color: #111;
    font-size: 14px;
    padding: 8px 0;
    letter-spacing: 0.01em;
    position: relative;
    z-index: 2000;
}
.OLS_announcement-bar__container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 16px;
    padding: 0 24px;
}
.OLS_announcement-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    color: #111;
}
.OLS_announcement-section.OLS_announcement-right {
    justify-content: center;
}
.OLS_txt {
    color: #111;
    font-weight: 600;
    transition: opacity 0.2s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    letter-spacing: 0.01em;
    text-decoration: none;
}
.OLS_txt:hover {
    opacity: 0.8;
}
/* Header */
.OLS_header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.OLS_header__container {
    max-width: 1350px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* Logo */
.OLS_header__logo img {
    height: 80px;
    transition: opacity 0.3s;
}
/* Navigation */
.OLS_header__nav {
    display: flex;
    margin: 0 15px;
    align-items: center;
}
.OLS_nav-list {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
}
.OLS_nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    transition: color 0.3s;
    position: relative;
}
.OLS_nav-link:hover {
    color: #eea707;
}
/* Highlight active link/page on desktop */
.OLS_nav-list > li.active > .OLS_nav-link,
.OLS_nav-link.OLS_active,
.OLS_nav-list > li.active > a.OLS_nav-link {
    color: #eea707;
    font-weight: 500;
}
/* Contact Link */
.OLS_contact-link .OLS_contact {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #eea707;
    font-weight: 600;
}
.OLS_contact-link .OLS_contact:hover {
    color: #eea707;
}
.OLS_contact-link img {
    height: 18px;
}
/* Dropdown base styles */
.OLS_dropdown {
    position: relative;
}
.OLS_dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    list-style: none;
    min-width: 220px;
    padding: 12px 10px;
    z-index: 100;
    border-radius: 4px;
}
/* Force dropdown to show on hover regardless of other classes - DESKTOP ONLY */
@media (min-width: 769px) {
    .OLS_dropdown:hover > .OLS_dropdown-menu {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    /* Ensure it works even with active class */
    li.OLS_dropdown.active:hover > .OLS_dropdown-menu,
    li.active.OLS_dropdown:hover > .OLS_dropdown-menu {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}
.OLS_dropdown-menu li {
    padding: 15px 8px;
}
.OLS_dropdown-menu li a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: block;
    transition: color 0.2s;
}
/* Highlight active item in dropdowns */
.OLS_dropdown-menu li.active > a,
.OLS_dropdown-menu li a.OLS_active {
    color: #eea707;
    font-weight: 700;
}
.OLS_dropdown-menu li a:hover {
    color: #eea707;
}
/* Horizontal lines between dropdown items */
.OLS_dropdown-menu li:not(:last-child) {
    border-bottom: 1px solid #eee;
    margin-bottom: 5px;
    padding-bottom: 10px;
}
/* Sub Dropdown base styles */
.OLS_sub-dropdown {
    position: relative;
}
.OLS_sub-dropdown-menu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    list-style: none;
    min-width: 220px;
    padding: 12px 0;
    border-radius: 4px;
}
/* Force sub-dropdown to show on hover regardless of other classes - DESKTOP ONLY */
@media (min-width: 769px) {
    .OLS_sub-dropdown:hover > .OLS_sub-dropdown-menu {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    /* Ensure it works even with active class */
    li.OLS_sub-dropdown.active:hover > .OLS_sub-dropdown-menu,
    li.active.OLS_sub-dropdown:hover > .OLS_sub-dropdown-menu {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}
.OLS_sub-dropdown-menu li {
    padding: 12px 8px;
}
.OLS_sub-dropdown-menu li a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: block;
    transition: color 0.2s;
}
/* Highlight active item in sub-dropdowns */
.OLS_sub-dropdown-menu li.active > a,
.OLS_sub-dropdown-menu li a.OLS_active {
    color: #eea707;
    font-weight: 700;
}
.OLS_sub-dropdown-menu li a:hover {
    color: #eea707;
}
.OLS_sub-dropdown-menu li:not(:last-child) {
    border-bottom: 1px solid #eee;
    margin-bottom: 5px;
    padding-bottom: 10px;
}
/* Hamburger */
.OLS_hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: relative;
}
.OLS_hamburger span {
    width: 30px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.OLS_hamburger span:nth-child(1) {
    top: calc(50% - 9px);
}
.OLS_hamburger span:nth-child(2) {
    top: 50%;
    transform: translate(-50%, -50%);
}
.OLS_hamburger span:nth-child(3) {
    top: calc(50% + 6px);
}
/* Hamburger X animation */
.OLS_hamburger.OLS_active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.OLS_hamburger.OLS_active span:nth-child(2) {
    opacity: 0;
}
.OLS_hamburger.OLS_active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}
/* Responsive Styles */
@media (min-width: 1201px) {
    .OLS_nav-list {
        gap: 40px;
    }
    .OLS_nav-link {
        font-size: 18px;
    }
}
@media (max-width: 1200px) {
    .OLS_header__container {
        padding: 0 30px;
    }
    .OLS_header__logo img {
        height: 70px;
    }
    .OLS_nav-list {
        gap: 24px;
    }
    .OLS_nav-link {
        font-size: 14px;
    }
    .OLS_contact-link img {
        height: 16px;
    }
}
/* Mobile (≤768px) */
@media (max-width: 768px) {
    .OLS_announcement-bar__container {
        flex-direction: column;
        gap: 0;
        padding: 0 16px;
        min-height: 30px;
    }
    .OLS_announcement-section {
        justify-content: center;
        width: 100%;
        position: absolute;
        left: 0;
        right: 0;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.5s;
        background: #FCEBC0;
    }
    .OLS_announcement-section.OLS_active {
        opacity: 1;
        pointer-events: all;
        position: relative;
    }
    .OLS_txt {
        font-size: 14px;
    }
    .OLS_hamburger {
        display: flex;
    }
    .OLS_header__nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #333;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 24px;
        z-index: 99;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .OLS_header__nav.OLS_active {
        display: block;
    }
    .OLS_nav-list {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px;
        height: 100%;
        min-height: auto;
    }
    .OLS_nav-link {
        font-size: 14px;
        width: 100%;
        padding: 8px 0;
        color: #fff;
    }
    .OLS_nav-link:hover {
        color: #eea707;
    }
    .OLS_nav-link.OLS_active {
        color: #eea707;
    }
    /* Ensure active parent menu item is yellow on mobile */
    .OLS_nav-list > li.active > .OLS_nav-link,
    .OLS_nav-link.OLS_active {
        color: #eea707 !important;
    }
    /* Mobile dropdown styles */
    .OLS_dropdown-menu,
    .OLS_sub-dropdown-menu {
        position: static;
        box-shadow: none;
        background: #333;
        min-width: 100%;
        padding: 12px 16px;
    }
    .OLS_dropdown.OLS_active .OLS_dropdown-menu,
    .OLS_sub-dropdown.OLS_active .OLS_sub-dropdown-menu {
        display: block;
    }
    /* Add bullets to mobile dropdown items */
    .OLS_dropdown-menu li,
    .OLS_sub-dropdown-menu li {
        position: relative;
        padding-left: 20px;
    }
    .OLS_dropdown-menu li::before,
    .OLS_sub-dropdown-menu li::before {
        content: "•";
        position: absolute;
        left: 0;
        color: #fff;
        font-size: 16px;
    }
    .OLS_dropdown-menu li a,
    .OLS_sub-dropdown-menu li a {
        color: #fff;
    }
    .OLS_dropdown-menu li a:hover,
    .OLS_sub-dropdown-menu li a:hover {
        color: #eea707;
    }
    /* Add divider lines in mobile dropdowns */
    .OLS_dropdown-menu li:not(:last-child),
    .OLS_sub-dropdown-menu li:not(:last-child) {
        border-bottom: 1px solid #444;
        margin-bottom: 5px;
        padding-bottom: 10px;
    }
    /* Prevent + from overlapping menu text */
    .OLS_dropdown > a,
    .OLS_sub-dropdown > a {
        position: relative;
        display: block;
        padding-right: 40px;
        color: #fff;
    }
    .OLS_dropdown > a::after,
    .OLS_sub-dropdown > a::after {
        content: "+";
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        color: #eea707;
        font-size: 22px;
        pointer-events: none;
    }
    .OLS_dropdown.OLS_active > a::after,
    .OLS_sub-dropdown.OLS_active > a::after {
        content: "−";
    }
    .OLS_contact-link {
        margin-top: 24px;
    }
    .OLS_contact-link .OLS_contact {
        font-size: 14px;
        color: #fff;
    }
    .OLS_contact-link .OLS_contact:hover {
        color: #eea707;
    }
    .OLS_header__container {
        padding: 0 30px;
    }
    .OLS_hamburger {
        width: 38px;
        height: 38px;
    }
    .OLS_hamburger span {
        width: 28px;
        height: 2.5px;
    }
    .OLS_hamburger span:nth-child(1) {
        top: calc(50% - 8px);
    }
    .OLS_hamburger span:nth-child(3) {
        top: calc(50% + 5.5px);
    }
}
/* Small Mobile (≤576px) */
@media (max-width: 576px) {
    .OLS_header__container {
        padding: 0 10px;
    }
    .OLS_header__logo img {
        height: 65px;
    }
    .OLS_txt {
        font-size: 14px;
    }
    .OLS_nav-link {
        font-size: 14px;
    }
    .OLS_contact-link img {
        height: 14px;
    }
    .OLS_hamburger {
        padding: 6.4px;
        width: 35px;
        height: 35px;
    }
    .OLS_hamburger span {
        width: 22px;
        height: 2px;
    }
    .OLS_hamburger span:nth-child(1) {
        top: calc(50% - 6px);
    }
    .OLS_hamburger span:nth-child(3) {
        top: calc(50% + 4px);
    }
    .OLS_header__nav {
        max-height: calc(100vh - 80px);
    }
}
/* Extra Small Mobile (≤400px) */
@media (max-width: 400px) {
    .OLS_header__container {
        padding: 0 10px;
    }
    .OLS_header__logo img {
        height: 60px;
    }
    .OLS_txt {
        font-size: 14px;
    }
    .OLS_nav-link {
        font-size: 14px;
    }
    .OLS_hamburger {
        gap: 4px;
        width: 30px;
        height: 30px;
    }
    .OLS_hamburger span {
        width: 18px;
        height: 1.5px;
    }
    .OLS_hamburger span:nth-child(1) {
        top: calc(50% - 5px);
    }
    .OLS_hamburger span:nth-child(3) {
        top: calc(50% + 3.5px);
    }
    .OLS_header__nav {
        max-height: calc(100vh - 70px);
    }
}