/* Language Switcher Styles for Arabic Version */

.lang-switcher {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    position: relative;
    font-weight: 600;
    transition: all 0.3s ease;
}

.lang-switcher a {
    display: flex;
    align-items: center;
    color: var(--secondary-color);
    padding: 5px 12px;
    border-radius: 20px;
    background: rgba(201, 165, 92, 0.1);
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease;
}

.lang-switcher a:hover {
    background: var(--gold-gradient);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(201, 165, 92, 0.3);
}

.lang-switcher i {
    margin-left: 6px;
    font-size: 14px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .lang-switcher {
        margin-left: 40px;
    }
    
    nav.active ul li:last-child {
        margin-top: 10px;
    }
} 