/* Hamburger Navigation Styles */
.hamburger-header {
    display: none;
    background-color: #000;
    color: #fff;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 9999;
}

.hamburger-header .hamburger-logo {
    text-align: center;
    padding: 10px;
}

.hamburger-header .hamburger-menu-icon {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #000000;
}

.hamburger-menu {
    display: none; /* Initially hidden */
    background-color: #000;
    color: #fff;
    height: 500px;
    width: 100%;
    position: fixed;
    top: 100px;
    left: 0;
    z-index: 9998;
    padding: 20px 10px;
    text-align: center;
    overflow-y: auto;
}

.hamburger-menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.hamburger-menu ul li {
    margin: 20px 0;
}

.hamburger-menu ul li a {
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 18px;
    display: block;
    font-weight: bold;
}

.hamburger-menu ul li a:hover {
    color: #007bff;
}

.montserrat-homepage {
    font-family: "Montserrat", sans-serif !important;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

#logo-container {
    position: relative;
    z-index: 1000;
}

/* Navbar initially below the logo */
#main-navbar {
    position: relative;
    z-index: 999;
    top: 0;
    width: 100%;
    transition: top 0.3s ease-in-out;
}

.sticky-navbar {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-color: #0433FF !important;
    box-shadow: 0px 3px 6px #0433FF;
    border-left: none !important; /* Remove left border */
    border-right: none !important; /* Remove right border */
}

/* Responsive Behavior */
/* @media (max-width: 767px) {
    .hamburger-header {
        display: block;
    }
} */

/* Responsive Behavior */
/* @media only screen and (min-width: 768px) {
    #NavigationBarNotLoggedIn {
        display: block !important;
    }

    .hamburger-header {
        display: none !important;
    }
} */
