@font-face {
    font-family: 'Playfair';
    src: url(../Fonts/Playfair-VariableFont_opsz\,wdth\,wght.ttf) format('truetype');
}

@font-face {
    font-family: 'Playfair Display';
    src: url(../Fonts/PlayfairDisplay-VariableFont_wght.ttf) format('truetype');
}

@font-face {
    font-family: 'Inter';
    src: url(../Fonts/Inter-VariableFont_opsz\,wght.ttf) format('truetype');
}

:root{
    --playfair-font: 'Playfair', serif;
    --playfair-display-font: 'Playfair Display', serif;
    --inter-font: 'Inter', sans-serif;
}

body{
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.nav{
    position: fixed;

    width: 100%;
    height: 10vh;
    
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;

}

.nav_inner{
    width: 95%;
    height: fit-content;

    display: flex;
    align-items: center;
    justify-content: space-between;

}

.nav_inner > .brand{
    font-family: var(--inter-font);
    font-size: 1.5vw;
    font-weight: 700;
    color: black;
    letter-spacing: -0.02vw;
}

.nav_inner > .brand > p{
    margin: 0;
    padding: 0;
}

.nav_inner > .hire{
    font-family: var(--inter-font);
    font-size: 1.1vw;
    font-weight: 600;
    color: white;
    text-decoration: none;
    background-color: black;
    padding: 0.6vw 1.2vw;
    border-radius: 100px;
    letter-spacing: -0.02vw;

    height: fit-content;
    width: fit-content;

    cursor: pointer;

    transition: 0.2s ease-out;
}

.nav_inner > .hire > p{
    margin: 0;
    padding: 0;
    user-select: none;
}

.nav_inner > .hire:hover{
    transform: translateY(-4px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.nav_inner > .menu{
    display: flex;
    align-items: center;
    justify-content: center;

    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 100px;

    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.08);
    padding: 0px 0.6vw;

    backdrop-filter: blur(0.6vw);

    background-color: #f4f4f485;
}


.nav_inner > .menu > a{
    font-family: var(--inter-font);
    font-size: 1.1vw;
    letter-spacing: -0.02vw;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.4);
    text-decoration: none;

    padding: 0.8vw 0.8vw;
    transition: 0.2s ease-out;

    cursor: pointer;
}

.nav_inner > .menu > .active{
    color: black;
}


.nav_inner > .menu > a:hover{
    color: black;
}

.main{
    width: 100%;
    height: fit-content;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main_inner{
    width: 100%;
    height: fit-content;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main_inner > .hero{
    width: 100%;
    height: fit-content;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    margin-top: 10vh;
}

.main_inner > .hero > .hero_inner{
    width: 90%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main_inner > .hero > .hero_inner > .me{
    margin-top: 2vh;

    width: 10vw;
    aspect-ratio: 1/1;
    border-radius: 100%;
    background-image: url(../Images/Portrait_1x1_half.jpg);
    background-size: 120%;
    background-position: center top;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.08);
    border: 2px solid white;
    filter: saturate(0);
    transition: 0.2s ease-out;
}

.main_inner > .hero > .hero_inner > .me:hover{
    filter: saturate(1);
}

.main_inner > .hero > .hero_inner > .greeting{
    font-family: var(--inter-font);
    font-size: 1.1vw;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.5);
    text-align: center;
    margin: 0;
    padding: 0;
    margin-top: 4vh;
    width: fit-content;
    height: fit-content;
    border-radius: 100px;
    background-color: white;
    padding: 0.8vw 1.6vw;

    letter-spacing: -0.02vw;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.08);
}

.main_inner > .hero > .hero_inner > .greeting > p{
    margin: 0;
    padding: 0;
}

.main_inner > .hero > .hero_inner > h1{
    font-family: var(--playfair-display-font);
    font-size: 3.5vw;
    font-weight: 700;
    color: black;
    text-align: center;
    margin: 0;
    padding: 0;

    width: 50%;
    line-height: 4vw;
    letter-spacing: -0.05vw;
    text-transform: uppercase;

    margin-top: 3vh;
}

.main_inner > .hero > .hero_inner > p{
    font-family: var(--inter-font);
    font-size: 1.4vw;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.5);
    text-align: center;
    margin: 0;
    padding: 0;

    width: 50%;
    line-height: 2vw;
    letter-spacing: -0.02vw;

    margin-top: 3vh;
}

.main_inner > .hero > .hero_inner > button{
    font-family: var(--inter-font);
    font-size: 1.1vw;
    font-weight: 600;
    color: white;
    text-decoration: none;
    background-color: black;
    padding: 1vw 1.6vw;
    border-radius: 100px;
    letter-spacing: -0.02vw;
    border: none;

    height: fit-content;
    width: fit-content;

    cursor: pointer;

    transition: 0.2s ease-out;
    margin-top: 6vh;
}

