/* Language Switcher Styles */
.language-switcher {
    display: flex;
    gap: 8px;
    align-items: center;
}

.lang-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.lang-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.lang-link.active {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

.lang-link:not(.active) {
    background: rgba(255, 255, 255, 0.1);
    color: #e5e7eb;
    border-color: rgba(255, 255, 255, 0.1);
}

.lang-link:not(.active):hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.flag {
    font-size: 16px;
    line-height: 1;
}

.name {
    font-size: 13px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .language-switcher {
        flex-direction: column;
        gap: 4px;
    }
    
    .lang-link {
        padding: 6px 10px;
        font-size: 13px;
    }
    
    .name {
        font-size: 12px;
    }
}

/* For light theme pages (legal pages) */
.light-theme .lang-link:not(.active) {
    background: rgba(0, 0, 0, 0.05);
    color: #374151;
    border-color: rgba(0, 0, 0, 0.1);
}

.light-theme .lang-link:not(.active):hover {
    background: rgba(0, 0, 0, 0.1);
    color: #111827;
}

/* Integration with existing navigation */
.nav-language-switcher {
    display: flex;
    align-items: center;
    margin-left: 16px;
}

/* Footer language switcher */
.footer-language-switcher {
    margin-top: 16px;
}

.footer-language-switcher .language-switcher {
    justify-content: center;
}
