:root {
	--container-bg-color: #ffffff;
	--left-bg-color: #f8f9fa;
	--right-bg-color: #111111;
	--accent-color: #a81313;
	/* Royal Indigo - Modern & Professional */
	--speed: 1500ms;
	--hover-width: 75%;
	--other-width: 25%;
}

html,
body {
	padding: 0;
	margin: 0;
	font-family: 'Inter', sans-serif;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
}

.container {
	position: relative;
	width: 100%;
	height: 100vh;
	background: var(--container-bg-color);
	overflow: hidden;
}

/* Logo Section - Now inside split.left */
.left .logo-container {
	position: absolute;
	top: 30px;
	left: 40px;
	z-index: 100;
}

.logo {
	height: 50px;
	/* Adjusted size as requested */
	width: auto;
	filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

/* Split Sides */
.split {
	position: absolute;
	width: 50%;
	height: 100%;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	transition: width var(--speed) cubic-bezier(0.4, 0, 0.2, 1);
}

.split.left {
	left: 0;
	background: var(--left-bg-color);
}

.split.left:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.2)), url('./assets/pic4.jpeg') center center no-repeat;
	background-size: cover;
	opacity: 0.7;
	/* Maintained user preference */
	z-index: 0;
	transition: opacity 0.5s ease;
}

.split.right {
	right: 0;
	background: var(--right-bg-color);
}

.split.right:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5)), url('./assets/sh20.jpg') center center no-repeat;
	background-size: cover;
	opacity: 0.7;
	z-index: 0;
	transition: opacity 0.5s ease;
}

.split.left>*,
.split.right>* {
	z-index: 2;
	text-align: center;
	transition: opacity 0.5s ease, transform 0.5s ease;
	/* Premium fade and scale transition */
}

/* Typography */
h1 {
	font-family: 'Outfit', sans-serif;
	font-size: 3rem;
	/* color: #1a1a1a; */
	color: #333;
	margin-bottom: 0.5rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 800;
}

.b2 {
	color: #fff !important;
}

.b1 {
	color: #fff !important;
}

h2 {
	font-family: 'Inter', sans-serif;
	font-size: 1.1rem;
	line-height: 1.7;
	/* color: #555; */
	font-weight: 400;
	margin-bottom: 2rem;
	max-width: 80%;

}

.right h2 {
	color: #ccc;
}

span {
	color: var(--accent-color);
}

/* Typewriter Section */
.nerdy-pen {
	font-family: 'Outfit', sans-serif;
	font-size: 1.8rem;
	margin: 1rem 0;
	font-weight: 600;
}

.left .nerdy-pen {
	color: #333;
}

.right .nerdy-pen {
	color: #eee;
}

/* Buttons */
.button1,
.button {
	display: inline-block;
	padding: 1.1rem 2.8rem;
	font-size: 0.95rem;
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 1.5px;
	transition: all 0.4s ease;
	border-radius: 50px;
	/* Modern pill shape */
	margin-top: 1rem;
}

.button1 {
	color: #111;
	border: 2px solid #111;
}

.button {
	color: #fff;
	border: 2px solid #fff;
}

.button1:hover {
	background: #111;
	color: #fff;
	transform: translateY(-8px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.button:hover {
	background: #fff;
	color: #111 !important;
	transform: translateY(-8px);
	box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

/* Hover Effects */
.hover-left .left {
	width: var(--hover-width);
}

.hover-left .right {
	width: var(--other-width);
}

.hover-right .right {
	width: var(--hover-width);
}

.hover-right .left {
	width: var(--other-width);
}

/* Hide content of the non-hovered side with a premium scale effect */
.hover-left .right>* {
	opacity: 0;
	transform: scale(0.9);
	pointer-events: none;
}

.hover-right .left>* {
	opacity: 0;
	transform: scale(0.9);
	pointer-events: none;
}

/* Footer - Redesigned */
.footer {
	position: absolute;
	bottom: 0;
	width: 100%;
	padding: 18px 0;
	text-align: center;
	z-index: 100;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(12px);
	/* color: rgba(255, 255, 255, 0.6); */
	color: #fff;
	font-size: 0.8rem;
	letter-spacing: 0.5px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer p {
	margin: 0;
}

/* Responsiveness */
@media (max-width: 992px) {
	.container {
		height: auto;
		min-height: 200vh;
		overflow: visible;
	}

	.split {
		width: 100% !important;
		height: 100vh;
		position: relative;
	}

	h1 {
		font-size: 2.2rem;
	}

	h2 {
		font-size: 1rem;
		max-width: 90%;
	}

	.nerdy-pen {
		font-size: 1.4rem;
	}

	.logo {
		height: 40px;
	}

	.left .logo-container {
		top: 20px;
		left: 20px;
	}

	.footer {
		position: relative;
		background: #111;
	}
}

@media (max-width: 480px) {
	h1 {
		font-size: 2rem;
	}

	.button,
	.button1 {
		padding: 1rem 2rem;
		font-size: 0.9rem;
		width: 80%;
	}
}