@font-face { font-family: Akira; src: url(/Fonts/Akira\ Expanded.otf); } 

* {
    font-family: 'Poppins', sans-serif;
    font-optical-sizing: auto;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: white;
    /* outline:  1px solid #ff0000; */
}

:root{
    --accent1: #e15200;
    --accent2: #1f1f1f;
    --background1: linear-gradient(90deg, #1a1a1a 0%, #000000 100%);
    --accentgradient: linear-gradient(135deg, var(--accent1) 0%, var(--accent2) 100%);
}

html {
    scroll-behavior: smooth;
  }

body{
    overflow-x: hidden;
    background-image: var(--background1);
}

.outlined{
    -webkit-text-stroke: 1.5px var(--accent1);
    color: transparent;
}


/* TRANSITION */

#transition{
    z-index: 998;
    position: fixed;
    top: 100%;
    width: 100vw;
    height: 100vh;
    background: var(--accentgradient);
    transition: all 0.5s ease 0s;
    pointer-events: none;
}

#transition.isactive{
    top: 0%;
}

.transitionlogo{
    z-index: 999;
    position: fixed;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
}

#toplogo2{
    fill: var(--accent1);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 0vw;
    position: absolute;
    transition: all 0.5s ease;
    pointer-events: none;
}

#toplogo2.isactive2{
    width: 7vw;
}





.copy{
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 1rem;
    line-height: 1.5rem;
}

.pagina{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100vw;
}

.fullwidth{
    overflow-x: hidden;
    flex: 100%;
}

.textcenter{
    text-align: center;
}

.line{
    position: relative;
    margin-bottom: 2rem;
}

@media only screen and (max-width: 960px) {
    .line{
        margin-bottom: 0.5rem;
    }
}




/* TOPLOGO */
.toplogo{
    z-index: 888;
    margin-top: 3rem;
    margin-left: 3rem;
    fill: var(--accent1);
    position: fixed;
    width: 50px;
}

@media only screen and (max-width: 960px) {
    .toplogo{
        margin-left: 0rem;
        left: 50%;
        transform: translate(-50%, 0%);
        width: 30px;
    }
}





/* HEADERS */

