/* Split Screen Hero Section */
.split-screen-hero {
	width: 100%;
	height: 100vh;
	position: relative;
	overflow: hidden;
	background: #000;
}

.split-screen-container {
	width: 100%;
	height: 100%;
	display: flex;
	position: relative;
}

/* Split Side Styles */
.split-side {
	flex: 1;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 1s ease-in-out, filter 1s ease-in-out;
}

.side-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: filter 1s ease-in-out, transform 1.2s ease-in-out;
	filter: brightness(1);
}

.side-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(0, 27, 49, 0.85) 48%, rgba(0, 27, 49, 0.95) 88%);
	transition: opacity 1s ease-in-out;
	opacity: 0.8;
}

.side-content {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 40px;
	color: rgba(255, 255, 255, 0.9);
	transition: color 1s ease-in-out, transform 1s ease-in-out;
	max-width: 600px;
}

.side-title {
	font-family: "Montserrat", Sans-serif;
	font-size: 48px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 30px;
	letter-spacing: 2px;
	transition: color 1s ease-in-out, transform 1s ease-in-out;
	color: rgba(255, 255, 255, 0.95);
}

.side-description {
	font-family: "Roboto", Sans-serif;
	font-size: 18px;
	line-height: 1.8;
	margin-bottom: 40px;
	transition: color 1s ease-in-out, opacity 1s ease-in-out;
	color: rgba(255, 255, 255, 0.85);
}

.side-btn {
	display: inline-block;
	padding: 20px 60px;
	background: linear-gradient(135deg, 
		rgba(207, 170, 93, 0.25) 0%, 
		rgba(184, 134, 11, 0.3) 50%, 
		rgba(207, 170, 93, 0.25) 100%);
	border: 2px solid rgba(207, 170, 93, 0.5);
	border-radius: 25px;
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	font-family: "Montserrat", Sans-serif;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 2px;
	transition: all 1s ease-in-out;
	position: relative;
	overflow: hidden;
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	box-shadow: 
		0 8px 32px rgba(207, 170, 93, 0.3),
		0 4px 16px rgba(0, 0, 0, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
	text-shadow: 0 2px 10px rgba(207, 170, 93, 0.5);
}

.side-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, 
		transparent, 
		rgba(255, 255, 255, 0.3), 
		transparent);
	transition: left 0.6s ease;
}

.side-btn:hover::before {
	left: 100%;
}

.side-btn:hover {
	background: linear-gradient(135deg, 
		rgba(207, 170, 93, 0.4) 0%, 
		rgba(184, 134, 11, 0.5) 50%, 
		rgba(207, 170, 93, 0.4) 100%);
	border-color: rgba(207, 170, 93, 0.9);
	transform: translateY(-4px) scale(1.05);
	box-shadow: 
		0 12px 40px rgba(207, 170, 93, 0.5),
		0 6px 20px rgba(0, 0, 0, 0.5),
		inset 0 1px 0 rgba(255, 255, 255, 0.3),
		0 0 30px rgba(207, 170, 93, 0.4);
	text-shadow: 0 2px 15px rgba(207, 170, 93, 0.7);
}

.side-btn:active {
	transform: translateY(-2px) scale(1.02);
	box-shadow: 
		0 6px 20px rgba(207, 170, 93, 0.4),
		0 3px 10px rgba(0, 0, 0, 0.4);
}

/* Hover Effects - Slow Motion Light-up */
.split-side:hover {
	transform: scale(1.02);
	z-index: 3;
}

.split-side:hover .side-background {
	filter: brightness(1.4);
	transform: scale(1.05);
}

.split-side:hover .side-overlay {
	opacity: 0.4;
}

.split-side:hover .side-content {
	color: rgba(255, 255, 255, 1);
}

.split-side:hover .side-title {
	color: rgba(255, 255, 255, 1);
	transform: translateY(-5px);
}

.split-side:hover .side-description {
	color: rgba(255, 255, 255, 0.95);
	opacity: 1;
}

.split-side:hover .side-btn {
	background: linear-gradient(135deg, 
		rgba(207, 170, 93, 0.35) 0%, 
		rgba(184, 134, 11, 0.45) 50%, 
		rgba(207, 170, 93, 0.35) 100%);
	border-color: rgba(207, 170, 93, 0.8);
	box-shadow: 
		0 10px 36px rgba(207, 170, 93, 0.4),
		0 5px 18px rgba(0, 0, 0, 0.45),
		inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* Center Circle - 3D Logo */
.center-circle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 200px;
	height: 200px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.9);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	box-shadow: 
		0 0 0 3px rgba(207, 170, 93, 0.3),
		0 10px 40px rgba(0, 0, 0, 0.8),
		inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.center-circle img {
	width: 80%;
	height: 80%;
	object-fit: contain;
	filter: brightness(1);
}

/* Initial Load Animations */
.split-side.left-side {
	animation: slideInLeft 1s ease-out;
}

.split-side.right-side {
	animation: slideInRight 1s ease-out;
}


@keyframes slideInLeft {
	from {
		transform: translateX(-100%);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes slideInRight {
	from {
		transform: translateX(100%);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}


/* Parallax Effect */
.split-side .side-background {
	will-change: transform;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.side-title {
		font-size: 36px;
	}
	
	.side-description {
		font-size: 16px;
	}
	
	.side-btn {
		padding: 18px 50px;
		font-size: 15px;
		border-radius: 22px;
	}
	
	.center-circle {
		width: 150px;
		height: 150px;
	}
}

@media (max-width: 768px) {
	.split-screen-hero {
		height: 100vh;
		position: relative;
	}
	
	.split-screen-container {
		flex-direction: column;
		height: 100%;
		position: relative;
		display: flex;
	}
	
	.split-side {
		height: 50%;
		flex: 0 0 50%;
		min-height: auto;
		margin: 0;
		padding: 0;
		position: relative;
	}
	
	.side-title {
		font-size: 28px;
		margin-bottom: 20px;
	}
	
	.side-description {
		font-size: 14px;
		margin-bottom: 30px;
	}
	
	.side-content {
		padding: 30px 20px;
	}
	
	.side-btn {
		padding: 16px 40px;
		font-size: 13px;
		border-radius: 18px;
		letter-spacing: 1px;
	}
	
	.center-circle {
		width: 120px;
		height: 120px;
		position: absolute;
		top: 45%;
		left: 50%;
		transform: translate(-50%, -50%);
		z-index: 1000;
		margin: 0;
		padding: 0;
	}
	
	
	.split-side.left-side {
		animation: slideInTop 1s ease-out;
	}
	
	.split-side.right-side {
		animation: slideInBottom 1s ease-out;
	}
}

@keyframes slideInTop {
	from {
		transform: translateY(-100%);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes slideInBottom {
	from {
		transform: translateY(100%);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@media (max-width: 480px) {
	.split-screen-hero {
		height: 100vh;
	}
	
	.side-title {
		font-size: 24px;
		letter-spacing: 1px;
	}
	
	.side-description {
		font-size: 13px;
		line-height: 1.6;
	}
	
	.side-btn {
		padding: 18px 45px;
		font-size: 14px;
		border-radius: 20px;
		letter-spacing: 1.5px;
	}
	
	.center-circle {
		width: 100px;
		height: 100px;
		position: absolute;
		top: 45%;
		left: 50%;
		transform: translate(-50%, -50%);
		margin: 0;
		padding: 0;
	}
	
}
