/* Language Switcher Styles */
.language-switcher {
    position: fixed;
    bottom: 20px;
    right: 100px;
    background-color: var(--background);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 12px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    max-width: 180px;
    /* Hide by default */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.language-switcher.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-switcher:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.language-title {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
    font-size: 14px;
    text-align: center;
}

.language-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.language-option {
    background: none;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
    color: var(--text-light);
    text-align: left;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.language-option:hover {
    background-color: var(--background-alt);
    color: var(--text);
}

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

/* Language toggle button */
.language-toggle {
    position: fixed;
    bottom: 20px;
    right: 100px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
    box-shadow: var(--shadow);
    border: none;
    transition: all 0.3s ease;
}

.language-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.language-toggle i {
    font-size: 18px;
}

/* Mobile styles */
@media (max-width: 768px) {
    .language-switcher {
        bottom: 70px;
        right: 80px;
        padding: 10px;
        max-width: 150px;
    }
    
    .language-title {
        font-size: 12px;
    }
    
    .language-option {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .language-toggle {
        bottom: 20px;
        right: 80px;
        width: 36px;
        height: 36px;
    }
}

/* Remove the default animation since we're controlling visibility with the toggle */
.language-switcher {
    animation: none;
} 