html{
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #fffffe #000001;
}
body{
    margin: 0;
    overflow-x: hidden;
    font-family: "Poppins", arial, sans-serif;
}
#nav {
    width: 100vw;
    height: 10vh;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000; /* Ensures nav stays above other content */
    /* Remove duplicate position: relative; */
}

#navBlur {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 40px; /* Set to desired blur height */
    z-index: 0;
    pointer-events: none;
    background: rgba(0,0,0,0.2);
    height: 10vh;
}
#nav1, #nav2 {
    position: relative;
    z-index: 1;
}
#nav1{
    width: 100vw;
    height: 10vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
#navMenu{
    width: 50%;
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 1rem;
}
#navMenu a{
    text-decoration: none;
    color: #fffffe;
    font-size: 1rem;
    transition: color 0.3s ease-in-out;
}
#navLogo{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    flex-direction: column;
    height: 10vh;
}
#navLogo h3{
    color: #fffffe;
    font-size: 1rem;
    margin: 0;
}
#navLogo p{
    color: #fffffe;
    font-size: 1.5rem;
    margin: 0;
}
#navMenu2{
    width: 50%;
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
#navMenu2 button{
    background-color: transparent;
    color: transparent;
    border: none;
    padding: 1rem;
    cursor: pointer;
}
#navMenu2 button i{
    color: #fffffe;
    font-size: 1.5rem;
    cursor: pointer;
}
#nav2{
    width: 100vw;
    height: 25vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}
#nav2 a{
    text-decoration: none;
    color: #fffffe;
    font-size: 1rem;
    width: 100vw;
    height: 5vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #000001;
}




@media (max-width:540px) {
    #navLogo h3{
    color: #fffffe;
    font-size: 0.5rem;
    margin: 0;
}
#navLogo p{
    color: #fffffe;
    font-size: 1rem;
    margin: 0;
}
}