@charset "UTF-8";
/* CSS Document */


/* FONTS
----------------------------------------------*/
html {
    font-family: neue-haas-grotesk-display, sans-serif;
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    font-display: auto;
    }

.fontSize-S {
    font-size: 1rem;
	word-spacing: 2.5px;
    }

.fontSize-M {
    font-size: 2rem;
    line-height: 2.1rem;
    word-spacing: 0.2rem;
    }

.fontSize-L {
    font-size: 4rem;
    line-height: 3.8rem;
    }

.fontSize-XL {
    font-size: 7rem;
    line-height: 6.2rem;
    letter-spacing: -0.15rem;
    word-spacing: 1.3rem;
    }

.uppercase {text-transform: uppercase}

.lightTxt {color: var(--primary)}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.5s;
    }

a:hover {
    color: var(--accent);
    }



/* GENERAL
----------------------------------------------*/
:root {
	--primary: white;
    --secondary: black;
    --accent: #fb4a04;
    }

body {background: var(--primary)}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: inherit;
    font-weight: inherit;
    }

.marginTop-S {margin-top: 5vh}
.marginTop-L {margin-top: 10vh}
.marginTop-M {margin-top: 20vh}
.marginTop-XL {margin-top: 30vh}





/* HEADER
----------------------------------------------*/

header {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 20%;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: center;
    align-items: center;
    background: var(--secondary);
    color: var(--primary);
    }


/* MAIN
----------------------------------------------*/

main {
    width: 80%;
    margin-left: auto;
    padding: 15px;
    }

.mobilelogo {
	fill: var(--secondary);
	}

#info {padding: 15px 0px 0px 5px;}
#info:hover {
	color: var(--accent);
	cursor: pointer;
	}

figure {
    margin-bottom: 15px;
    position: relative;
    }

figure:hover {cursor: pointer}

figure video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    }

figure video:hover {
    filter: grayscale(1);
    }

figcaption {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
	}	

figcaption:hover {
	color: var(--accent);
	}

footer {
    display: flex;
    justify-content: space-between;
    }





/* OVERLAYS
----------------------------------------------*/

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow-y: scroll;
    display: grid;
    grid-template-columns: 50% 50%;
    padding: 5vh;
    background: var(--secondary);
    z-index: 100;
    }

.closeOverlay {
    fill: none;
    stroke: var(--primary);
    transition: transform 1s;
	}

.svgStyle {
    fill: inherit;
    stroke: inherit;
    stroke-width: 4;
    stroke-miterlimit: 10;
    }

.logo {
	display: block;
	fill: var(--primary);
	}

.closeOverlay:hover{
    stroke: var(--accent);
    transform: rotate(180deg) scale(0.75);
    cursor: pointer;
    }

#contact {
    display: grid;
    grid-template-columns: 50% 50%;
    border-top: 1px solid;
    padding-top: 15px
    }





/* BREAKPOINTS
----------------------------------------------*/
@media screen and (min-width: 901px) {
	.hideDesktop {display: none;}
	}

@media screen and (max-width: 900px){
	
	.hideMobile {display: none;}
    
    .fontSize-S {
        font-size: 1rem;
        }

    .fontSize-M {
        font-size: 1rem;
        line-height: 1rem;
        word-spacing: 0.2rem;
        }

    .fontSize-L {
        font-size: 1rem;
        line-height: 1rem;
        }

    .fontSize-XL {
        font-size: 3rem;
        line-height: 2.6rem;
        letter-spacing: -0.15rem;
        word-spacing: 0.8rem;
        }
    
    .verticalTxt {
        transform: rotate(0deg);
        writing-mode: initial;
        -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
        text-orientation: initial;
        }
    
    .marginTop-XL {margin-top: 60px;}

    .overlay {
        display: block;
        padding: 15px;
        }
    
    .overlay > div {margin-top: 30px}
    
    #contact {
        display: block;
        }
    
    #contact div:last-of-type {margin-top: 15px}
    
    main {
        width: 100%;
        margin-left: none;
		padding: 15px 5px;
        }
	
	h1 {margin-top: 44vh}
    
    figure {height: 56.25vw}
    
    figure video {
        border-radius: 8px;
        filter: none;
        }
    
    footer {
        display: block;
        }
    
    
}