.NavigationBar {
    display: flex;
    background-color: var(--white-bg);
    align-items: center;
    justify-content: space-between;
    /* Ensures proper spacing */
    padding: 0 2vw;
    position: relative;
    z-index: 1;
}

.NavigationBarLogo {
    width: min(20vw, 160px);
    padding: 1vw;
}

.NavigationBarLinks {
    display: flex;
    justify-content: space-between;
    /* adjuster */
    width: min(100%, 1300px);
    padding: 0 3vw;
}

.NavigationBarLinks a {
    font-size: min(1.5vw, 25px);
    margin: 0;
    text-decoration: none;
    color: var(--blue-font);
    position: relative;
    display: inline-block;
    justify-content: center;
}

.NavigationBarLinks a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    background-color: var(--blue-bg);
    height: 2px;
    transition: width 0.25s ease-out;
}

.NavigationBarLinks a:hover::before {
    width: 100%;
}

.NavigationBarLinks a:hover {
    font-weight: bold;
}

.Sticky {
    position: sticky;
    top: 0px;
    z-index: 1;
}

/* Styles for Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 25px;
    height: 25px;
    padding: 5px;
    cursor: pointer;
    position: absolute;
    /* Absolute positioning for custom placement */
    right: 2vw;
    /* Move to the leftmost side */
    top: 50%;
    transform: translateY(-50%);
    /* Center vertically */
}

.burger-menu span {
    width: 100%;
    height: 4px;
    background-color: var(--blue-font);
    border-radius: 2px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .NavigationBarLinks {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        background-color: var(--white-bg);
        width: 100%;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .NavigationBarLinks a {
        font-size: 4vw;
        padding: 1rem;
        text-align: center;
    }

    .NavigationBarLinks.show {
        display: flex;
    }
}