body {
	background-color: white;
	color: black;
	font-family: "Geologica", sans-serif;
	padding: 0;
	margin: 0;
}

a{
	text-decoration: none;
}

.footer-content a,
.footer-content .imprint {
	color: black;
	filter: none;
}

.footer-content img {
	filter: brightness(0) saturate(100%);
}

.contact-page-layout {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
	padding: 50px 20px 80px;
	min-height: 100vh;
}

.contact-side-image {
	width: 20vw;
	max-width: 400px;
	height: auto;
	flex-shrink: 1;
	object-fit: contain;
}

.right-image {
	margin-top: 250px;
}

.contact-center-content {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
	max-width: 500px;
	flex-shrink: 0;
}

.contact-envelope {
	width: 240px;
	height: auto;
}

.contact-button {
	display: inline-block;
	background-color: #FFA200;
	color: white;
	padding: 14px 28px;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
	transition: transform 0.2s ease, background-color 0.2s ease;
	margin-top: 20px;
	margin-bottom: 20px;
}

.contact-button:hover {
	transform: scale(1.05);
	background-color: #e68f00;
}

.contact-subtext {
	font-size: 16px;
	max-width: 500px;
	line-height: 1.6;
	text-align: left;
	color: black;
}

.contact-subtext h2 {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 12px;
}

.contact-subtext p {
	font-size: 16px;
	line-height: 1.6;
}

.contact-socials {
	width: 100%;
	max-width: 500px;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 12px;
	margin-right: 30px;
}

.social-link {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 16px;
	color: black;
	transition: 0.2s ease;
}

.social-link:hover {
	transform: scale(1.1);
	color: #FFA200;
	/*filter: brightness(0) saturate(100%) sepia(100%) hue-rotate(-10deg) brightness(105%) contrast(100%);*/
}

.social-link span {
	font-weight: 700;
}

.social-link img {
	height: 30px;
	width: 30px;
	filter: brightness(0) saturate(100%);
	transition: transform 0.2s ease;
}


@media screen and (max-width: 850px) {
	.contact-page-layout {
		flex-direction: column;
		padding: 60vw 20px 60px;
		gap: 40px;
	}

	.left-image {
		width: 70%;
		max-width: 90vw;
		margin: 0 auto;
		display: block;
		rotate: 30deg;
	}

	.contact-center-content {
		align-items: center;
		text-align: center;
	}

	.contact-envelope {
		width: 40vw;
		max-width: 200px;
		height: auto;
	}

	.contact-button {
		margin-top: 20px;
		margin-bottom: 0;
	}

	.mobile-hero-wrapper {
		position: relative;
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		margin-top: 30px;
		margin-bottom: 30px;
	}

	.say-hello-img {
		position: absolute;
		width: 60vw;
		rotate: 30deg;
		left: 15vw;
	}

	.mobile-envelope-overlay {
		position: absolute;
		top: 45vw;
		left: 60vw;
		width: 30vw;
		max-width: 120px;
		transform: translate(-50%, -50%);
	}

	.contact-socials {
		align-items: center;
		margin-right: 0;
		width: auto;
	}

	.social-link {
		flex-direction: row;
		justify-content: center;
		align-items: center;
		width: auto;
	}

	.right-image {
		width: 50vw;
		transform: rotate(80deg);
		margin-top: -20px;
		margin-bottom: -50px;
	}
}

.desktop-only {
	display: block;
}

.mobile-only {
	display: none;
}

@media screen and (max-width: 850px) {
	.desktop-only {
		display: none;
	}
	.mobile-only {
		display: block;
	}
}
