:root{
    --clr-primary-bg: #FFFDD0;
    --clr-primary-font: #6D6C59;
}

/*MOBILE NAVIGATION*/
#mobilenav-wrapper{
    display: none;
    position: relative;
    width: 100%;
    height: 60px;
    z-index: 1005;
}
#mobilenav-wrapper .logo{
    font-size: 18px;
    padding: 25px 1.3em;
}
#mobilenav-wrapper .mobile-menu-btns{
   position: absolute;
   top: 16px;
   right: 1.5em;
   width: 40px;
   height: 40px;
}
#mobilenav-wrapper .mobile-menu-btns > div{
    width: 100%;
    height: 100%;
}
#mobilenav-wrapper .mobile-menu-btns .menu-open-btn{
    display: flex;
    flex-direction: column;
    cursor: pointer;
}
#mobilenav-wrapper .mobile-menu-btns .menu-open-btn .burger-line{
    height: 15px;
    background-image: url("../images/mobile-icons/menu-icon-line.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease;
}
/*NAVIGATION*/
#sidenav-wrapper{
    max-width: 350px;
    padding: 0% 0 0% 5%;
    float: left;
    height: inherit;
    margin-right: 2%;
    background: var(--clr-primary-bg);
    position: fixed;
    padding: 4% 1% 0 3%;
    left: 0;
    top: 0;
    transition: all 0.5s ease;
}
#sidenav-wrapper .wrapper{
    border-right: 1px solid #707070;
}
#sidenav-wrapper .logo{
    font-size: 32px;
    letter-spacing: 3px;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 32px;
    color: var(--clr-primary-font)
}
#sidenav-wrapper #menu li{
    list-style-type: none;
}
#sidenav-wrapper #menu li > a{
    display: table-cell;
    padding: 0.4em 0.4em 0.4em 0em;
    color: var(--clr-primary-font);
    text-decoration: none;
    line-height: 1.8;
    cursor: pointer;
    
}
#sidenav-wrapper #menu li:hover > a{
    text-decoration: underline;
}
#sidenav-wrapper .social-links{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding-top: 20px;
}
#sidenav-wrapper .social-links .social-item{
    width: 20px;
    height: 20px;
}
#sidenav-wrapper .social-links .social-item img{
    width: 100%;
    height: 100%;
}

/*CONTENT*/
#content-wrapper{
    width: calc(100vw - 420px);
    margin: 4% 20px 4% 380px;
    padding-top: 110px;
    float: left;
}

/*GALLERY*/
#content-wrapper .gallery-squares{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    opacity: 1;
    transition: opacity 0.3s ease;
}
#content-wrapper .gallery-squares.fadeout{
    opacity: 0;
}
#content-wrapper .gallery-squares .gallery-subcontent{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 250px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}
#content-wrapper .gallery-squares .gallery-subcontent div{
    padding: 10px;
}
.asset-gallery{
    /* opacity: 0; */
    transition: opacity 0.3s ease;
}
.asset-gallery.active{
    opacity: 1;
}
.asset-gallery.hidden{
    display: none;
}
#content-wrapper .assets-container .asset{
    position: relative;
    float: left;
    height: 12em;
    margin: 0 3% 3% 0;
}
#content-wrapper .assets-container .asset img{
    height: auto;
    max-height: 12em;
    max-width: 100%;
    object-fit: cover;
}

/*ABOUT*/
.profile-img{
    display: block;
    width: 100%;
    max-width: 450px;
    height: auto;
    margin: 0 auto;
}

.title{
    font-weight: bold;
}

ul{
    margin: 20px 40px;
}


/*MEDIA QUERIES*/
@media screen and (max-width: 856px) {
    #mobilenav-wrapper{
        display: block;
    }
    #sidenav-wrapper{
        position: fixed;
        width: 100%;
        min-height: 100vh;
        transform: translateX(-350px);
        padding-left: 1.5em;
        z-index: 1001
    }
    #sidenav-wrapper.active{
        transform: translateX(0);
    }
    #sidenav-wrapper .wrapper{
        border: none;
        margin-top: 60px;
    }
    #sidenav-wrapper .logo{
        display: none;
    }

    #content-wrapper{
        margin: auto;
        padding-top: 3em;
        padding-left: 1.5em;
        padding-right: 1.5em;
        width: 100%;
    }
}

@media screen and (max-width: 576px){
    .gallery-squares{
        justify-content: center;
    }
}
