/*
 * Language Switcher Styles
 */

.language-switcher {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: #f20519;
    color: #ffffff;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    gap: 8px;
}

.language-switcher:hover {
    background-color: #d10416;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(242, 5, 25, 0.3);
}

.language-switcher i {
    font-size: 16px;
}

.language-switcher .lang-text {
    font-size: 14px;
    font-weight: 700;
}

/* Responsive styles */
@media (max-width: 1199px) {
    .language-switcher {
        padding: 8px 15px;
        font-size: 13px;
    }

    .language-switcher i {
        font-size: 14px;
    }

    .language-switcher .lang-text {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .language-switcher {
        padding: 6px 12px;
        font-size: 12px;
        margin-right: 10px !important;
    }

    .language-switcher i {
        font-size: 13px;
    }

    .language-switcher .lang-text {
        font-size: 12px;
    }
}

/* Animation for content transitions */
.i18n-fade-transition {
    animation: fadeTransition 0.3s ease-in-out;
}

@keyframes fadeTransition {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        opacity: 1;
    }
}
