/*
IMPORTS
*/
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Nanum+Myeongjo:wght@400;700&family=Roboto:wght@400;700;900&display=swap');


/* 
GENERICS 
*/
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Roboto", "san-serif";
}

html{
    scroll-behavior: smooth;
}

li{
    list-style-type: none;
}

section{
    background-color: rgb(245, 245, 245);
    transition: all 300ms ease;
}

p{
    line-height: 1.5;
    font-size: 16px;
}

a{
    text-decoration: none;
}

button{
    cursor: pointer;
}

input, textarea{
    width: 100%;
    background-color: #242424;
    color: white;
    outline: none;
    border: 3px solid #c0c4cc;
    border-top: none;
    border-left: none;
    border-right: none;
    height: 40px;
    transition: all 300ms ease;
}

input:hover, textarea:hover{
    border-color: #dcdfe6;
}

input:focus, textarea:focus{
    border-color: #8EB1D9;
}

textarea{
    resize: vertical;
    height: 100px;
    margin-top: 8px;
}

label{
    font-size: 14px;
    font-weight: bold;
}

.container{
    padding: 50px 0;
    width: 100%;
}

.row{
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 12px;
}

.myColor{
    color:#8EB1D9
}

.click{
    transition: all 300ms ease;
    cursor: pointer;
}

.click:hover{
    transform: scale(1.1);
}

.click:active{
    transform: scale(0.8);
}

.link__hover-effect{
    position: relative;
}

.link__hover-effect:hover:after{
    left: 0;
    width: 100%;
}

.link__hover-effect:after{
    content: "";
    position: absolute;
    bottom: -3px;
    height: 3px;
    width: 0;
    right: 0;
    background-color: black;
    transition: all 300ms ease;
}

.link__hover-effect--white:after{
    background-color: white;
}

.link__hover-effect--black:after{
    background-color: #242424;
}

nav,
.scroll,
.header{
    opacity: 1;
    visibility: visible;
    transition: all 600ms 800ms;
}

.modal--open nav,
.modal--open .scroll,
.modal--open .header{
    opacity: 0;
    visibility: hidden;
    transition: all 400ms;
}

.dark-theme .title,
.dark-theme .section__title,
.dark-theme .section__sub-title,
.dark-theme .nav__link--anchor,
.dark-theme .fa-adjust,
.dark-theme .header__para{
    color: white;
}

.dark-theme .myColor{
    color: #8EB1D9;
}

.dark-theme section{
    background-color: #242424;
}

.dark-theme #personal-logo{
    filter: none;
}

.dark-theme .scroll__icon{
    border-color: white;
}

.dark-theme .scroll__icon:after,
.dark-theme .link__hover-effect--black:after{
    background-color: white;
}

.dark-theme .mail__btn{
    background-color: white;
    color: #242424;
}


/* 
LANDING PAGE
*/
#landing__page{
    min-height: 100vh;
}

.header__img--wrapper-small{
    display: none;
}

.personal__img--mask-small{
    display: none;
}

.header{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1000px;
    padding: 0 30px;
    z-index: 1;
}

.title{
    font-size: 120px;
    margin-bottom: 12px;
    text-align: left;
    line-height: 1;
}

.header__half{
    width: 100%;
    display: flex;
    align-items: center;
}

.header__para{
    font-size: 24px;
    line-height: 2;
    width: 50%;
    max-width: 450px;
}

.header__img--wrapper{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.personal__img--mask{
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 1);
    margin-bottom: 28px;
}

.personal__img{
    width: 100%;
    transform: scale(1.5);
    padding-top: 8px;
}

.social__list{
    margin-top: 16px;
    display: flex;
}

