/* Enhanced Hero Section */
.hero {
	position: relative;
	width: 100%;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: #000;
}

.hero-slideshow {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
	opacity: 1;
	animation: kenburns 12s ease-out infinite alternate;
}

@keyframes kenburns {
	0% { transform: scale(1); }
	100% { transform: scale(1.08); }
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(88, 28, 135, 0.3) 50%, rgba(0, 0, 0, 0.75) 100%);
	z-index: 2;
}

.hero-container {
	position: relative;
	z-index: 3;
	width: 100%;
	padding-top: 0;
}

.hero-content {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
	padding: 0 1rem;
	padding-top: 120px;
}

.hero h1 {
	font-family: var(--font-serif);
	font-size: clamp(2.5rem, 6vw, 5rem);
	font-weight: 700;
	line-height: 1.15;
	color: #fff;
	margin-bottom: 1.5rem;
	text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.hero h1 .highlight {
	background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: inline;
}

.hero-description {
	font-size: clamp(1rem, 2vw, 1.25rem);
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.95);
	max-width: 700px;
	margin: 0 auto 2.5rem;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-actions {
	display: flex;
	gap: 1.25rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 3.5rem;
}

.hero-actions .btn-primary,
.hero-actions .btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 1rem 2rem;
	font-size: 1.0625rem;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	white-space: nowrap;
	text-decoration: none;
}

.hero-actions .btn-primary {
	background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
	border: 2px solid rgba(139, 92, 246, 0.5);
	border-radius: 50px;
	color: #fff;
}

.hero-actions .btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(139, 92, 246, 0.5);
	background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
}

.hero-actions .btn-secondary {
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, 0.3);
	color: #fff;
	border-radius: 50px;
}

.hero-actions .btn-secondary:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.5);
	transform: translateY(-3px);
}

.hero-stats {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 3rem;
	flex-wrap: wrap;
	padding: 2rem 2.5rem;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(25px);
	-webkit-backdrop-filter: blur(25px);
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
	max-width: fit-content;
	margin: 0 auto;
}

.stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.625rem;
	text-align: center;
}

.stat svg {
	color: #8b5cf6;
	filter: drop-shadow(0 2px 10px rgba(139, 92, 246, 0.4));
	width: 40px;
	height: 40px;
}

.stat strong {
	display: block;
	font-size: 1.125rem;
	font-weight: 700;
	color: #fff;
	font-family: var(--font-sans);
	line-height: 1;
}

.stat span {
	display: block;
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.3;
	max-width: 120px;
}

.stat-divider {
	width: 1px;
	height: 50px;
	background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.hero-features {
	display: flex;
	justify-content: center;
	gap: 1.25rem;
	flex-wrap: wrap;
	margin-top: 2.5rem;
}

.feature-tag {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 20px;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50px;
	color: rgba(255, 255, 255, 0.95);
	font-size: 0.875rem;
	font-weight: 500;
	transition: all 0.3s ease;
}

.feature-tag:hover {
	background: rgba(139, 92, 246, 0.3);
	border-color: rgba(139, 92, 246, 0.5);
	transform: translateY(-2px);
}

.feature-tag svg {
	width: 20px;
	height: 20px;
	color: #8b5cf6;
	flex-shrink: 0;
}

.scroll-indicator {
	position: absolute;
	bottom: 40px;
	left: 40px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	z-index: 3;
	animation: bounce 2s infinite;
}

@keyframes bounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}

.scroll-indicator svg {
	width: 20px;
	height: 20px;
}

/* Animations */
.animate-slide-up {
	animation: slide-up 0.8s ease-out;
}

.animate-slide-up.delay-1 {
	animation-delay: 0.2s;
	opacity: 0;
	animation-fill-mode: forwards;
}

.animate-slide-up.delay-2 {
	animation-delay: 0.4s;
	opacity: 0;
	animation-fill-mode: forwards;
}

.animate-fade-in.delay-3 {
	animation: fade-in 1s ease-out;
	animation-delay: 0.6s;
	opacity: 0;
	animation-fill-mode: forwards;
}

@keyframes fade-in {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes slide-up {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive */
@media (max-width: 968px) {
	.hero-content {
		padding-top: 100px;
	}
	
	.hero-stats {
		gap: 2rem;
		padding: 1.75rem 2rem;
	}
	
	.stat svg {
		width: 36px;
		height: 36px;
	}
}

@media (max-width: 768px) {
	.hero-content {
		padding-top: 90px;
	}

	.hero-stats {
		flex-direction: column;
		gap: 1.5rem;
		padding: 1.5rem;
	}

	.stat-divider {
		display: none;
	}

	.stat {
		width: 100%;
	}

	.stat span {
		max-width: none;
	}

	.hero-actions {
		flex-direction: column;
		width: 100%;
	}

	.hero-actions .btn-primary,
	.hero-actions .btn-secondary {
		width: 100%;
		justify-content: center;
	}

	.hero-features {
		flex-direction: column;
		gap: 0.75rem;
	}

	.feature-tag {
		width: 100%;
		justify-content: center;
	}

	.slideshow-controls {
		bottom: 20px;
		right: 20px;
		gap: 0.75rem;
	}

	.slide-nav {
		width: 40px;
		height: 40px;
	}

	.scroll-indicator {
		bottom: 20px;
		left: 20px;
	}
	
	.scroll-indicator span {
		display: none;
	}
	
	.scroll-indicator svg {
		width: 18px;
		height: 18px;
	}
}

@media (max-width: 480px) {
	.hero-content {
		padding-top: 80px;
	}
	
	.hero-stats {
		padding: 1.25rem;
	}

	.stat svg {
		width: 32px;
		height: 32px;
	}

	.stat strong {
		font-size: 1rem;
	}

	.stat span {
		font-size: 0.75rem;
	}
}
