/* COMMON */

:root {

	--light-beige-color: rgb(252, 244, 234);
	--light-beige-color2: rgb(255, 251, 241);
	--pale-rose-color: #f1e4e6;
	--rose-color: #d4b795;
	--dark-color: #222;

	--halo-filter: drop-shadow(1px 1px 0 black) drop-shadow(0 0 3px #ffffffc0);
	--shadow-filter: drop-shadow(1px 1px 0 white) drop-shadow(0 0 3px #000000c0);

	--temp-border: 0.5px dotted black;
}

body {
	background-color: white;
	color: black;
}

* {
	margin: 0;
	padding: 0;
	/* border: 1px dotted black; */
	box-sizing: border-box;
}

a {
	color: inherit;
	text-decoration: underline;
}

a:hover {
	text-shadow: rgba(0, 0, 0, 0.2) 2px 2px 4px;
}

video {
	display: block;
}

.text_italic {
	font-style: italic;
}

.hidden {
	display: none;
}

.center {
	max-width: 1140px;
	margin-left: auto;
	margin-right: auto;
}

.spacing_h {
	padding-left: 16px;
	padding-right: 16px;
}

.bg_dark {
	background-color: var(--light-beige-color);
}

.bg_yellower {
	background-color: var(--light-beige-color2);
}

.text_center {
	text-align: center;
}

.text_right {
	text-align: right;
}

.header__logo {
	margin-top: 20px;
	margin-left: 15vh;
	width: 400px;
	height: 117px;
	position: relative;
	bottom: -47px;
}

/* INTRO */

.treerium__content,
.intro__content {
	max-width: 1600px;
	margin-left: auto;
	margin-right: auto;
	/* min-height: 363px; */

	display: flex;
	justify-content: center;
	align-items: center;
}

.labubu_content {
	max-width: 1600px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	justify-content: center;

	align-items: center;
}

.labubu__text {
	font-size: 32px;
}

.labubu__left {
	margin-right: 16px;
	/*margin-left: 5%;*/
}

.labubu__right {
	/*margin-right: 5%;*/
	margin-left: 16px;

	padding-top: 16px;
	padding-bottom: 16px;
}


html:has(.treerium__link:hover) .treerium__link {
	text-shadow: rgba(0, 0, 0, 0.2) 2px 2px 4px;
}

html:has(.treerium__link:hover) .treerium__logo {
	border-radius: 16px;
	box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.2);
}

.intro__left {
	width: 34%;
	height: auto;
}

.intro__right {
	width: 66%;
	padding-left: 4%;
	padding-top: 50px;
	padding-bottom: 50px;
}

.intro__title {
	padding-left: 16px;
	padding-top: 8px;
	padding-bottom: 8px;
	border-left: 12px solid var(--rose-color);
	margin-bottom: 70px;

	font-size: 48px;
	font-weight: 900;
	line-height: 1;
	color: var(--dark-color);
	text-transform: uppercase;
}

.intro__title .title_smaller {
	font-size: 32px;
	font-weight: 700;
}

.intro__title .title_colored {
	color: var(--rose-color);
}

.intro__text {
	padding-left: calc(16px + 12px);
	font-size: 24px;
}

.treerium__text {
	font-size: 24px;
}

.treerium__left {
	margin-left: 5%;
	margin-right: 16px;
	padding-top: 50px;
	padding-bottom: 50px;
}

.treerium__right {
	margin-right: 5%;
	margin-left: 16px;
	width: auto;
	height: auto;
}

.treerium__logo {
	max-width: 128px;
	height: auto;
	aspect-ratio: 1;
}



#panorama {
	width: 640px;
	height: 360px;
}

.media__pano {
	width: 640px;
	margin-left: auto;
	margin-right: auto;
}

footer {
	height: 20px;
}

/* MOBILE Hi */

@media (max-width: 768px) {

	/* horiz spacing */

	.spacing_h {
		padding-left: 8px;
		padding-right: 8px;
	}

	/* various */

	header {
		text-align: center;
	}

	.header__logo {
		width: 300px;
		height: 88px;

		position: relative;
		bottom: -37px;
		margin-right: 0;
		margin-left: 0;
	}

	.intro__left {
		width: 10%;
	}

	.intro__right {
		width: auto;
		padding-left: 0;
	}

	.intro__title {
		font-size: 38px;
	}

	.intro__title .title_smaller {
		font-size: 28px;
	}

	#panorama {
		aspect-ratio: 64/36;
		width: 100%;
		height: auto;
	}

	.media__pano {
		width: 100%;
		margin-left: auto;
		margin-right: auto;
	}

	.treerium__text {
		font-size: 16px;
	}

	.labubu__left {
		margin-left: -8px;
		margin-right: 8px;
	}

	.labubu__left video{
		width: 50vw;
		height: auto;
	}

	.labubu__right {
		margin-right: auto;
		margin-left: 8px;
	}

	.labubu__text {
		font-size: 16px;
	}
}