/* ===================== HERO SECTION ===================== */
.hero {
	position: relative;
	width: 100%;
	height: 600px;
	overflow: hidden;
}

.hero-slides {
	position: relative;
	width: 100%;
	height: 100%;
}

.hero-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1s ease-in-out;
	z-index: 1;
}

.hero-slide.active {
	opacity: 1;
	z-index: 2;
}

.hero-slide-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
}

.hero-slide-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-slide-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(26, 26, 46, 0.75) 0%, rgba(176, 123, 172, 0.35) 100%);
}

.hero-slide-content {
	position: relative;
	z-index: 3;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 40px 24px;
	color: #fff;
}

.hero-subtitle {
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 12px;
	opacity: 0;
	transform: translateY(20px);
	animation: heroFadeUp 0.8s ease forwards 0.3s;
}

.hero-title {
	font-size: clamp(28px, 5vw, 52px);
	font-weight: 900;
	line-height: 1.2;
	margin-bottom: 16px;
	max-width: 700px;
	opacity: 0;
	transform: translateY(20px);
	animation: heroFadeUp 0.8s ease forwards 0.5s;
	color: #fff;
}

.hero-desc {
	font-size: 17px;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.85);
	max-width: 550px;
	margin-bottom: 28px;
	opacity: 0;
	transform: translateY(20px);
	animation: heroFadeUp 0.8s ease forwards 0.7s;
}

.hero-cta {
	opacity: 0;
	transform: translateY(20px);
	animation: heroFadeUp 0.8s ease forwards 0.9s;
}

.hero-slide.active .hero-subtitle,
.hero-slide.active .hero-title,
.hero-slide.active .hero-desc,
.hero-slide.active .hero-cta {
	animation: heroFadeUp 0.8s ease forwards;
}

.hero-slide.active .hero-subtitle {
	animation-delay: 0.2s;
}

.hero-slide.active .hero-title {
	animation-delay: 0.4s;
}

.hero-slide.active .hero-desc {
	animation-delay: 0.6s;
}

.hero-slide.active .hero-cta {
	animation-delay: 0.8s;
}

.hero-dots {
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	display: flex;
	gap: 10px;
}

.hero-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	cursor: pointer;
	transition: var(--transition);
	border: none;
	padding: 0;
}

.hero-dot.active {
	background: var(--accent);
	width: 28px;
	border-radius: 10px;
}

.hero-dot:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 3px;
}

/* Hero navigation arrows (optional enhancement) */
.hero-arrows {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 0 16px;
	z-index: 10;
	pointer-events: none;
}

.hero-arrow {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(6px);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 18px;
	transition: var(--transition-fast);
	pointer-events: auto;
	border: none;
}

.hero-arrow:hover {
	background: var(--accent);
	transform: scale(1.1);
}
