@font-face {
	font-family: 'Gerhaus';
	src: url('../fonts/gerhaus.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

html, body {
	height: 100%;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	overflow: hidden;
	font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
	color: #fff;
	background: #000;
}

.bg-video {
	position: fixed;
	top: 50%;
	left: 50%;
	min-width: 100vw;
	min-height: 100vh;
	width: auto;
	height: auto;
	transform: translate(-50%, -50%);
	object-fit: cover;
	z-index: -1;
	background: #000;
}

.content {
	position: relative;
	z-index: 1;
	display: grid;
	align-items: start;
	justify-items: center;
	padding-top: 6vh;
	padding-top: clamp(2vh, 6vh, 10vh);
	min-height: 100vh;
	text-align: center;
	background: rgba(0, 0, 0, 0.25);
}

.content h1 {
	margin: 0 0 0.25rem;
	font-size: clamp(2rem, 4vw + 1rem, 4rem);
}

.content p {
	margin: 0;
	opacity: 0.85;
}

.logo {
	width: min(85vw, 1000px);
	height: auto;
	display: block;
	filter: drop-shadow(0 2px 12px rgba(0,0,0,0.6));
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 3s ease, transform 3s ease;
}

.logo.visible {
	opacity: 1;
	transform: none;
}

.cta-row {
	margin-top: 1vh;
	margin-top: clamp(4px, 0.8vh, 12px);
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 1.5rem;
	grid-gap: 1.5rem;
	gap: clamp(1rem, 4vw, 3rem);
}

.cta-link {
	color: #fb087e;
	text-decoration: none;
	font-weight: 600;
	letter-spacing: 0.5px;
	font-family: 'Gerhaus', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
	font-size: 1.2rem;
	font-size: clamp(1.05rem, 2.2vw, 1.6rem);
	text-shadow: 0 2px 10px rgba(0,0,0,0.5), 0 0 2px rgba(0,0,0,0.6);
	display: inline-block;
	transition: color 180ms ease, transform 180ms ease, text-shadow 180ms ease;
}

.cta-link:visited {
	color: #fb087e;
	text-decoration: none;
}

.cta-link:hover,
.cta-link:focus,
.cta-link:focus-visible {
	color: #ffffff;
	text-decoration: none;
	transform: scale(1.06);
}

.cta-btn {
	text-shadow: 0 1px 6px rgba(0,0,0,0.45), 0 0 1px rgba(0,0,0,0.5);
	font-family: 'Gerhaus', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
	justify-self: center;
	background: #fb087e;
	color: #111;
	text-decoration: none;
	font-weight: 800;
	letter-spacing: 0.5px;
	padding: 1rem 1.75rem;
	font-size: 1.2rem;
	font-size: clamp(1.05rem, 2.2vw, 1.6rem);
	border-radius: 6px;
	box-shadow: 0 4px 16px rgba(0,0,0,0.25);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
	line-height: 1.1;
	transition: background-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.cta-btn:visited {
	color: #111;
	background: #fb087e;
}

.cta-btn:hover,
.cta-btn:focus,
.cta-btn:focus-visible {
	background: #ffffff;
	color: #111;
	transform: scale(1.04);
	filter: none;
	box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

@media (max-width: 600px) {
	.content {
		padding-top: 18vh;
		padding-top: clamp(12vh, 18vh, 24vh);
	}
	.cta-row {
		grid-template-columns: 1fr;
		justify-items: center;
	}
	.cta-link.left,
	.cta-link.right {
		order: 1;
	}
	.cta-btn {
		order: 0;
	}
}

@media (max-aspect-ratio: 3/4) {
	.content {
		padding-top: 18vh;
		padding-top: clamp(12vh, 18vh, 24vh);
	}
}