.social__link{
    background-color: #8EB1D9;
    color: white;
    padding: 6px;
    width: 32px;
    height: 32px;
    font-size: 14px;
    margin-right: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.mail__btn{
    width: 70px;
    height: 70px;
    font-size: 32px;
    border-radius: 50%;
    border: none;
    background-color: #242424;
    color: white;
    position: fixed;
    bottom: 32px;
    right: 40px;
    z-index: 100;
    box-shadow: 0 12px 30px 0 rgb(0,0,0,0.25);
}

.scroll{
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll__icon{
    width: 20px;
    height: 30px;
    border: 2px solid #242424;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll__icon:after{
    content: "";
    width: 4px;
    height: 6px;
    background-color: #242424;
    border-radius: 2px;
    animation: scroll 1000ms infinite alternate-reverse;
}

@keyframes scroll{
    0%{
        transform: translateY(3px);
    }

    100%{
        transform: translateY(-3px);
    }
}

@keyframes animate-profile-picture{
    0%{
        transform: scale(0);
    }

    80%{
        transform: scale(1.1);
    }

    100%{
        transform: scale(1);
    }
}


/* 
NAVBAR
*/
nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100px;
}

#personal-logo{
    width: 50px;
    height: 50px;
    filter: invert(1);
}

.nav__link--list{
    display: flex;
}

.nav__link{
    margin: 0 12px;
}

.nav__link--anchor{
    text-decoration: none;
    font-size: 16px;
    color: #242424;
    font-weight: 700;
}

.fa-adjust{
    font-size: 20px;
}


/* 
MODAL 
*/
.modal{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1100px;
    height: 700px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    visibility: hidden;
    z-index: -1;
    transition: visibility 1s, z-index 1s, box-shadow 0.5s ease;
}

.modal--open .modal{
    z-index: 60;
    box-shadow: 0 20px 80px 0 rgb(0,0,0,0.55);
    visibility: visible;
}

.modal--open .modal__about,
.modal--open .modal__contact{
    transform: translateX(0%);
}

.modal__half{
    width: 50%;
    padding: 40px 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    transition: all 300ms ease-in;
}

.modal__about{
    background-color: rgb(245, 245,245);
    transform: translateX(-110%);
}

.modal__languages{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.modal__language{
    width: 25%;
    padding: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 300ms ease;
}

.modal__language:hover .language__name{
    transform: scale(1);
}

.modal__language:hover{
    filter: brightness(80%);
    transform: scale(0.9);
}

.language__name{
    position: absolute;
    bottom: -10px;
    transform: scale(0);
    transition: all 300ms ease;
}

.modal__language--img{
    width: 100%;
}

.modal__contact{
    background-color: #242424;
    color: white;
    transform: translateX(110%);
}

.modal__title{
    font-size: 26px;
}

.modal__sub-title{
    margin: 12px 0 24px 0;
    font-size: 14px;
}

.modal__para{
    margin-bottom: 12px;
    line-height: 1.75;
}

.form__item{
    margin-bottom: 20px;
}

.form__submit{
    background-color: #8EB1D9;
    border: 2px solid #8EB1D9;
    border-radius: 10px;
    color: white;
    font-weight: 700;
    width: 100%;
    max-width: 240px;
    padding: 12px 24px;
    font-size: 20px;
    transition: all 300ms ease;
}

.form__submit:hover{
    border-color: white;
    background-color: transparent;
}

.form__submit:active{
    border-color: #8EB1D9;
    color: #8EB1D9;
}

.modal__overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: -1;
}

.modal__overlay--loading{
    background-color: #242424;
    font-size: 80px;
}

.fa-spinner{
    animation: spinner 750ms infinite linear;
}

.modal__overlay--success{
    background-color: #4bb543;
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    padding: 28px;
}

.modal__overlay--visibile{
    z-index: 1;
    display: flex;
}

.modal__exit{
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 36px;
    z-index: 100;
}

@keyframes spinner{
    0%{
        transform: rotate(0);
    }

    100%{
        transform: rotate(360deg);
    }
}


/* 
PROJECTS PAGE
*/
.section__title{
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
}

.project__img{
    width: 100%;
    transition: all 600ms ease;
    transform: scale(1.02);
}

.project__wrapper{
    position: relative;
    border-radius: 20px;
    box-shadow: 0 20px 80px 0 rgb(0,0,0,0.45);
    overflow: hidden;
    margin-bottom: 48px;
}

.project__wrapper:hover .project__description{
    opacity: 1;
    transform: translateY(-50%);
}

