/* Custom Navigation Header Styles */
.custom-nav-header {
    background: linear-gradient(135deg, #146484 0%, #73b3d6 100%);
    color: white;
    padding: 0.75rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.custom-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
}

.custom-brand:hover {
    color: white;
    text-decoration: none;
}

.custom-brand-logo {
    width: 40px;
    height: 40px;
    background-image: url('/static-assets/logo_ijp.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(0) invert(1);
    margin-right: 0.5rem;
}

.custom-nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.custom-nav-menu a {
    color: white;
    text-decoration: none;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    font-size: 0.9rem;
}

.custom-nav-menu a:hover {
    background: rgba(255, 255, 255, 0.2);
    text-decoration: none;
    color: white;
}

.custom-lang-switcher {
    display: flex;
    gap: 0.3rem;
    margin-left: 1rem;
}

.custom-lang-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.2rem 0.6rem;
    border-radius: 3px;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.custom-lang-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    text-decoration: none;
}

/* Responsive design */
@media (max-width: 768px) {
    .custom-nav-menu {
        flex-direction: column;
        gap: 0.5rem;
    }

    .custom-nav-container {
        flex-direction: column;
        gap: 1rem;
    }
}