.headertitel{
    font-family: "Akira";
    font-size: 5rem;
    line-height: 4rem;
    text-align: center;
    text-transform: uppercase;

    width: 90vw;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.headerback{
    overflow: hidden;
    font-family: "Akira";
    font-size: 10rem;
    line-height: 7.5rem;
    text-transform: uppercase;
    white-space: nowrap;
}

.subheader{
    font-family: "Akira";
    font-size: 2rem;
    line-height: 3rem;
    text-transform: uppercase;
    white-space: nowrap;
}

@media only screen and (max-width: 960px) {
    .headertitel{
        font-size: 2.3rem;
        line-height: 2rem;
    }
    .headerback{
        font-size: 5rem;
    }
}




/* LANDING PAGE */

.landing{
    overflow-x: hidden;
    display: flex;
    flex-wrap: wrap;
    height: 100vh;
    width: 100vw;
}

.landingtitel{
    align-self: center;
    margin-left: 3rem;
}

.landingtitel>.naam{
    font-family: "Akira";
    font-size: 8rem;
    line-height: 6rem;
    text-transform: uppercase;
    white-space: nowrap;
}

.landingtitel>.sub{
    font-family: "Akira";
    font-size: 5rem;
    line-height: 4rem;
    text-transform: uppercase;
    white-space: nowrap;
}

@media only screen and (max-width: 1280px) {
    .landingtitel>.naam{
        font-size: 5rem;
        line-height: 4rem;
    }
    
    .landingtitel>.sub{
        font-size: 3rem;
        line-height: 2.5rem;
    }
}

@media only screen and (max-width: 960px) {
    .landingtitel>.naam{
        font-size: 2.2rem;
        line-height: 1.8rem;
    }
    
    .landingtitel>.sub{
        font-size: 1.8rem;
        line-height: 1.5rem;
    }
}


.scrolldown{
    color: var(--accent1);
    text-transform: uppercase;
    position: absolute;
    width: 100%;
    margin-bottom: 2rem;
    align-self: end;
    text-align: center;
    justify-self: center;
    opacity: 50%;
}


.backdroptext{
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
    width: 100vw;
    overflow-x: hidden;
    z-index: -1;
    position: absolute;
    font-size: 30rem;
    line-height: 21rem;
    align-self: center;
    opacity: 25%;
}
.backdroptext>div{
    font-family: "Akira";
}

.backtextline1{
    animation: moveright 60s linear infinite;
}

.backtextline2{
    animation: moveright 60s linear infinite reverse;
}

@keyframes moveright{
    from{transform: translateX(-25%);}
    to {transform: translateX(-75%);}
}




/* SHOWREEL */

.showreel{
    width: 50%;
    height: auto;
    aspect-ratio: 16/9;
}

@media only screen and (max-width: 960px) {
    .showreel{
        width: 75%;
    }
}





/* PORTFOLIO GRID */

.projects{
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.wrapper{
    width: 75vw;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-flow: dense;
}

@media only screen and (max-width: 1280px) {
    .wrapper{
        gap: 0.5rem;
        margin-top: 3rem;
        width: 85vw;
        grid-template-columns: repeat(4, 1fr);
    }
}

@media only screen and (max-width: 960px) {
    .wrapper{
        gap: 0.5rem;
        margin-top: 3rem;
        width: 85vw;
        grid-template-columns: repeat(2, 1fr);
    }
}

.single{
    grid-column: span 1;
    grid-row: span 1;
}

.wide{
    grid-column: span 2;
    grid-row: span 1;
}

.tall{
    grid-column: span 1;
    grid-row: span 2;
}

.image-container{
    overflow: hidden;
    position: relative;
    border-radius: 0px;
    border: 1px solid rgba(0, 0, 0, 0);
    transition: all 0.5s ease;
}

.item-image{
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: all 0.5s ease;
}


/* GRID INFORMATIE */

.informatie{
    overflow-x: hidden;
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    justify-items: center;
    align-content: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    transition: all 0.5s ease 0.2s;
}

.infotitel{
    font-family: "Akira";
    text-align: center;
    font-size: 1.3rem;
    opacity: 0%;
    transform: translate(0%, -200%);
    line-height: 1rem;
    text-transform: uppercase;
    white-space: nowrap;

    transition: all 0.5s ease 0s;
    flex: 100%;
}

.infosub{
    font-family: "Poppins";
    font-weight: 800;
    font-size: .7rem;
    opacity: 0%;
    transform: translate(0%, 200%);
    text-transform: uppercase;
    white-space: nowrap;
    color: var(--accent1);

    transition: all 0.5s ease 0.1s;
    flex: 100%;
}


/* GRID HOVER */

.image-container:hover .infotitel{
    opacity: 100%;
    transform: translate(0%, 0%);

    transition: all 0.5s ease 0s;
}

.image-container:hover .infosub{
    opacity: 100%;
    transform: translate(0%, 0%);

    transition: all 0.5s ease 0.1s;
}

.image-container:hover .informatie{
    background-color: rgba(0, 0, 0, 0.75);
    transition: all 0.5s ease 0s;
}

.image-container:hover{
    border: 1px solid var(--accent1);
    transition: all 0.5s ease 0s;
}




/* PORTFOLIO ITEMS */

.showcaseheader{
    margin-top: 5rem;
}

.showcasecopy{
    justify-self: center;
    width: 50%;
}

.highlights{
    margin-top: 2rem;
}

.showcasewrapper{
    margin-top: 2rem;
    width: 50%;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-flow: dense;
}

@media only screen and (max-width: 960px) {
    .showcasecopy{
        width: 80%;
    }

    .showcasewrapper{
        gap: 0.5rem;
        margin-top: 2rem;
        width: 80%;
        grid-template-columns: repeat(2, 1fr);
    }
}




/* ABOUT ME SECTION */

.aboutme{
    display: flex;
    flex-wrap: wrap;
    justify-items: center;
    width: 100vw;
}

.aboutmepicture{
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: right;
    flex: 50%;
    padding-right: 2rem;
    margin-bottom: 0rem;
}

.aboutmepicture>img{
    width: 40%;
    height: 100%;
}

.aboutmebeschrijving{
    display: flex;
    justify-content: left;
    flex: 50%;
    text-align: left;
}
.aboutmebeschrijving>div{
    width: 50%;
}

.skillicon{
    width: 3rem;
    margin: 0.5rem;
}
.iconstotaal{
    margin-bottom: 5rem;
}

@media only screen and (max-width: 1280px) {
    .aboutmepicture{
        justify-content: center;
        flex: 40%;
        padding-right: 0rem;
        margin-bottom: 2rem;
    }

    .aboutmebeschrijving{
        flex: 100%;
        text-align: center;
        justify-content: center;
        margin-bottom: 2rem;
    }
    .aboutmebeschrijving>div{
        width: 70%;
    }
}