/* Language Switcher Styles */
.language-switcher {
    position: fixed;
    top: 1.5rem;
    right: 6rem;
    z-index: 1000;
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.language-link {
    display: inline-block;
    background: none;
    border: none;
    color: var(--color-text);
    padding: 0.5rem 1rem;
    border-radius: 1.5rem;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    text-decoration: none;
}

.language-link:hover {
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.language-link.active {
    background: var(--color-primary);
    color: white;
}

/* Dark theme adjustments */
[data-theme="dark"] .language-switcher {
    background: rgba(30, 30, 30, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .language-link:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .language-switcher {
        top: 1rem;
        right: 1rem;
        padding: 0.25rem;
    }
    
    .language-link {
        padding: 0.35rem 0.75rem;
        font-size: 0.8rem;
    }
}
