/* Centralized Navigation Styles for Symbonic Site */

/* LearnWorlds-style Navigation */
.lw-topbar {
    background-color: #000000;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.lw-topbar-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lw-logo {
    height: auto;
    width: 200px;
    padding: 4px 0;
}

.lw-topbar-menu {
    display: flex;
    align-items: center;
}

.lw-topbar-options {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
    margin: 0;
}

.lw-topbar-option {
    position: relative;
    padding: 15px 0;
}

.lw-topbar-option-link {
    color: #9E9E9E;
    text-decoration: none;
    font-family: 'Mukta', sans-serif;
    font-size: 17px;
    font-weight: 400;
    transition: color 0.3s;
    cursor: pointer;
    white-space: nowrap;
    display: inline-block;
}

.lw-topbar-option-link:hover {
    color: #ffffff;
}

.lw-topbar-option-link.active {
    color: #ffffff;
}

.with-submenu:after {
    content: " ▾";
    font-size: 12px;
}

.lw-topbar-submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #000000;
    min-width: 180px;
    padding: 10px 0;
    margin-top: 0;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    padding-top: 15px;
}

.lw-topbar-option:hover .lw-topbar-submenu {
    display: block;
}

.lw-topbar-submenu:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 15px;
    background: transparent;
}

.lw-topbar-submenu-item {
    list-style: none;
}

.lw-topbar-submenu-item a {
    display: block;
    padding: 8px 20px;
    color: #9E9E9E;
    text-decoration: none;
    font-family: 'Mukta', sans-serif;
    font-size: 17px;
    font-weight: 400;
    transition: color 0.3s, background-color 0.3s;
}

.lw-topbar-submenu-item a:hover {
    color: #ffffff;
    background-color: rgba(255,255,255,0.05);
}

.lw-topbar-option-link.button-style {
    background: linear-gradient(135deg, #CC0000 0%, #990000 100%);
    color: #ffffff !important;
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 600;
}

.lw-topbar-option-link.button-style:hover {
    background: linear-gradient(135deg, #DD0000 0%, #AA0000 100%);
}

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