*{
	margin: 0;
	padding: 0;
	font-family: monospace;
	box-sizing: border-box;
	list-style: none;
}

html{
	scroll-behavior: smooth;
	scroll-snap-type: y mandatory;
}

body{
	min-height: 100vh;
	--color1: #FFF;
	--color2: #181818;
	--color3: #FAF86C;
}

/*NAVBAR*/

.nav-bar{
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	list-style: none;
	position: fixed;
	background-color: var(--color2);
	padding: 12px 20px;
	z-index: 100;
	animation: fade-down 0.5s;
}

.logo img {width: 40px;
	@supports (animation-timeline: view()) {
	opacity: 0;
	animation: appear linear forwards;
	animation-timeline: view();
	animation-range-start: 100vh;
	animation-range-end: 120vh;
	}
}
.menu {display: flex;}
.menu li {padding-left: 30px;}
.menu li a {
	display: inline-block;
	text-decoration: none;
	color: var(--color1);
	text-align: center;
	transition: 0.15s ease-in-out;
	position: relative;
	text-transform: uppercase;
}
.menu li a::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background-color: var(--color1);
	transition: 0.15s ease-in-out;
}
.menu li a:hover:after {
	width: 100%;
	background-color: var(--color3);
}

.open-menu , .close-menu {
	position: absolute;
	color: var(--color1);
	cursor: pointer;
	font-size: 1.5rem;
	display: none;
}
.open-menu {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
.open-menu:hover{
	opacity: .75;
}
.close-menu {
    top: 20px;
    right: 20px;
}
.close-menu:hover{
	opacity: .75;
}
.highlight{
	color: var(--color3);
}
#check {display: none;}

/*KEYFRAMES*/
@keyframes fade-down {
	0% {
		opacity: 0;
		transform: translateY(-30px);
	} 100% {
		opacity: 1;
		transform: translateY(0px);
	}
}

@keyframes fade-in {
	0% {
		opacity: 0;
	} 100% {
		opacity: 1;
	}
}

@keyframes appear{
	100%{
		opacity: 1;
	}
}

/*SLIDES*/

.container{
	width: 100%;
	height: 100vh;
	scroll-snap-align: start;
	scroll-snap-stop: always;
}

.slides{
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: start;
	gap: 50px;
	color: #fff;
}

#home{
	background: url("slide-bkgrnd1.webp") no-repeat;
	background-size: cover;
	background-position: center;
	animation: fade-in 0.5s;	
}

.box{
	height: 100vh;
	width: 33%;
	display: flex;
	align-items: center;
}

.logocube{
	width: 100%;
	min-height: 150px;
	min-width: 150px;
	animation: fade-in 0.5s;	
}

#visuals{
	background: url("slide-bkgrnd2.webp") no-repeat;
	background-size: cover;
	background-position: center;	
}

h1{
	font-size: 130px;
	font-weight: 50;
	text-transform: uppercase;
	margin-top: 115px;
	margin-left: 0px;
	letter-spacing: 3px;
	line-height: 0.85em;
	writing-mode: vertical-rl;
	rotate: 180deg;
	mix-blend-mode: difference;
	z-index: 20;
}

.boxside{
	height: 100vh;
	width: 100px;
}

.boxmid{
	height: 100vh;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-top: 65px;
	z-index: 50;
}

#tour{
	background: url("slide-bkgrnd3.webp") no-repeat;
	background-size: cover;
	background-position: center;	
}

.boxtour{
	height: 70vh;
	overflow: scroll;
	overflow-x: hidden;
}

h2{
	text-align: center;
}

#mailinglist{
	background: url("slide-bkgrnd4.webp") no-repeat;
	background-size: cover;
	background-position: center;	
}

#contact{
	background: url("slide-bkgrnd4.webp") no-repeat;
	background-size: cover;
	background-position: center;	
}


.info{
	margin-bottom:25px;
}

.info-btn{
	color: var(--color1);
	background: var(--color2);
	text-decoration: none;
	text-transform: uppercase;
	text-align: center;
	font-weight: 700;
	letter-spacing: 2px;
	padding: 5px 10px;
	border-radius: 5px;
	transition: 0.3s;
	transition-property: background;
}

.info-btn:hover{
	background: var(--color3)
}

.media-btn:hover{
	opacity: .5;
}

.media-icons a:not(:last-child){
	margin-right: 30px;
}

.about{
	color: var(--color2);
	background-color: rgba(255,255,255, 0.75);
	border-style: solid;
	border-color: var(--color2);
	text-align: center;
	padding: 15px 10px;
	border-radius: 5px;
	max-width: 500px;
}

h3{
	color: var(--color2);
}

h4{
	margin-top: 100px;
	color: var(--color2);
}

/*Horizontal Gallery*/
.gallery {
	position: relative;
	box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.6);
	width: 80%;
}

.gallery-holder {
	display: flex;
	overflow-x: hidden;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	border-radius: 1rem;
	-webkit-overflow-scrolling: touch;
}

.gallery-holder::-webkit-scrollbar {
	display: none; 
}

.player {
	flex: 1 0 100%;
	aspect-ratio: 16/9;
	scroll-snap-align: start; 
	z-index: 10;
}

.gallery-button{
	background-color: var(--color1);
	width: 15px;
	height: 15px;
	border-radius: 15px;
	display: inline-block;
	margin: .3rem;
	margin-top: 10px;
}

.gallery-nav a:hover{
	background-color: var(--color3);
}

/*Responsive Elements*/
@media(max-width: 800px){
	.gallery {
		max-width: 500px;
	}
	.player {
		aspect-ratio: 1/1;
	}
}

@media(max-width: 610px){
    .menu {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 87%;
        height: 100vh;
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 100;
        background-color: var(--color2);
        transition: all 0.2s ease-in-out;
    }
    .menu li {margin-top: 40px;}
    .menu li a {padding: 10px;}
    .open-menu , .close-menu {display: block;}
    #check:checked ~ .menu {right: 0;}

	#home{
		background: url("slide-bkgrnd1-mobile.webp") no-repeat;
		background-size: cover;
		background-position: center;
		animation: fade-in 0.5s;	
	}
	#visuals{
	background: url("slide-bkgrnd2-mobile.webp") no-repeat;
	background-size: cover;
	background-position: center;	
	}
	#tour{
	background: url("slide-bkgrnd3-mobile.webp") no-repeat;
	background-size: cover;
	background-position: center;	
	}
	#contact{
	background: url("slide-bkgrnd4-mobile.webp") no-repeat;
	background-size: cover;
	background-position: center;	
	}

	.boxside{
		height: 100vh;
		width: 10px;
	}

	.gallery {
		max-width: 350px;
	}
	.player {
		aspect-ratio: 9/16;
	}

    h1{
	font-size: 50px;
	text-transform: uppercase;
	margin-top: 115px;
	margin-left: 5px;
	letter-spacing: 3px;
	writing-mode: vertical-rl;
	rotate: 180deg;
	}
}