:root {
	--bg: #050505;
	--text: #ffffff;
	--accent: #4d9fff;
	--muted: rgba(255, 255, 255, 0.8);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background: var(--bg);
	font-family: "Poppins", sans-serif;
	overflow: hidden;
	display: grid;
	place-items: center;
}

.hero {
	width: 100vw;
	height: 100vh;
	max-width: 1460px;
	position: relative;
}

.background {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.background img {
	width: 100%;
	height: 100%;
	max-width: 976px;
	max-width: 976px;
	object-fit: cover;
	object-position: center center;
	filter:
		brightness(1)
		contrast(1.05)
		saturate(0.85);
	animation: backgroundZoom 20s ease-in-out infinite alternate;
	transform-origin: center center;
	float: right;
}

@keyframes backgroundZoom {
	from { transform: scale(1);	  }
	to 	 { transform: scale(1.05);}
}

.overlay {
	position: absolute;
	inset: 0;

	background:
		radial-gradient(circle,
			rgba(0, 0, 0, 0) 10%,
			rgba(0, 0, 0, 0.35) 60%,
			rgba(0, 0, 0, 0.85) 100%),

		linear-gradient(to right,
			rgba(0, 0, 0, 0.70),
			rgba(0, 0, 0, 0.25));
}

.content {
	position: absolute;
	left: 7vw;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	max-width: 700px;
}

.eyebrow {
	color: var(--accent);
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 5px;
	text-transform: uppercase;
	margin-bottom: 2rem;
}

h1 {
	color: white;
	font-size: clamp(4rem, 8vw, 7rem);
	line-height: 0.95;
	font-weight: 800;
	letter-spacing: -0.05em;
	text-shadow:
		0 0 15px rgba(0, 0, 0, 0.6),
		0 0 50px rgba(0, 0, 0, 0.8);
}

.divider {
	width: 120px;
	height: 2px;
	background: rgba(255, 255, 255, 0.4);
	margin: 2.5rem 0;
}

.subtitle p {
	color: var(--muted);
	font-size: clamp(1.1rem, 2vw, 1.8rem);
	margin-bottom: 0.8rem;
	font-weight: 300;
}

/* Social Media */

.socials {
	position: absolute;
	right: 4rem;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	z-index: 3;
}

.socials a {
	width: 64px;
	height: 64px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	color: white;
	text-decoration: none;
	border: 1px solid rgba(255, 255, 255, 0.25);
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.socials a:hover {
	background: var(--accent);
	border-color: var(--accent);
	transform: translateX(-5px);
}

.socials i {
	font-size: 1.4rem;
}

@media (max-width: 900px) {

	body {
		overflow-y: auto;
	}

	.content {
		left: 2rem;
		right: 2rem;
	}

	h1 {
		font-size: clamp(3rem, 15vw, 5rem);
	}

	.socials {
		right: 1.2rem;
		gap: 1rem;
	}

	.socials a {
		width: 52px;
		height: 52px;
	}
}

@media (max-width: 700px) {

	.hero {
		display: flex;
		align-items: center;
	}

	.content {
		position: relative;
		left: auto;
		top: auto;
		transform: none;
		padding: 0 2rem;
	}

	.socials {
		bottom: 2rem;
		top: auto;
		right: 0;
		left: 0;
		transform: none;
		flex-direction: row;
		justify-content: center;
	}

	.eyebrow {
		font-size: 0.75rem;
		letter-spacing: 3px;
	}
}