.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /* Prevents it from being offset */
}
#header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    box-shadow: none;
}

#header .inner {
    background: rgba(53, 53, 53, 0.7); /* slightly darker for contrast */
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(100, 20, 0, 0.08);
    padding: 0.75rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #f8f9fa; /* white text */
}

/* Ensure nav links and icons follow the text color */
#header .inner a,
#header .inner i {
    color: #f8f9fa !important;
    transition: color 0.3s ease;
}

#header .inner a:hover {
    color: #ffd700 !important; /* subtle goldish hover effect */
} 