.hamburger-menu{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    height: 4rem;
    width: 100%;
    z-index: 9999999;
    font-family: var(--font-style);
    background-color: var(--background-color);
    .burger-icon{
        position: absolute;
        right: 1rem;
        display: none;
        color: var(--idle-color);
        cursor: pointer;
        font-size: 2rem;
    }
    .burger-icon:hover{
        color: var(--highlight-color);
    }
    .brand-name{
        position: relative;
        height: 100%;
        margin-left: 1rem;
        img{
            height: 100%;
            user-select: none;
            cursor: pointer;
            pointer-events: none;
        }
        .mobile{
            display: none;
        }
    }
    .pages{
        display: flex;
        align-items: center;
        margin-right: 1rem;
        height: 100%;
        gap: 1rem;
        .index-container{
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            height: 100%;
            
            flex-shrink: 0;
            flex-grow: 1;
            .index{
                display: flex;
                align-items: center;
                justify-content: center;
                position: relative;
                text-decoration: none;
                height: 100%;
                color: var(--idle-color);
                /* border: 1px solid blue; */
                font-size: 0.8rem;
                text-shadow: -1px 3px 8px rgba(0,0,0,0.6);
            }
            .index:hover{
                color: var(--highlight-color);
            }
            .nav-indicator{
                display: none;
                position: absolute;
                background-color: var(--highlight-color);
                height: 2px;
                width: 100%;
                transform: translateY(0.8rem);
                font-size: 0.8rem;
                color: transparent;
            }
        }
    }
}
.hamburger-menu-gap{
    position: relative;
    width: 100%;
    height: 4rem;
}
.page-ref{
    position: absolute;
    transform: translateY(-4rem);
    height: 4rem;
    top: 0;
    width: 100%;
    z-index: -999;
}
.show{
    display: flex !important;
}
.hide{
    display: none !important;
}
@media screen and (max-width: 770px) {
    .hamburger-menu{
        justify-content: unset;
        .burger-icon{
            display: block;
        }
        .brand-name:has(.mobile){
            .web{
                display: none;
            }
            .mobile{
                display: block;
            }
        }
        .pages{
            height: fit-content;
            position: absolute;
            display: none;
            top: 4rem;
            width: 100%;
            margin-right: 0;
            flex-direction: column;
            align-items: flex-start;
            gap: unset;
            height: calc(100vh - 4rem);
            background-color: var(--background-color);
            .index-container{
                justify-content: flex-start;
                position: relative;
                height: 4rem;
                width: 100%;
                flex-grow: 0;
                .index{
                    justify-content: flex-start;
                    width: 100%;
                    padding-left: 1rem;
                    font-size: 2rem;
                    text-shadow: unset;
                }
                .nav-indicator{
                    left: 1rem;
                    bottom: 0.2rem;
                    width: fit-content;
                    font-size: 2rem;
                    transform: unset;
                }
            }
        }
    }

}
@media screen and (max-width: 320px){
    .hamburger-menu {
        .index-container{
            height: 20vw !important;
            
            .index{  
                font-size: 7vw !important;
            }
            .nav-indicator{
                font-size:  7vw !important;
                bottom: 5vw !important;
            }
        }
    }
}