/* Target ONLY our navbar elements */
body #truewp-navbar-wrapper {
    --truewp-bg: #1e293b !important;
    --truewp-text: #ffffff !important;
    --truewp-hover: #3b82f6 !important;
    --truewp-transition: all 0.3s ease;
    
    position: relative;
    z-index: 1000;
}

body #truewp-navbar-wrapper .truewp-navbar {
    background: var(--truewp-bg) !important;
    color: var(--truewp-text) !important;
    padding: 0.5rem 0 !important;
}

.truewp-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

a.truewp-brand {
	color: #ffffff !important;
	font-weight: 600 !important;
	font-size: 24px !important;
}

.truewp-menu {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

.truewp-menu-item {
    position: relative;
    margin: 0;
    padding: 0;
}

body #truewp-navbar-wrapper .truewp-menu-item a {
    color: inherit !important;
    text-decoration: none !important;
    padding: 0.75rem 1rem !important;
    display: block !important;
    transition: var(--truewp-transition);
}

.truewp-menu-item a:hover {
    color: var(--truewp-hover);
}

/* Mobile styles */
.truewp-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: inherit;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hello Elementor specific overrides */
body.hello-elementor #truewp-navbar-wrapper {
    position: sticky !important;
    top: 0 !important;
}

body.hello-elementor .elementor-location-header {
    display: none !important;
}

/* Responsive */
@media (max-width: 767px) {
    .truewp-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: var(--truewp-bg);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }
    
    .truewp-menu.active {
        max-height: 100vh;
    }
    
    button.truewp-mobile-toggle {
        display: block;
		background-color: transparent !important;
    }
    
    button.truewp-mobile-toggle:hover {
		background-color: transparent;
    }
	
	div#truewp-navbar-wrapper {
		margin-bottom: 20px;
	}
}