/* ============================================================
   Heron Lakes — Homepage / Front Page
   ============================================================ */

/* -------------------------------------------------------
   Hero Section
   ------------------------------------------------------- */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}

/* Background — video or image fills the section */
.hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* Overlay — darken/tint the background for text readability
   Adjust color and opacity to match the design */
.hero-overlay {
	position: absolute;
	inset: 0;
	background-color: var(--color-navy);
	opacity: 0.5;
}

/* Hero Content — sits above background and overlay */
.hero-content {
	position: relative;
	z-index: 1;
	width: 100%;
	text-align: center;
}

.hero-text {
	max-width: 640px;
	margin-inline: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space-md);
}

.hero-title {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: clamp(2rem, 5vw, 3.5rem);
	text-transform: uppercase;
	color: var(--color-white);
	line-height: 1.1;
}

.hero-subtitle {
	font-family: var(--font-body);
	font-size: clamp(1rem, 1.5vw, 1.25rem);
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.6;
}

.hero-cta {
	margin-block-start: var(--space-sm);
}

/* Accessibility — pause video for users with Reduce Motion enabled.
   The poster image shows as a static background instead. */
@media (prefers-reduced-motion: reduce) {
	.hero-bg--video {
		animation-play-state: paused;
	}
}
