/* ===================================
   Language Switcher Styles
   Modern, clean design for EN/FR toggle
   =================================== */

.language-switcher {
    display: flex;
    align-items: center;
    gap: 0;
    background: #f3f4f6;
    border-radius: 8px;
    padding: 4px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.lang-btn {
    padding: 6px 14px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
    background: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

.lang-btn:hover {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.05);
}

.lang-btn.active {
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.lang-btn:focus {
    outline: none;
}

.lang-btn:active {
    transform: scale(0.95);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .language-switcher {
        padding: 3px;
    }
    
    .lang-btn {
        padding: 5px 12px;
        font-size: 0.8125rem;
    }
}

/* Accessibility - Reduce motion */
@media (prefers-reduced-motion: reduce) {
    .lang-btn {
        transition: none;
    }
}
