/* ====================== Fullpage Menu Style ====================== */
.fullPageMenu {
    background-color: rgb(0, 0, 0);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    color: white;
    width: 100%;
    height: 100%;
    top: 0;
    left: 100%;
    position: fixed;
    transition: left 0.5s ease-in-out;
    z-index: 1000;
    transform: translateX(-100%);
}


.fullPageMenu .socials {
    background-image: url(../../assets/images/Tennerick-Background.png);
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.fullPageMenu .socials ul {
    background-color: #0000007c;
    border-radius: 16px;
    width: max-content;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 32px;
    margin: 0px auto;
}

.fullPageMenu .socials ul li {
    padding: 20px 20px;
}

.fullPageMenu .socials ul li a {
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: white;
    font-size: 32px;
    font-family: var(--title);
    font-weight: 200;
}


.fullPageMenu .socials ul li a img {
    width: 35px;
    height: 35px;
}

.fullPageMenu .menuContainer {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    padding: 16px 32px;
}

.fullPageMenu .menuContainer #menuClose   { 
    color: white; 
    font-size: var(--navFontSize);
    font-family: var(--label);
    font-weight: 500;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.menuContent {
    background-color: #0000007c;
    border-radius: 16px;
    width: max-content;
    list-style: none;
}

.menuContent ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    list-style: none;
}

.menuContent ul li {
    padding-top: 32px;
}

.menuContent ul li a {
    text-decoration: none;
    font-size: 32px;
    font-family: var(--displayLarge);
    font-weight: 400;
    color: white;
}

.menuFooter {
    padding: 0px;
    margin: 0px;
}

.menuFooter ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-end;
    list-style: none;
    color: white;
    gap: 64px;
}

.menuFooter ul li {
    flex-direction: column;
}

.menuFooter ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    font-weight: 400;
    color: white;
    gap: 8px;
}

.menuFooter ul li a.menuFooterMessage {
    font-size: 8px;
    font-family: var(--label);
}

.menuFooter ul li a {
    font-size: 12px;
    font-family: var(--body);
} 

.menuFooter ul li a img {
    width: 32px;
    height: 32px;
}


@media (max-width: 710px) {
    .fullPageMenu {
     display: flex;
     flex-direction: column-reverse;
     justify-content: flex-end;
     height: 100%;
     padding: 16px 32px;
     gap:32px;
    }

    .fullPageMenu .socials {
        background-image:none;
        padding: 0px; 
        margin: 0px;
        align-items: flex-end;
        justify-content: normal;
    }

    .fullPageMenu .socials ul {
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        padding: 0px;
        margin: 0px;
    }

    .fullPageMenu .socials ul li {
        padding: 0px;
        margin: 0px;
    }

    .fullPageMenu .socials ul li a {
        text-decoration: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        color: white;
        font-size: 8px;
        font-family: var(--title);
        font-weight: 200;
        padding: 8px 0px 8px 32px;
    }

    .fullPageMenu .socials ul li a img {
        width: 20px;
        height: 20px;
    }

    .fullPageMenu .menuContainer {
        flex-direction: column;
        align-items: flex-end;
        padding: 0px;
        margin: 0px;
    } 

    .fullPageMenu .menuContainer ul {
        padding: 0px;
        margin: 0px; 
    }
    
    .fullPageMenu .menuContainer .menuFooter {
        padding-top: 32px;
    }
}

.fullPageMenu.active {
    transform: translateX(0);
}

.hidden {
    display: none; /* Hides the menu */
}
