.menu-bar {
    background-color: var(--bg-footer);
    padding: 10px 20px;
    position: sticky;
    top: 80px;
    z-index: 3;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: top 0.3s;
    box-shadow: rgba(0, 0, 0, 0.729) 0px 10px 15px 0px;
}

.menu-bar {
    top: 90px; /* Adjust based on your top-bar height */
    width: 100%;
    z-index: 99;
    transition: transform 0.3s ease-in-out; /* Smooth slide */
}

.menu-bar.adjusted {
    top: 0;
}

.menu-bar-content {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    position: relative;
}

.menu-options {
    display: flex;
    align-items: center;
}

.menu-bar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.menu-bar li {
    position: relative;
    margin: 0 15px;
}

.menu-bar a {
    color: var(--text-inverse);
    text-decoration: none;
    font-size: 1em;
    font-weight: 600;
    padding: 5px 10px;
    display: block;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.menu-bar a:hover {
    color: var(--btn-secondary-bg);
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgb(0, 0, 0);
    min-width: 150px;
    box-shadow: var(--shadow-medium);
    border-radius: 20px;
    z-index: 1;
    top: 100%;
    left: 0;
}

.dropdown-content a {
    color: var(--text-inverse);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.9em;
}

.dropdown-content a:hover {
    background-color: var(--btn-primary-hover);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-inverse);
    margin: 5px 0;
    transition: all 0.3s ease;
}


.disclosure {
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    position: fixed;
    z-index: 1000; /* Ensures it stays above other elements */
    background-color: var(--bg-footer);
    color: rgba(30, 173, 202, 0.774);
    top: 80px;
    height: 10px;
    font-size: 0.9em;
    transition: transform 0.3s ease-in-out; /* Smooth slide */
    padding: 5px;
}