* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--bg-dark: #090510;
	--bg-card: #171127;
	--accent-purple: #8b5cf6;
	--accent-done: #bb9eff;
	--accent-cyan: #00ffff;
	--text-light: #e0e0e0;
	--text-dim: #a0a0a0;
}

main.hero {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-grow: 1;
	padding: 0 5%;
	gap: 4rem;
	z-index: 5;
}

.code-window-container {
	flex: 1;
	max-width: 600px;
	position: relative;
}

.code-window {
	background-color: var(--bg-card);
	border-radius: 12px;
	padding: 20px;
	border: 1px solid #2d1f37;

	box-shadow: 0 0 40px -5px rgba(195, 0, 255, 0.5),
		inset 0 0 2px rgba(195, 0, 255, 0.25);
	font-family: "JetBrains Mono", monospace;
	font-size: 0.9rem;
	line-height: 1.6;
	color: #d4d4d4;
	position: relative;
	z-index: 2;
}

.window-controls {
	display: flex;
	gap: 8px;
	margin-bottom: 20px;
}

.control {
	width: 12px;
	height: 12px;
	border-radius: 50%;
}
.control.red {
	background-color: #ff5f56;
}
.control.yellow {
	background-color: #ffbd2e;
}
.control.green {
	background-color: #27c93f;
}

.code-block {
	display: block;
	margin-bottom: 1.5rem;
	color: #d4d4d4;
}

.hero-content {
	flex: 1;
	max-width: 500px;
}

h1 {
	font-size: 3.5rem;
	line-height: 1.2;
	margin-bottom: 1.5rem;
}

h1 .highlight {
	color: var(--accent-purple);
	display: block;
	text-shadow: 0 0 15px rgba(195, 0, 255, 0.5);
	transition: all 0.15s ease-out;
}

.hero-subtext {
	color: var(--text-dim);
	font-size: 1.6rem;
	line-height: 1.6;
	margin-bottom: 3rem;
	font-weight: 800;
}

.cta-button {
	display: inline-block;
	padding: 1rem 2.5rem;
	background-color: transparent;
	border: 2px solid var(--accent-purple);
	color: var(--accent-purple);
	text-decoration: none;
	border-radius: 4px;
	font-size: 1.1rem;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	box-shadow: 0 0 10px rgba(195, 0, 255, 0.2),
		inset 0 0 10px rgba(195, 0, 255, 0.1);
}

.cta-button:hover {
	background-color: var(--accent-purple);
	color: var(--bg-dark);
	box-shadow: 0 0 30px rgba(195, 0, 255, 0.6);
	transform: scale(1.04);
}

.socials {
	font-size: 40px;
	text-decoration: none;
	font-family: "Cascadia Code", "Consolas", monospace;
	font-weight: 900;
	background-image: linear-gradient(135deg, white, white, white);
	color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
	left: 20px;
	bottom: 80px;
	display: inline-flex;
	flex-direction: row;
	align-items: flex-start;
	transition: all 300ms ease;
	position: absolute;
	z-index: 100;
	gap: 4px;
}

.facebook i {
	background-image: linear-gradient(180deg, #1877f2, #55b0ff);
	color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
	position: relative;
}

.instagram i {
	background-image: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
	color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
	position: relative;
}

.youtube i {
	background-image: linear-gradient(
		135deg,
		red 37.5%,
		rgb(255, 107, 107) 50%,
		red 62.5%,
		red 100%
	);
	color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
	position: relative;
}

.tiktok i {
	background-image: linear-gradient(135deg, red 30%, magenta 50%, #67c6ff 70%, cyan 100%);
	color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
	position: relative;
}

.facebook i::after,
.instagram i::after,
.youtube i::after,
.tiktok i::after {
	font-family: "Font Awesome 5 Brands", "Font Awesome 5 Free",
		"Font Awesome Pro", sans-serif;
	font-weight: 900;
	position: absolute;
	inset: 0;
	background-color: white;
	color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
	opacity: 1;
	transition: all 300ms ease;
	z-index: 1;
}

.facebook i::after {
	content: "\f09a";
}

.instagram i::after {
	content: "\f16d";
}

.youtube i::after {
	content: "\f16a";
}

.tiktok i::after {
	content: "\e07b";
}

.facebook i:hover,
.instagram i:hover,
.youtube i:hover,
.tiktok i:hover {
	transform: scale(1.08) translateY(-4px);
}

.facebook i:hover {
	filter: drop-shadow(0 0 5px rgba(24, 119, 242, 0.6))
		drop-shadow(0 0 10px rgba(85, 176, 255, 0.5));
}

.instagram i:hover {
	filter: drop-shadow(0 0 5px rgba(249, 206, 52, 0.6))
		drop-shadow(0 0 10px rgba(238, 42, 123, 0.5));
}

.youtube i:hover {
	filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.7))
		drop-shadow(0 0 10px rgba(255, 0, 0, 0.5));
}

.tiktok i:hover {
	filter: drop-shadow(0 0 5px rgba(255, 0, 255, 0.6))
		drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
}

.facebook i:hover::after,
.instagram i:hover::after,
.youtube i:hover::after,
.tiktok i:hover::after {
	opacity: 0;
	transform: scale(1.08) translateY(-4px);
}

@media (max-width: 968px) {
	main.hero {
		flex-direction: column;
		padding-top: 3rem;
		padding-bottom: 3rem;
		text-align: center;
	}

	.hero-content {
		align-items: center;
	}

	h1 {
		font-size: 2.5rem;
	}

	.code-window-container {
		width: 100%;
		text-align: left;
	}
}
