/* Header Section Design */
.header-container{
    position: sticky;
    top: 0;
    left: 0;
    height: 75px;
    color: var(--header-text);
    background-color: var(--header-bg);
    box-shadow: 0 2px 10px rgb(0 0 0 / 10%);
    /* padding: 20px 0; */
    z-index: 999;
}

.header-container .container{
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo{
    font-size: var(--logo-font-size);
    line-height: 1.4;
}

.logo a{
    color: var(--header-text);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo a img{
    width: 60px;
    height: 60px;
}

.logo a:hover{
    color: var(--primary-color);
}

.nav-links{
    flex: 1;
    display: flex;
    justify-content: end;
    margin-right: 15px;
}

.nav-links ul{
    display: flex;
    gap: 15px;
}

.link a{
    position: relative;
    color: var(--header-text);
    font-weight: 500;
    letter-spacing: 0.4px;
    padding: 5px 0;
}

.link a::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: -2px;
    height: 2px;
    width: calc(100% + 4px);
    transform: scaleX(0);
    background-color: var(--primary-color);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.link a:hover::after{
    transform: scaleX(1);
    transform-origin: left;
}

.mode-toggle-button,
.hamburger-icon {
    background: none;
    border: 2px solid var(--header-text);
    color: var(--header-text);
    font-size: 1rem;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 10px;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.mode-toggle-button:hover,
.hamburger-icon:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--header-text);
}

/* Hide Hamburger on Large Screen Devices */
.hamburger-icon{
    display: none;
}

#langToggle{
    border-radius: 5px;
    height: 40px;
    width: 36px;
    background-color: rgb(30, 159, 97);
    color: azure;
    margin-left: 9px;
    border: none;
}

/* Logout BTN */
.logout-btn{
    padding: 5px 10px;
    border-radius: 5px;
    background-color: darkred;
    color: #fff;
    margin-left: 10px;
}


/* Mobile Responsiveness */
@media (max-width: 900px) {
    /* Show Hamburger Icon On Small Screen Devices */
    .hamburger-icon{
        display: block;
        padding: 7px 10px;
    }

    /* Header Section Design */
    .logo{
        line-height: 1.2;
        flex: 1;
    }

    .nav-links.active{
        right: 0%;
    }
    
    .nav-links{
        position: fixed;
        right: -100%;
        top: 70px;
        background-color: var(--header-bg);
        width: 80%;
        max-width: 300px;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-right: 0px;
        padding-bottom: 10vh;
        transition: right 0.5s ease;
    }

    .nav-links ul{
        flex-direction: column;
        text-align: center;
    }
}