/* ----------------------- --------------------- ----------------------- --------------------- */
/*  GLOBALS */

main {
	background-color: #F8F8F8;
	background-image: url(../content/paper_bg.jpg);

}



/* Intro Scroll and Bio */


#intro {
	padding: 0.5%;
}

#logo-bg-wrap {
	aspect-ratio: 1;
	position: sticky;
	top: 0.5%;
	width: 100%;
	z-index: 1;
	mix-blend-mode: difference;
	pointer-events: none;
}

#logo-bg {
	margin: 0;
	width: 100%;
	aspect-ratio: 1;
	background-color: white;
	border-radius: var(--v-rad);
}

#big-logo {
	margin: -100% auto 0 0;
	background-image: url(../content/logo_dark.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	width: 100%;
	aspect-ratio: 1;
}

#scrolldown {
	width: 10%;
	aspect-ratio: 1;
	display: block;
	margin: 12% auto;
	position: relative;
	z-index: 2;
}

.bio {
	width: 90%;
	padding: 20% 5%;
	font-family: var(--f-head);
	font-weight: 100;
	color: black;
	word-break: break-all;
	display: block;
}

.bio span {
	font-family: var(--f-body);
	color: var(--c-mainIn);
	font-weight: 700;
}

.portrait {
	width: 100%;
	aspect-ratio: 1;
	background-size: cover;
	background-position: top left;
	border-radius: var(--v-rad);
	margin-top: 10%;
}

#bio-1 {
	font-size: min(84px, 12vw);
}

#thatsme-1 {
	background-image: url(../content/portrait-1.jpg);
}

#bio-2 {
	font-size: min(84px, 12vw);

}

#thatsme-2 {
	background-image: url(../content/portrait-anim.jpg);
}

#bio-3 {
	display: block;
	position: sticky;
	z-index: 0;
	top: 0;
	height: 100vh;
	padding: 10% 5% 0 5%;
	background-image: url(../content/paper_bg.jpg);
}



#bio-3 a {
	text-align: center;
	margin: 0 auto;
}

/* ----------------------- --------------------- ----------------------- --------------------- */
/* Projects overview*/

#projekte {
	background-color: var(--c-main);
	position: relative;
	z-index: 5;
	width: 100%;
}

#p-head {
	width: 90%;
	color: var(--c-ut-dark);
	height: calc(30vh - 1vw);
	padding: 10% 5% 0 5%;
}

.projekte-wrap {
	display: grid;
	flex-direction: column;
	width: 99%;
	padding: 0.5%;
	gap: min(0.5vw, 4px);
}

.big-col {
	min-height: 70vh;
	width: 90%;

	padding: 0 5% 0 5%;
	border-radius: var(--v-rad);
	color: var(--c-main);

	background-color: var(--c-ut-dark);

	overflow: hidden;
	display: block;

	transition-delay: .1s;
	-webkit-transition: box-shadow .4s ease-out;
	-ms-transition: box-shadow .4s ease-out;
	transition: box-shadow .4s ease-out;
}

.big-col p {
	opacity: 0.3;
	transition-delay: .1s;
	-webkit-transition: opacity .4s ease-out;
	-ms-transition: opacity .4s ease-out;
	transition: opacity .4s ease-out;
}

.sichtbar p,
.sichtbar p,
.sichtbar p,
.sichtbar p {
	opacity: 1;
}

.projekte-wrap a {
	margin: 0;
}

.col-img {
	position: absolute;
	left: 0.5%;
	min-height: 70vh;
	width: 99%;
	border-radius: var(--v-rad);

	background-size: cover;
	background-repeat: no-repeat;
	background-position: bottom;

	opacity: 0.9;
	transition-delay: .1s;
	-webkit-transition: opacity .4s ease-out;
	-ms-transition: opacity .4s ease-out;
	transition: opacity .4s ease-out;
}

.sichtbar .col-img {
	opacity: 0.1;
}

#mas1 {
	background-image: url(../content/conv_freizeit.jpeg);
}

#mas2 {
	background-image: url(../content/conv_freizeit.jpeg);
}

#mas3 {
	background-image: url(../content/conv_freizeit.jpeg);
}

#mas4 {
	background-image: url(../content/conv_freizeit.jpeg);
}

.sichtbar.big-col {
	-moz-box-shadow: inset 0 0 10px rgba(40, 140, 245, 0.5);
	-webkit-box-shadow: inset 0 0 10px rgba(40, 140, 245, 0.5);
	box-shadow: inset 0 0 10px rgba(40, 140, 245, 0.5);
}


#mas5 {
	height: calc(30vh - 1vw);
	padding: 10% 5% 10% 5%;
	border-radius: var(--v-rad);
	text-align: right;
}


/* ----------------------- --------------------- ----------------------- --------------------- */
/* Contact and Footer */

footer {
	height: 100vh;
	background-image: url(../content/paper_bg.jpg);
}

#contact {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%
}

#contact-wrap {
	width: 90%;

	padding: 10% 5% 0 5%;
}


#contact-wrap p {
	line-height: 1.2;
}

#dont:hover {
	cursor: pointer;
}

#imp-wrap {
	padding: 0 5%;
}

#imp-wrap p {
	text-align: right;
	color: var(--c-ut-dark);
	font-size: small;
}

#hint {
	display: none;
}



























@media screen and (min-width: 700px) {


	/* ----------------------- --------------------- ----------------------- --------------------- */
	/* Intro Scroll and Bio */


	.big-col:hover {
		-moz-box-shadow: inset 0 0 10px rgba(40, 140, 245, 0.5);
		-webkit-box-shadow: inset 0 0 10px rgba(40, 140, 245, 0.5);
		box-shadow: inset 0 0 10px rgba(40, 140, 245, 0.5);
	}

	.big-col:hover p {
		opacity: 1;
	}

	.big-col:hover .col-img {
		opacity: 0.1;
	}

}




@media screen and (min-width: 1250px) {

	#hint {
		display: block;
		position: fixed;
		top: 42vh;
		left: calc(1000px + ((100vw - 1250px) / 2));
		width: 230px;
		padding: 0 10px;
		color: white;
		z-index: -1;
		font-size: 16px;
		line-height: 1.3;
	}

}
