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

@font-face {
    font-family: 'RobotoThin';
    src: url('../fonts/Roboto/Roboto-Thin.ttf');
}
@font-face {
    font-family: 'RobotoRegular';
    src: url('../fonts/Roboto/Roboto-Regular.ttf');
}
@font-face {
    font-family: 'RobotoMedium';
    src: url('../fonts/Roboto/Roboto-Medium.ttf');
}
@font-face {
    font-family: 'RobotoBold';
    src: url('../fonts/Roboto/Roboto-Bold.ttf');
}

html, body {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	font-family: 'RobotoBold';
    font-size: 56px;
	width: 100vw;
    color: black;
    background-color: white;
}
html {
    overflow-y: scroll;
    background-color: white;
}
p {
	margin: 0;
}

#view-container {
	display: flex;
    flex-direction: column;
	width: 100vw;
	transition: all .25s ease;
    background-color: white;
}

.view {
	position: relative;
	display: none;
    background-color: white;
	width: 100vw;
    box-sizing: border-box;
}

/* Global View Properties */

.title-text {
	display: inline-block;
	font-family: 'RobotoBold';
	font-size: 24px;
}
@media (min-width: 376px) { .title-text { font-size: 40px; } }
@media (min-width: 768px) { .title-text { font-size: 48px; } }
@media (min-width: 1024px) { .title-text { font-size: 60px; } }

.primary-text {
	display: inline-block;
	font-family: 'RobotoBold';
	font-size: 16px;
    line-height: 32px;
}
@media (min-width: 768px) { .primary-text { font-size: 28px; } }
@media (min-width: 1024px) { .primary-text { font-size: 32px; } }

.body-text {
	display: inline-block;
	font-family: 'RobotoRegular';
	font-size: 16px;
	line-height: 34px;
}
@media (max-width: 768px) { #work-detail-title { font-size: 16px; } }
@media (min-width: 768px) { #work-detail-title { font-size: 20px; } }
@media (min-width: 1024px) { #work-detail-title { font-size: 24px; } }
@media (max-height: 500px) { #work-detail-title { font-size: 16px; } }

/* Foreground */

#foreground-container {
	position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    z-index: 999;
}
#foreground-container.active {
    pointer-events: auto;
}
#foreground-logger {
	display: none;
	color: white;
	font-size: 40px;
}

/* Main Menu */

#main-menu-container {
	position: fixed;
    top: 0;
    left: 0;
	width: 100vw;
	height: var(--vh);
	pointer-events: none;
}

#main-home-button {
	position: absolute;
	top: 20px;
	left: 35px;
	width: 30px;
	height: 30px;
	background-color: white;
	mask-image: url(../assets/images/icon_home.png);
	mask-size: contain;
	cursor: pointer;
	pointer-events: all;
}
body.home #main-home-button {
	display: none;
}
#main-home-button.dark,
body.work-list #main-home-button,
body.work-detail #main-home-button,
body.publications #main-home-button,
#main-menu-container.show #main-home-button {
	background-color: black;
}

#main-menu-button {
	position: absolute;
	top: 20px;
	right: 35px;
	width: 30px;
	height: 30px;
	pointer-events: auto;
	cursor: pointer;
	--menu-button-white: repeating-linear-gradient(
		180deg,
		white,
		white 5px,
		rgba(0,0,0,0) 5px,
		rgba(0,0,0,0) 10px
	);
	--menu-button-black: repeating-linear-gradient(
		180deg,
		black,
		black 5px,
		rgba(0,0,0,0) 5px,
		rgba(0,0,0,0) 10px
	);
	background: var(--menu-button-white);
}
#main-menu-button.dark,
body.work-list #main-menu-button,
body.work-detail #main-menu-button,
body.publications #main-menu-button,
#main-menu-container.show #main-menu-button {
	background: var(--menu-button-black);
}

#main-menu-scrim {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.7);
	opacity: 0;
	pointer-events: none;
	transition: all .5s ease;
	cursor: pointer;
}
#main-menu-container.show #main-menu-scrim {
	opacity: 1;
	pointer-events: auto;
}

#main-menu {
	position: absolute;
	left: 100vw;
	height: 100vh;
	background-color: white;
	transition: all .5s ease;
	pointer-events: auto;
}

#main-menu-bar {
	position: fixed;
	width: 100vw;
	height: 70px;
	left: 0;
	top: 0;
	background-color: white;
    box-shadow: 0 0 8px 4px rgba(0, 0, 0, .25);
}
body.home #main-menu-bar {
	display: none;
}

#main-menu-title {
	position: fixed;
	width: 100vw;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	font-family: 'RobotoBold';
	color: black;
}
body.home #main-menu-title {
	display: none;
}

