#navbar {
    background-color: #333;
    color: white;
    padding: 0 20px;
    box-sizing: border-box;
    position: fixed;
    top: 0;
  
    width: 100%;
    height: 50px;
    display: flex;
    z-index: 5000;
    align-items: center;
    justify-content: space-between;
}



#menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
}

#menu-container {
    display: block;
}

nav ul ul.dropdown {
    display: none;
    position: absolute;
    background-color: #333;
    padding: 0;
    margin: 0;
    list-style: none;
}

nav ul li:hover > ul.dropdown {
    display: block;
}

nav ul ul.dropdown li a {
    color: white;
    display: block;
    padding: 5px;
    text-decoration: none;
}

nav ul ul.dropdown li a:hover {
    background-color: #555;
}

#header-items {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}

#header-items li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: transform 0.2s ease, color 0.2s ease;
}

#header-items li a:hover {
    text-decoration: underline;
    color: #00bfff;
    transform: scale(1.2);
}

#page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    padding-top: 50px;
}

body {
    background-color: black;
    
}

body.no-scroll {
    overflow: hidden;
}

/* body.satellite-scroll {
    overflow-y: auto;
} */


.hidden {
    display: none;
}

/* #about-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 60px;
    overflow: hidden;
}

#about-title {
    color: white;
}

#about-description {
    color: white;
} */

// navbar media query
@media screen and (max-width: 468px) {
    #menu-toggle {
        display: block !important;
        /* margin-bottom: 10px; */
        align-self: auto;
        background: red !important;
        border: none;
        color: white;
        z-index: 1001;
        font-size: 1.5rem;
    }

    #menu-container {
        position: fixed;
        top: 0;
        left: -300px;
        background-color: #222;
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 250px;
        height: auto;
        padding: 60px 20px 20px 20px;
        transition: left 0.3s ease;
        z-index: 1000;
    }

    #menu-container.open {
        left: 0;
    }

    #header-items {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        list-style: none;
        padding: 0;
    }

    #header-items li {
        width: 100%;
    }

    #header-items a {
        display: block;
        width: 100%;
        padding: 10px 0;
        color: white;
        text-decoration: none;
    }

   
    /* #navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: #111; 
        z-index: 5000; 
        height: 50px; 
        display: flex;
        align-items: center;
        padding: 0 10px;
    } */

    

    /* .dropdown {
        display: none;
        padding-left: 20px;
    }

    nav ul li:hover > ul.dropdown {
        display: block;
    }

    .dropdown li a {
        padding-left: 20px;
    } */
}



