/* ============================================
   HERO SECTION
   ============================================ */

.hero {
	position: relative;
	min-height: var(--section-height-md);
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: var(--hero-bg-image);
	background-size: cover;
	background-position: bottom;
	background-attachment: fixed;
	padding: var(--spacing-xl) var(--spacing-lg);
	overflow: hidden;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--hero-overlay-gradient);
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: var(--container-md);
	text-align: center;
	color: var(--primary-text-color);
}

.hero-title {
	font-size: clamp(2rem, 5vw, 3.5rem);
	color: var(--primary-text-color);
	margin-bottom: var(--spacing-lg);
	line-height: 1.2;
	text-shadow: var(--text-shadow-lg);
}

.hero-subtitle {
	font-size: clamp(1rem, 2vw, 1.3rem);
	color: var(--lake-mist);
	margin-bottom: var(--spacing-xl);
	line-height: 1.7;
	opacity: 0.95;
	text-shadow: var(--text-shadow-md);
}

.hero-cta {
	display: flex;
	gap: var(--spacing-md);
	justify-content: center;
	flex-wrap: wrap;
}
