/* TopNav Widget Styles */
.bmd-topnav {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.bmd-topnav.scrolled {
    background-color: rgba(255, 255, 255, 0.8) !important;
    color: #292929 !important;
}

.bmd-topnav.scrolled .bmd-logo-text {
    color: #008000 !important;
}

.bmd-topnav.scrolled .bmd-nav-link {
    color: #292929 !important;
}

.bmd-topnav.scrolled .bmd-nav-link:hover {
    color: #008000 !important;
}

.bmd-topnav .bmd-logo {
    text-decoration: none;
    transition: all 0.3s ease;
}

.bmd-topnav .bmd-logo:hover {
    transform: translateY(-1px);
}

.bmd-topnav .bmd-logo-text {
    font-weight: 700;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.bmd-topnav .bmd-nav-link {
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.bmd-topnav .bmd-nav-link:hover {
    transform: translateY(-1px);
}

.bmd-topnav .bmd-nav-link svg {
    transition: transform 0.3s ease;
}

.bmd-topnav .bmd-nav-link:hover svg {
    transform: rotate(180deg);
}

.bmd-topnav .dropdown-menu {
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.bmd-topnav .group:hover .dropdown-menu {
    pointer-events: auto;
}

.bmd-topnav .dropdown-menu .bg-white {
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.bmd-topnav .bmd-dropdown-link {
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.bmd-topnav .bmd-dropdown-link:hover {
    border-bottom-color: #008000;
    transform: translateX(4px);
}

.bmd-topnav .bmd-login-button {
    text-decoration: none;
    transition: all 0.3s ease;
}

.bmd-topnav .bmd-login-button:hover {
    transform: translateY(-1px);
}

.bmd-topnav .bmd-get-started-button {
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.bmd-topnav .bmd-get-started-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 800px) {
    .bmd-topnav {
        display: none !important;
    }
}

/* Elementor editor specific styles */
.elementor-editor-active .bmd-topnav {
    position: relative !important;
    top: 0 !important;
}

.elementor-editor-active .bmd-topnav .dropdown-menu {
    position: absolute !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

/* Animation for dropdown chevron */
.bmd-topnav .group:hover .bmd-nav-link svg {
    transform: rotate(180deg);
}

/* Smooth transitions for all interactive elements */
.bmd-topnav * {
    transition: all 0.3s ease;
}

/* Focus states for accessibility */
.bmd-topnav .bmd-nav-link:focus,
.bmd-topnav .bmd-logo:focus,
.bmd-topnav .bmd-login-button:focus,
.bmd-topnav .bmd-get-started-button:focus {
    outline: 2px solid #008000;
    outline-offset: 2px;
} 