/**
 * Hero Section Styles
 */
.wte-hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	background-color: var(--wte-charcoal);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: var(--wte-white);
	overflow: hidden;
}
.wte-hero--full   { min-height: 100vh; }
.wte-hero--large  { min-height: 80vh; }
.wte-hero--medium { min-height: 60vh; }
.wte-hero--small  { min-height: 40vh; }

.wte-hero__overlay {
	position: absolute;
	inset: 0;
	background-color: var(--hero-overlay-color);
	opacity: var(--hero-overlay-opacity);
	z-index: 1;
}
.wte-hero__inner {
	position: relative;
	z-index: 2;
}
.wte-hero__content {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}
.wte-hero__heading {
	font-size: clamp(2rem, 6vw, 4rem);
	font-weight: var(--wte-font-weight-bold);
	line-height: 1.15;
	margin-bottom: var(--wte-space-lg);
	color: var(--wte-white);
	letter-spacing: -0.02em;
}
.wte-hero__subheading {
	font-size: clamp(1rem, 2vw, 1.25rem);
	line-height: 1.8;
	margin-bottom: var(--wte-space-2xl);
	opacity: 0.9;
}
.wte-hero__cta-group {
	display: flex;
	flex-wrap: wrap;
	gap: var(--wte-space-md);
	justify-content: center;
}
.wte-hero__scroll-btn {
	position: absolute;
	bottom: var(--wte-space-xl);
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	background: none;
	border: none;
	color: var(--wte-white);
	cursor: pointer;
	opacity: 0.7;
	transition: opacity var(--wte-transition-fast);
	animation: wte-bounce 2s infinite;
}
.wte-hero__scroll-btn:hover {
	opacity: 1;
}
@keyframes wte-bounce {
	0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
	40% { transform: translateX(-50%) translateY(-10px); }
	60% { transform: translateX(-50%) translateY(-5px); }
}
