/* Navigation CSS */

/* Glass Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.glass-navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent 50%, rgba(255, 255, 255, 0.1));
    pointer-events: none;
    z-index: -1;
}

/* Light Theme Navigation */
[data-theme="light"] nav {
    background: rgba(255, 255, 255, 0.95) !important;
    border-bottom-color: rgba(209, 213, 219, 0.5) !important;
}

[data-theme="light"] nav.bg-white {
    background: rgba(255, 255, 255, 1) !important;
}

[data-theme="light"] .nav-link {
    color: #374151 !important;
}

[data-theme="light"] .nav-link:hover {
    color: #B8860B !important;
}

[data-theme="light"] #mobileMenuBtn {
    color: #374151 !important;
}

[data-theme="light"] #mobileMenuBtn:hover {
    color: #B8860B !important;
}

/* Light Theme Mobile Menu */
[data-theme="light"] #mobileMenu {
    background-color: rgba(255, 255, 255, 0.95) !important;
    border-color: rgba(209, 213, 219, 0.5) !important;
}

[data-theme="light"] #mobileMenu .border-gray-700 {
    border-color: rgba(209, 213, 219, 0.5) !important;
}

/* Light Theme Language Switcher */
[data-theme="light"] #languageBtn {
    background-color: #F8F9FA !important;
    border-color: rgba(209, 213, 219, 0.5) !important;
    color: #1F2937 !important;
}

[data-theme="light"] #languageBtn:hover {
    background-color: #E9ECEF !important;
    color: #111827 !important;
}

[data-theme="light"] .language-dropdown {
    background: #FFFFFF;
    border: 1px solid #D1D5DB;
}

[data-theme="light"] .language-dropdown button:hover {
    background: rgba(184, 134, 11, 0.05);
}

/* Light Theme Toggle Button */
[data-theme="light"] #themeToggle,
[data-theme="light"] #mobileThemeToggle {
    background-color: #F8F9FA !important;
    border-color: rgba(209, 213, 219, 0.5) !important;
    color: #B8860B !important;
}

[data-theme="light"] #themeToggle:hover,
[data-theme="light"] #mobileThemeToggle:hover {
    background-color: #E9ECEF !important;
    border-color: rgba(184, 134, 11, 0.3) !important;
}

/* Mobile Navigation Improvements */
@media (max-width: 768px) {
    nav {
        padding: 0.5rem 0;
    }
    
    nav .h-20 {
        height: 4rem;
    }
    
    .nav-link {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
    
    #mobileMenu {
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(212, 175, 55, 0.2);
        margin-top: 0.5rem;
        border-radius: 0.5rem;
        overflow: hidden;
    }
    
    #mobileMenu .nav-link {
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1.1rem;
        margin: 0;
    }
    
    #mobileMenu .nav-link:last-child {
        border-bottom: none;
    }
    
    #mobileMenuBtn {
        padding: 0.5rem;
        border-radius: 0.5rem;
    }
    
    #mobileMenuBtn:hover {
        background-color: rgba(212, 175, 55, 0.1);
    }
}
