/* Simple Menu Styles - No Dropdowns */

/* Main menu container */
#_desktop_top_menu {
    background: #060735;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 0;
}

/* Menu list */
.top-menu.simple-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Menu items */
.top-menu.simple-menu > li {
    margin: 0;
    padding: 0;
}

/* Menu links */
.top-menu.simple-menu > li > a {
    display: block;
    padding: 20px 30px;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

/* Hover effect */
.top-menu.simple-menu > li > a:hover {
    color: #00ADEF !important;
    background-color: rgba(255,255,255,0.1);
}

/* Active/Current page indicator */
.top-menu.simple-menu > li.current > a {
    color: #00ADEF !important;
}

/* Bottom border animation */
.top-menu.simple-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: #00ADEF;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.top-menu.simple-menu > li > a:hover::after,
.top-menu.simple-menu > li.current > a::after {
    width: 100%;
}

/* Mobile menu styles */
@media (max-width: 767px) {
    /* Show desktop menu but modify for mobile */
    #_desktop_top_menu {
        background: #060735;
        padding: 0;
    }
    
    /* Stack menu items vertically */
    .top-menu.simple-menu {
        flex-direction: column;
        width: 100%;
    }
    
    /* Full width menu items */
    .top-menu.simple-menu > li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .top-menu.simple-menu > li:last-child {
        border-bottom: none;
    }
    
    /* Adjust link styling for mobile */
    .top-menu.simple-menu > li > a {
        padding: 15px 20px;
        text-align: center;
        font-size: 14px;
    }
    
    /* Remove bottom border animation on mobile */
    .top-menu.simple-menu > li > a::after {
        display: none;
    }
    
    /* Simple background change on hover for mobile */
    .top-menu.simple-menu > li > a:hover {
        background-color: rgba(255,255,255,0.15);
    }
    
    /* Mobile menu wrapper styles */
    #mobile_top_menu_wrapper .top-menu {
        background: #060735;
    }
    
    #mobile_top_menu_wrapper .top-menu a {
        color: #ffffff !important;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    #mobile_top_menu_wrapper .top-menu a:hover {
        background: rgba(255,255,255,0.1);
        color: #00ADEF !important;
    }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .top-menu.simple-menu > li > a {
        padding: 15px 20px;
        font-size: 14px;
    }
}

/* Fix for sticky menu if needed */
#_desktop_top_menu.sticky-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}