﻿body {
}

nav {
    display: flex;
    font-family: 'Poppins', sans-serif;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
}

    .logo:hover {
        text-decoration: none;
        color: #ff9900;
    }

.logo-zone {
    display: flex;
}

.logo-text{
    display:flex;
    flex-direction: column;
}

.logo-line1 {
    font-size: 1.2rem;
    padding: 0;
    margin: 0;
    font-family: Ubuntu;
    color: #7901B4;
}

.logo-line2 {
    font-size: 0.85rem;
    padding: 0;
    margin: 0;
    color: #505050;
    font-family: 'Open Sans' sans-serif;
}

.nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 70%;
    z-index: 999;
    margin: 0;
    font-size: 13px;
    letter-spacing: 1px;
}

    .nav-links li {
        list-style: none;
        white-space: nowrap;
    }

    .nav-links a {
        padding: 8px 6px;
        display: block;
        color: #505050;
        text-decoration: none;
        letter-spacing: 1px;
    }

    .nav-links li:hover {
        color: #7901B4;
        background-color: rgba(255, 153, 0, 0.3);
        transition: 0.4s ease;
    }

    .nav-links a:hover {
        color: #7901B4;
    }

.burger {
    display: none;
    cursor: pointer;
}

    .burger div {
        width: 25px;
        height: 3px;
        background-color: rgb(50, 50, 50);
        margin: 5px;
        transition: 0.4s ease-in;
    }

@media screen and (max-width: 1200px) {
    .nav-links {
        width: 75%;
        font-size: 12px;
    }
}

@media screen and (max-width: 991px) {
    body {
        overflow-x: hidden;
    }

    .nav-links {
        position: absolute;
        right: 0px;
        height: auto;
        min-height: 340px;
        top: 66px;
        background-color: white;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        width: 40%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        padding: 10px 0 10px 20px;
        border-left: 10px solid #7901B4;
        box-shadow: -4px 4px 12px rgba(0,0,0,0.15);
    }

        .nav-links li {
            opacity: 0;
            width: 100%;
        }

    .burger {
        display: block;
        cursor: pointer;
    }
}

.nav-active {
    transform: translateX(0%);
}

/* Language switcher pill */
.lang-switcher {
    display: flex;
    align-items: center;
}

.lang-switcher a {
    display: inline-block !important;
    padding: 4px 10px !important;
    border: 2px solid #7901B4;
    border-radius: 4px;
    font-weight: 700;
    font-size: 12px !important;
    letter-spacing: 1px !important;
    color: #7901B4 !important;
    line-height: 1.4;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.lang-switcher a:hover {
    background-color: #7901B4 !important;
    color: #fff !important;
}

@media screen and (max-width: 991px) {
    .lang-switcher {
        width: 100%;
    }

    .lang-switcher a {
        font-size: 13px !important;
        letter-spacing: 2px !important;
    }
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}