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

@import url("/info/css/style.css");


body {
	opacity: 0;
	animation: 300ms 100ms cubic-bezier(0.55, 0.01, 1, 1) forwards whole-fadein;
}

	@keyframes whole-fadein {
		0% {
			opacity: 0;
		}
		100% {
			opacity: 1;
		}
	}

#topImage {
	background: url("../images/top-image.jpg") no-repeat center 53%;
	background-size: cover;
	height: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
	opacity: 0.5;
	animation: 
		800ms 400ms cubic-bezier(.27, .01, .13, 1) forwards openingBoxHeight, 
		1300ms 1000ms ease-in forwards openingBoxOpacity;
}

#topImage::before,
#topImage::after {
	content: "";
	position: absolute;
	height: 100%;
	top: 0;
	width: 50%;
	background: #fff;
	z-index: 1;
	animation: 750ms 1000ms ease-in forwards openingShutter;
	will-change: transform;
}

#topImage::before {
	left: 0;
	z-index: 3;
}

#topImage::after {
	right: 0;
	z-index: 3;
}

	@keyframes openingShutter {
		0% {
			width: 50%;
		}
		100% {
			width: 0;
		}
	}

	@keyframes openingBoxHeight {
		0% {
			height: 0;
		}
		100% {
			/*height: 60rem;*/
			height: 50vw;
			max-height: 60rem;
		}
	}

	@keyframes openingBoxOpacity {
		0% {
			opacity: 0.5;
		}
		100% {
			opacity: 1;
		}
	}

.headline {
	margin: 0.2em 0;
}

#topImage div {
	width: 100%;
}

#topImage h1 {
	font-size: clamp(1.7rem, 2vw, 3rem);
	line-height: 1.2;
	color: #fff;
	font-weight: 300;
	margin: 0;
	padding: 0 1.6em;
	position: relative;
	z-index: 2;
}

#topImage h1 strong {
	display: block;
	font-size: clamp(2.8rem, 3.4vw, 4.9rem);
	font-weight: 700;
	letter-spacing: 0.2em;
	margin-bottom: 0.1em;
}

#topImage h1 br {
	display: none;
}

@media screen and (max-width: 1000px) {

	#topImage h1 strong {
		letter-spacing: 0.1em;
	}
}

#topImage .headline {
	margin: 0.4em 0 0;
	position: relative;
	z-index: 2;
}

#topImage .headline a {
	display: block;
	margin: 0 auto;
	padding: 0.2em 0;
	width: 30%;
	min-width: 10em;
	background: rgba(255, 255, 255, 0.62);
	transition: background ease-out 0.5s;
}

#topImage .headline a:hover {
	opacity: 1;
	background: rgba(255, 255, 255, 0.72);
}

#topImage div::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.24);
	opacity: 0;
	z-index: 1;
	backdrop-filter: none;
	transition: opacity ease-out 0.5s, backdrop-filter ease-out 0.5s;
}

#topImage div:has(a:hover)::after {
	opacity: 1;
	backdrop-filter: blur(0.1vw);
}

#shop .headline a {
	background: url("/shop/images/top-img.jpg") no-repeat 82% center;
}

#event .headline a {
	background: url("../event/images/top-img.jpg") no-repeat 18% center;
}

#contact .headline a {
	background: url("/contact/images/top-img.jpg") no-repeat 82% center;
}

#shop .headline a,
#event .headline a,
#contact .headline a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	aspect-ratio: 24 / 5;
	max-height: 23rem;
	background-size: cover;
	color: #fff;
}

#info {
	margin: clamp(3rem, 6vw, 8rem) 0;
}

#info h2 {
	margin-bottom: 0.5em;
}

#info h2 strong {
	border-bottom: solid 1px #000;
}


@media screen and (max-width: 600px) {

		@keyframes openingBoxHeight {
		0% {
			height: 0;
		}
		100% {
			height: calc(33rem + (66rem - 100vw) / 2);
			max-height: 92vw;
		}
	}
}