﻿.language-switch {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
}

.lang-option {
    text-decoration: none;
    font-weight: normal;
    color: #888;
    padding: 5px 10px;
    transition: color 0.3s ease, font-weight 0.3s ease;
}

    .lang-option.active {
        font-weight: bold;
        color: #ffbd39;
    }

.lang-divider {
    color: #888;
    font-weight: bold;
    padding: 0 5px;
}

#backToTop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 50px;
    height: 50px;
    background-color: white;
    color: #ffbd39;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    #backToTop:hover {
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
        transform: translateY(-2px);
        background-color: #f9f9f9;
    }

    #backToTop i {
        color: #f1c40f;
        font-weight: 700;
        font-size: 30px;
    }

.white-text {
    color: white;
}

.ptext {
    color: white;
    font-size: 14px;
}

@media (max-width: 991.98px) {
    .ftco-navbar-light.scrolled .navbar-toggler {
        color: rgba(255, 255, 255, 0.8) !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .language-switch {
        display: none !important;
    }

    .navbar-toggler {
        display: block !important;
        opacity: 1 !important;
        z-index: 1031;
    }

    body, html {
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }
}