@media (orientation: landscape) {
	#main-menu { width: 50vw; }
	#main-menu-container.show #main-menu { left: 50vw }
}
@media (orientation: portrait) {
	#main-menu { width: 70vw; }
	#main-menu-container.show #main-menu { left: 30vw }

	#main-home-button {
		top: 5vw;
		left: 5vw;
	}

	#main-menu-button {
		top: 5vw;
		right: 5vw;
	}

	#main-menu-title {
		left: 50vw;
		transform: translateX(-50%);
		max-width: calc(80vw - 60px);
		font-size: 24px;
		line-height: 16px;
		text-align: center;
	}
	body.work-detail #main-menu-title {
		font-size: 14px;
	}

	#main-menu-bar {
		height: calc(10vw + 30px);
	}
}

#main-menu-item-container {
	position: absolute;
	left: 25%;
	top: 50%;
	transform: translateY(-50%);
}

.main-menu-item {
	display: inline-block;
	padding-bottom: 6px;
	border-bottom: 4px solid white;
    font-family: 'RobotoBold';
	cursor: pointer;
}
@media (max-width: 768px) {
	.main-menu-item {
		font-size: 28px;
		height: 28px;
		margin-bottom: 14px;
	}
}
@media (min-width: 768px) {
	.main-menu-item {
		font-size: 38px;
		height: 38px;
		margin-bottom: 24px;
	}
}
@media (min-width: 1024px) {
	.main-menu-item {
		font-size: 48px;
		height: 48px;
		margin-bottom: 34px;
	}
}
@media (max-height: 500px) {
	.main-menu-item {
		font-size: 28px;
		height: 28px;
		margin-bottom: 14px;
	}
}
.main-menu-item:hover {
	border-bottom: 4px solid black;
}

/* Main Content */

body.home #home-view,
body.work-list #work-list-view,
body.work-detail #work-detail-view,
body.publications #publications-view,
body.experiments #experiments-view,
body.music #music-view {
    display: flex;
    flex-direction: column;
}


body.home #main-menu-item-home {
	border-bottom: 4px solid black;
}
body.about #main-menu-item-about {
	border-bottom: 4px solid black;
}
body.work-list #main-menu-item-work {
	border-bottom: 4px solid black;
}
body.work-detail #main-menu-item-work {
	border-bottom: 4px solid black;
}
body.publication #main-menu-item-publication {
	border-bottom: 4px solid black;
}
body.experiments #main-menu-item-experiments {
	border-bottom: 4px solid black;
}
body.music #main-menu-item-music {
	border-bottom: 4px solid black;
}

#main-footer-container {
    position: relative;
    width: 100vw;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 32px;
	background: black;
	color: white;
    padding: 10vw 0;
}

#contact-email-anchor,
#contact-email-address {
	display: flex;
	align-items: center;
	gap: 8px;
    font-size: 24px;
    font-family: 'RobotoRegular';
	cursor: pointer;
	text-decoration: none;
	color: white;
}

#contact-email-anchor {
	display: none;
	font-size: 16px;
}

#email-copied-notification {
	position: absolute;
    left: 50%;
    bottom: 70%;
    padding: 8px 12px;
    background: rgb(100 255 100 / 50%);
    color: white;
    font-size: 16px;
    transform: translateX(-50%);
    opacity: 0;
    transition: all .5s ease;
    height: fit-content;
    border-radius: 8px;
	pointer-events: none;
}
#email-copied-notification.show {
	opacity: 1;
}

#copy-icon {
	height: 24px;
	width: calc(24px * 80 / 85);
	mask-image: url(../assets/images/icon_copy.png);
	mask-size: cover;
	background-color: white;
}

#contact-buttons {
	display: flex;
	align-items: center;
	gap: 24px;
}

.contact a {
	display: flex;
	align-items: center;
	font-family: 'RobotoRegular';
	font-size: 24px;
	text-decoration: none;
	color: white;
}

.contact img {
    width: 48px;
    height: 48px;
	object-fit: contain;
}

#contact-divider {
	height: 2px;
    width: 40px;
    background-color: white;
}

@media (orientation: portrait) {
	#contact-buttons {
		flex-direction: column;
	}

	#contact-email-anchor {
		display: block;
	}

	#email-copied-notification {
		font-size: 12px;
	}

	#contact-email-address {
		display: none;
	}
}

/* UNDER CONSTRUCTION */

#under-construction {
 	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: var(--vh);
	z-index: 1000;
}
body.under-construction #under-construction {
	display: block;
}

#under-construction-container {
	position: absolute;
	width: 100vw;
	height: var(--vh);
	overflow: scroll;
}

#under-construction-endless-background {
	display: block;
	width: 100vw;
	height: calc(var(--endless-height-multiple)*var(--vh));
	background: linear-gradient(#ffffff, #66d6ff, #0d6ab9, #0017ef);
}

#under-construction-title {
	position: absolute;
	width: 80vw;
	left: 10vw;
	top: 50vh;
	transform: translateY(-50%);
	text-align: center;
	font-size: 2em;
	pointer-events: none;
}
