:root {
    --mobile-height: 592;
    --laptop-height: 1080;
    --mobile-margin-top: 100;
    --laptop-margin-top: 284;
}

.app-menu {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    flex-direction: column;
    background-color: transparent;
    overflow: hidden;
    z-index: 150;
}

.app-menu * {
    user-select: none;
}

.app-menu nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: calc(var(--mobile-margin-top) / var(--mobile-height) * 100vh - 30px);
    color: var(--color-white);
    font-family: Arizona Light;
}

.app-menu .nav-item-parent {
    position: relative;
    overflow: hidden;
    height: 54px;
    display: flex;
    justify-content: center;
}

.app-menu.overflow-visible .nav-item-parent {
    overflow: visible;
}

.app-menu .nav-item-text {
    cursor: pointer;
    position: absolute;
    bottom: 0;
}

.app-menu .menu-nav-item {
    font-weight: var(--weight-light);
    font-size: 24px;
    line-height: 24px;
}

.app-menu .menu-icons {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 4px;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom:60.78px;
}

.app-menu .menu-social-icon {
    cursor: pointer;
    height: 24.22px;
}

@media (min-width: 768px) {
    .app-menu {
        transition: background-color 0.2s;
    }

    .app-menu .menu-nav-item:hover {
        font-family: Arizona Medium;
    }

    .app-menu:has(.nav-item-text:hover) {
        background-color: var(--color-red);
    }

    .app-menu nav {
        margin-top: calc( 164 / 820 * 100vh - 35px);
        margin-left: 50px;
        max-width: 400px;
    }

    .app-menu .nav-item-parent {
        height: 75px;
        justify-content: flex-start;
    }

    .app-menu .menu-nav-item {
        font-size: 32px;
        line-height: 39.46px;
        height: 100%;
        padding-top: 28px;
    }

    .app-menu .menu-icons {
        transform:unset;
        right: 50;
        bottom: 45;
        left: unset;
        gap: 8px;
    }

    .app-menu .menu-social-icon {
        width: 41.73px;
        height: 41.73px;
    }
}


@media (min-width: 1194px) {
    .app-menu {
        gap: 4px;
    }

    .app-menu nav {
        margin-top: calc(241 / var(--laptop-height) * 100vh - 40px);
        align-items: stretch;
        margin-left: 134px;
    }

    .app-menu .menu-nav-item {
        font-size: 38px;
        line-height: 46.85px;
        height: 100%;
        padding-top: 31px;
    }

    .app-menu .nav-item-parent {
        height: 87;
        display: block;
    }

    .app-menu .menu-icons {
        right: 132;
        bottom: 117;
        gap: 10px;
    }

    .app-menu .menu-social-icon {
        width: 48px;
        height: 48px;
    }
}

@media (min-width: 1500px) {
    .app-menu nav {
        margin-left: 200px;
        margin-top: calc(197 / var(--laptop-height) * 100vh - 40px);
    }

    .app-menu .menu-icons {
        right: 162;
        bottom: 105;
    }
}

@media (min-width: 1920px) {
    .app-menu {
        padding: 0 calc((100% - 1920px) / 2);
    }
    .app-menu .menu-icons {
        right: calc((100% - 1920px) / 2 + 132px);
    }
} 
