:root {
	--black: #231f20;
	--gap: 1.5em;
	--eye-size: 35vw;
	--color-pink: #E5A7F4;
	--color-green: #9FEEE9;
	--color-blue: #6FB1FF;
	--color-yellow: #FFF46F; 
	--default-background: var(--color-pink);
}
.about { --default-background: var(--color-green); }
.produktionen { --default-background: var(--color-yellow); }
.kontakt { --default-background: var(--color-blue); }
.impressum { --default-background: var(--color-pink); }

@font-face {
  font-family: "Azaret Mono";
  font-weight: normal;
  font-style: normal;
  src:
	url("fonts/AzeretMono-Variable.woff2") format("woff");
}
@font-face {
  font-family: "IBM Plex Mono";
  font-weight: normal;
  font-style: normal;
  src:
	url("fonts/IBMPLexMono-Regular.woff2") format("woff");
}
@font-face {
  font-family: "IBM Plex Mono";
  font-weight: normal;
  font-style: italic;
  src:
	url("fonts/IBMPLexMono-Italic.woff2") format("woff");
}
@font-face {
  font-family: "IBM Plex Mono";
  font-weight: lighter;
  font-style: normal;
  src:
	url("fonts/IBMPLexMono-Light.woff2") format("woff");
}
@font-face {
  font-family: "IBM Plex Mono";
  font-weight: bold;
  font-style: normal;
  src:
	url("fonts/IBMPLexMono-Bold.woff2") format("woff");
}
@font-face {
  font-family: "FT Scenik";
  font-weight: normal;
  font-style: normal;
  src:
	url("fonts/FTScenik-Regular.woff2") format("woff");
}

@font-face {
  font-family: "FT Scenik";
  font-weight: bold;
  font-style: normal;
  src:
	url("fonts/FTScenik-Super.woff2") format("woff");
}

html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
	margin: 0;
	background: var(--default-background);
	color: var(--black);
	font-family: 'Azaret Mono', monospace;
	font-weight: 200;
}
.home {
	height: 100v;
	display: flex;
	flex-direction: column;
	height: 100vh;
	justify-content: space-between;
}
.intro {
	text-align: center;
	max-width: 50ch;
	margin: 0 auto;
}

main {
	margin: 0 auto;
	max-width: 50rem;
	text-align: center;
	margin-bottom: 10rem;
	padding: var(--gap);
	line-height: 1.4;
	min-height: 35vh;
}
a {
	color: var(--black);
}
main h1 {
	font-family: 'FT Scenik';
	font-weight: bold;
	font-size: 3rem;
}
.eye-container {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: var(--eye-size);
	position: relative;
	margin-bottom: -10vw;
}
.eye-outer,
.eye-inner,
.eye-inner-bound {
	position: absolute;
	border-radius: 100%;
	/* transform: translateX(-50%) translateY(-50%); */
}
.eye-outer {
	width: var(--eye-size);
	height: var(--eye-size);
	background: var(--black);
	transform: scaleY(0.95);
}
.eye-inner {
	width: calc(var(--eye-size) - 1vw);
	height: calc(var(--eye-size) - 1vw);
	background: white;
	transform: scaleY(0.8);
	pointer-events: none;
}
.eye-inner-bound {
	width: calc(var(--eye-size) - 20vw);
	height: calc(var(--eye-size) - 20vw);
	transform: scaleY(0.8);
	pointer-events: none;
}
.eye-pupil {
	width: 3em;
	height: 3em;
	background: var(--black);
	border-radius: 100%;
	z-index: 10;
}

.nav {
	padding: var(--gap);
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: top;
}

.nav-5 > * {
	display: inline-block;
	width: 25%;
}
.nav-5 a:nth-child(3) {
	text-align: center;
}
.nav-5 a:nth-child(4),
.nav-5 a:nth-child(5) {
	text-align: right;
}

.nav-3 > * {
	display: inline-block;
	width: 33.3%;
}
.nav-3 a:nth-child(2) {
	text-align: center;
}
.nav-3 a:nth-child(3) {
	text-align: right;
}

.nav a {
	text-decoration: none;
	text-transform: uppercase;
	color: black;
}

.gobo-logo {
	height: 3em;
	margin-top: -0.2em;
}

.title {
	font-family: 'FT Scenik';
	font-weight: normal;
	font-size: 19.5vw;
	letter-spacing: -0.02em;
	line-height: 0.9;
	text-transform: uppercase;
	margin: 0;
	text-align: center;
	display: block;
}

.hide-on-desktop {
	display: none;
}

@media (max-width: 900px) {
  
  :root {
	  --eye-size: 90vw;
  }
  .hide-on-mobile {
	  display: none !important;
  }
  .hide-on-desktop {
	  display: unset;
  }
  
  .home {
	  justify-content: flex-start;
	  height: auto;
  }
  .nav {
	  display: flex;
	  align-items: center;
	  flex-direction: column;
	  gap: 0.5em;
  }
  .nav a {
	  width: 100%;
	  text-align: center;
  }
  .title {
	  font-size: 18.5vw;
  }
  
  .eye-container {
	  margin: 3rem 0;
  }
  main h1 {
	  font-size: 2rem;
  }
}

@media (min-aspect-ratio: 16/10) {
	.intro {
		display: none;
	} 
}