.main_inner > .hero > .hero_inner > button:hover{
    transform: translateY(-4px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.skills{
    width: 100%;
    height: fit-content;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    margin-top: 8vh;
}

.skills_inner{
    width: 60%;
    height: fit-content;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1vw;
}

.skills_inner > p{
    font-family: var(--inter-font);
    font-size: 1vw;
    font-weight: 400;
    color: black;
    text-align: center;
    margin: 0;
    padding: 0;

    letter-spacing: -0.02vw;
    border-radius: 100px;
    background-color: white;
    padding: 0.6vw 1.2vw;
    transition: 0.5s ease;
}

.skills_inner > p:hover{
    transform: translateY(-4px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.tools{
    width: 100%;
    height: fit-content;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    margin-top: 8vh;
}

.tools_inner{
    width: 60%;
    height: fit-content;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 3vw;
    row-gap: 2vh;
}

.tools_inner > img{
    height: 4vh;
    transition: 0.2s ease-out;
}

.tools_inner > img:hover{
    transform: scale(1.1);
    filter: saturate(1);
}



.video-container{
    width: 80%;
    height: fit-content;
    
    border: 0.2vw solid white;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
    border-radius: 2vw;

    overflow: hidden;

    margin-top: 12vh;
    padding: 0.5vw;
    background-color: black;
}

.video-container > iframe{
    width: 100%;
    aspect-ratio: 1920/1080;
    border-radius: 1.3vw;
    overflow: hidden;
}


.work_inner > .column > .frame > .img{
    width: calc(100%);
    background-size: 150%;
    background-position: center;
    border-radius: 1.3vw;
    transition: 0.5s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.work{
    width: 100%;
    height: fit-content;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    margin-top: 8vh;
}

.work_inner{
    width: 80%;
    height: fit-content;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3vw;
}

.work_inner > .column{
    flex: 1;
    height: fit-content;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5vw;
}

.work_inner > .column > .frame{
    width: 100%;
    height: fit-content;
    background-color: black;
    border-radius: 2vw;
    border: 0.2vw solid white;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
    padding: 0.5vw;

    display: flex;
    justify-content: center;
    align-items: center;

    transition: 0.25s ease-out;
}

.work_inner > .column > .frame > .img{
    width: calc(100%);
    background-size: 150%;
    background-position: center;
    border-radius: 1.3vw;
    transition: 0.5s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.work_inner > .column > .frame > .img:hover{
    background-size: 100%;
}

.footer{
    width: 100%;
    height: fit-content;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 8vh;
}

.footer_inner{
    width: 95%;
    height: fit-content;

    display: flex;
    align-items: center;
    justify-content: center;
}

.footer_inner > p{
    font-family: var(--inter-font);
    font-size: 1vw;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.5);
    text-align: center;
    margin: 0;
    padding: 0;

    padding: 4vh;

    letter-spacing: -0.02vw;
}

.contact_window{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 2000;

    display: flex;
    align-items: center;
    justify-content: center;

    backdrop-filter: blur(0px);
    transition: 0.25s ease-out;
    opacity: 0;
    display: none;
}

.contact{
    width: 35vw;
    height: fit-content;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: white;
    transition: 0.25s ease-out;
}

.contact_inner{
    width: 100%;
    height: fit-content;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}

.contact_inner > .picture{
    width: 10vw;
    aspect-ratio: 1/1;
    border-radius: 100%;
    background-image: url(../Images/Portrait_1x1_half.jpg);
    background-size: cover;
    background-position: center top;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.08);

    margin-top: -5.5vw;

    border: 0.5vw solid white;
}

.contact_inner > h1{
    font-family: var(--inter-font);
    font-size: 2.4vw;
    font-weight: 700;
    color: black;
    text-align: center;
    margin: 2vh 0 0 0;
    padding: 0;

    width: fit-content;
    height: fit-content;

    letter-spacing: -0.02vw;
}

.contact_inner > p{
    font-family: var(--inter-font);
    font-size: 0.9vw;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.5);
    text-align: center;
    margin: 0;
    padding: 0;

    width: fit-content;
    height: fit-content;

    letter-spacing: -0.02vw;
}

.contact_inner > .line{
    width: 70%;
    height: 0.1vw;
    background-color: rgba(0, 0, 0, 0.342);
    margin: 2vh 0 0 0;
}

.contact_inner > .email{
    font-family: var(--inter-font);
    font-size: 1vw;
    font-weight: 400;
    color: white;
    text-align: center;
    margin: 0;
    padding: 0;

    width: fit-content;
    height: fit-content;


    margin-top: 4vh;

    background-color: rgba(0, 0, 0, 1);
    padding: 12px 24px;
    border-radius: 2px;
}

.contact_inner > .email:hover{
    text-decoration: underline;
    cursor: pointer;
}

.contact_inner > .phone{
    font-family: var(--inter-font);
    font-size: 1vw;
    font-weight: 400;
    color: black;
    text-align: center;
    margin: 0;
    padding: 0;

    width: fit-content;
    height: fit-content;


    margin-top: 1vh;
    margin-bottom: 10vh;
}

.contact_inner > .phone:hover{
    text-decoration: underline;
    cursor: pointer;
}

@media (min-width: 900px) {

    .nav_inner > .menu{
        position: fixed;
        left: 50%;
        transform: translateX(-50%);
    }

}

@media (min-width: 1920px) {

}

@media (max-width: 1366px) {

}

@media (max-width: 900px) {

    .nav_inner{
        width: 90%;
    }

    .nav_inner > .brand{
        font-size: 3vw;
    }

    .nav_inner > .hire{
        font-size: 2.2vw;
        padding: 1.4vw 2.8vw;

    }

    .nav_inner > .menu{
        padding: 0px 0.8vw;
    }

    .nav_inner > .menu > a{
        font-size: 2.2vw;
        padding: 1.6vw 1.6vw;
    }

    .main_inner > .hero > .hero_inner > .me{
        width: 20vw;
    }

    .main_inner > .hero > .hero_inner > .greeting{
        font-family: var(--inter-font);
        font-size: 2.2vw;
        padding: 1.2vw 2.2vw;
        margin-top: 2vh;
    }

    .main_inner > .hero > .hero_inner > h1{
        font-size: 5.5vw;
        width: 90%;
        line-height: 6vw;
        margin-top: 6vh;
    }

    .main_inner > .hero > .hero_inner > p{
        font-size: 2.8vw;
        font-weight: 400;
        width: 80%;
        line-height: 3.5vw;
        margin-top: 2vh;
    }

    .main_inner > .hero > .hero_inner > button{
        font-size: 2.2vw;
        padding: 3vw 4vw;
    }


    .skills_inner{
        width: 80%;
        gap: 2vw;
    }

    .skills_inner > p{
        font-size: 2vw;
        font-weight: 500;
        color: rgba(0, 0, 0, 0.692);
        padding: 1.2vw 2.4vw;
    }

    .tools_inner{
        width: 80%;
        column-gap: 5vw;
        row-gap: 2vh;
    }

    .tools_inner > img{
        height: 3vh;
    }

    .footer_inner > p{
        font-size: 2.5vw;
        padding: 4vh 0;
    }

    .contact{
        width: 50vw;
    }

    .contact_inner > .picture{
        width: 24vw;
        margin-top: -12.5vw;
        border: 0.5vw solid white;
    }

    .contact_inner > h1{
        font-size: 4.1vw;
        margin: 1vh 0 0 0;
    }

    .contact_inner > p{
        font-size: 1.5vw;
    }

    .contact_inner > .line{
        width: 60%;
    }

    .contact_inner > .email{
        font-size: 2vw;
        padding: 12px 24px;
        margin-top: 5vh;
    }

    .contact_inner > .phone{
        font-size: 2vw;
        margin-bottom: 8vh;
    }
}

@media (max-width: 480px) {

    .nav_inner{
        width: 90%;
    }

    .nav_inner > .brand{
        font-size: 4vw;
    }

    .nav_inner > .hire{
        font-size: 3vw;
        padding: 1.8vw 2.8vw;
    }

    .nav_inner > .menu{
        padding: 0px 1vw;
        display: none;
    }

    .nav_inner > .menu > a{
        font-size: 2.6vw;
        padding: 2vw 2vw;
    }

    .main_inner > .hero > .hero_inner > .me{
        width: 36vw;
    }

    .main_inner > .hero > .hero_inner > .greeting{
        font-family: var(--inter-font);
        font-size: 3.5vw;
        padding: 1.6vw 2.8vw;
        margin-top: 2vh;
    }

    .main_inner > .hero > .hero_inner > h1{
        font-size: 7vw;
        width: 100%;
        line-height: 8vw;
        margin-top: 6vh;
    }

    .main_inner > .hero > .hero_inner > p{
        font-size: 4vw;
        font-weight: 400;
        width: 100%;
        line-height: 4.5vw;
        margin-top: 2vh;
    }

    .main_inner > .hero > .hero_inner > button{
        font-size: 3.5vw;
        padding: 4vw 6vw;
    }

    .skills_inner{
        width: 90%;
        gap: 2.5vw;
    }

    .skills_inner > p{
        font-size: 2.8vw;
        padding: 1.6vw 3vw;
    }

    .tools_inner{
        width: 100%;
        column-gap: 5vw;
        row-gap: 2vh;
    }

    .tools_inner > img{
        height: 3vh;
    }

    


    .video-container{
        width: 95%;
    }

    .work{
        margin-top: 4vh;
    }

    .work_inner{
        width: 95%;
        height: fit-content;

        display: flex;
        align-items: center;
        justify-content: center;
        gap: 3vw;
    }

    .footer_inner > p{
        font-size: 3vw;
        padding: 4vh 0;
    }

    .contact{
        width: 70vw;
    }

    .contact_inner > .picture{
        width: 36vw;
        margin-top: -19vw;
        border: 1vw solid white;
    }

    .contact_inner > h1{
        font-size: 6vw;
        margin: 1vh 0 0 0;
    }

    .contact_inner > p{
        font-size: 2.2vw;
    }

    .contact_inner > .line{
        width: 50%;
    }

    .contact_inner > .email{
        font-size: 3vw;
        padding: 12px 24px;
        margin-top: 5vh;
    }

    .contact_inner > .phone{
        font-size: 3vw;
        margin-bottom: 8vh;
    }
}