.project__wrapper:hover .project__img{
    transform: scale(1.07);
    filter: blur(5px);
}

.project__wrapper:hover .project__wrapper--bg{
    opacity: 0.7;
}

.project__wrapper--bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1c1d25;
    opacity: 0;
    transition: all 450ms ease;
}

.project__description{
    position: absolute;
    top: 50%;
    left: 90px;
    transform: translateY(100%);
    color: white;
    max-width: 550px;
    opacity: 0;
    transition: opacity 300ms, transform 450ms ease;
}

.project__description--title{
    font-size: 40px;
}

.project__description--sub-title{
    margin-top: 8px;
}

.project__description--link{
    color: white;
    font-size: 20px;
    margin-right: 16px;
}

.project__description--para{
    margin: 16px 0;
}

.bullet__info{
    text-decoration: dotted;
    color: white;
    font-size: 16px;
    font-weight: 400;
    padding-bottom: 16px;
}

.bullet{
    list-style-type: circle;
}

/* 
FOOTER 
*/
footer{
    background-color: #242424;
    display: flex;
    padding: 6% 0;
    position: relative;
}

.footer__row{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer__anchor{
    position: relative;
    margin-bottom: 20px;
}

.footer__anchor:hover .footer__logo--popper{
    transform: translateX(60px);
    opacity: 1;
}

.footer__logo--popper{
    position: absolute;
    color: white;
    right: 0;
    top: 30px;
    font-weight: 700;
    opacity: 0;
    transition: all 300ms ease;
}

.footer__logo--img{
    width: 70px;
}

.footer__social--list{
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: space-around;
    margin: 28px 0;
}

.footer__social--link,
.footer__copyright{
    color: white;
}

/* 
SHAPES
*/
.shape{
    position: fixed;
}

.shape--0{
    top: 15vh;
    left: 5vw;
    width: 100px;
}

.shape--1{
    top: 15vh;
    left: 45vw;
    width: 100px;
}

.shape--2{
    top: 15vh;
    left: 80vw;
    width: 150px;
}

.shape--3{
    top: 50vh;
    left: 5vw;
    width: 125px;
}

.shape--4{
    top: 50vh;
    left: 45vw;
}

.shape--5{
    top: 50vh;
    left: 80vw;
    width: 100px;
}

.shape--6{
    top: 80vh;
    left: 5vw;
    width: 100px;
}

.shape--7{
    top: 80vh;
    left: 45vw;
    width: 100px;
}

.shape--8{
    top: 80vh;
    left: 80vw;
    width: 100px;
}


/*
RESPONSIVENESS 
*/
@media (max-width: 768px){
    .shape{
        display: none;
    }

    .title{
        font-size: 80px;
    }

    .header__para{
        font-size: 20px;
        width: 100%;
    }

    .header__img--wrapper{
        display: none;
    }

    .modal{
        top: 0;
        left: 0;
        transform: none;
        height: auto;
        width: 100%;
        flex-direction: column;
    }

    .modal__half{
        width: 100%;
        border-radius: 0;
    }

    .project__img{
        transform: scale(1.05);
    }

    .project__wrapper:hover .project__img{
        transform: scale(1.1)
    }

    .header{
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .header__img--wrapper-small{
        display: flex;
        justify-content: center;
        padding-top: 12px;
    }
    
    .personal__img--mask-small{
        display: block;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        overflow: hidden;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 1);
        margin-bottom: 28px;
    }

    .personal__img{
        width: 100%;
        transform: scale(1.5);
        padding-top: 8px;
    }

    .title{
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .social__list{
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 480px){
    .title{
        font-size: 52px;
    }

    .header__para{
        font-size: 18px;
    }

    .personal__img--mask-small{
        width: 100px;
        height: 100px;
        margin-top: 24px;
    }

    .nav__link:first-child{
        display: none;
    }

    .project__description--para{
        display: none;
    }

    .bullet__info{
        display: none;
    }

    .project__description{
        left: 0;
        padding: 0;
        width: 100%;
        text-align: center;
    }

    .project__description--sub-title{
        margin-bottom: 8px;
    }

    .modal__half{
        padding: 40px;
    }
}