/*************************************************************/
/*MODAL STYLE*************************************************/
/*************************************************************/
#NAVBAR-modal{
    display: flex;
    position: fixed;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.95);

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease 0.1s;
    visibility: hidden;
}

#NAVBAR-modal.active{
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

/*************************************************************/
/*CONTENT UPWARD ANIMATION************************************/
/*************************************************************/
#navbar-content-wrapper{
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-top: 220px;
    transform: translateY(5%);
    transition: transform 0.5s ease;
}
#NAVBAR-modal.active #navbar-content-wrapper{
    transform: translateY(0);
}

/*************************************************************/
/*NAVBAR NAVIGATION STUFF*************************************/
/*************************************************************/
#navbar-content ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

#navbar-content li a{
    display: block;
    text-align: center;
    color: black;
    padding-bottom: 20px;
    text-decoration: none;
    font-family: Manrope, sans-serif;
    font-weight: bold;
    font-size: 1.3em;
    /*disable the blue ugly highlight color when tapped*/
    -webkit-tap-highlight-color: transparent; /* iOS & Android */
    outline: none;
}

/*************************************************************/
/*SOCIAL MEDIA ICONS******************************************/
/*************************************************************/
#navbar-modal-icons a{
    text-decoration: none;
    border: none;
    outline: none;
}

#navbar-modal-icons{
    margin-top: auto;
    padding-bottom: 25%;
}

#navbar-modal-icons a svg{
    padding-inline: 10px;
    width: 22px;
    height: 22px;
}

#navbar-modal-icons a:nth-child(3) svg{
    transform: scale(130%);
}

/*************************************************************/
/*ICONS UPWARD ANIMATION**************************************/
/*************************************************************/

#navbar-icons-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(100%);
    transition: transform 0.5s ease 0.1s;
    opacity: 1;
}

#NAVBAR-modal.active #navbar-icons-wrapper{
    transform: translateY(0);
    opacity: 1;
}
