/* Navbar Flexbox Setup */
.navbar {
    display: flex;
    width: 100%;
    max-height: 3.5rem;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    justify-content: space-between;
    align-items: center;
    box-shadow: none;
    padding-left: 3%;
    padding-right: 3%;
    transition: box-shadow 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 0, 0, 1);
}

/* Navbar Item */
.navbar-item {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--font-color-primary);
    border: none;
    cursor: pointer;
    height: fit-content;
    width: auto;
}

/* Navbar Links */
.navbar-item > a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    text-decoration: none;
    margin: 0.3rem;
    height: inherit;
    width: auto;
}

.navbar-item > a > img {
    object-fit: contain;
    height: 2.5rem;
    width: auto;
}

/* Hover Effects */
.navbar-item:hover {
    box-shadow: inset 0 0 10px 5px rgba(255, 0, 0, 0.75), inset 0 0 5px 2px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0px 5px 10px 3px rgba(255, 0, 0, 0.75); /* Red glow on bottom edge */
}
