/* Hero Section CSS */
.hero-section {
	min-height: 100vh;
	position: relative;
	overflow: hidden;
}

.hero-bg-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1; /* Keep behind content */
}

.hero-bg-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
}

/* Dark theme adjustments for hero overlay */
[data-bs-theme="dark"] .hero-overlay {
	background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
}

/* Ensure content is above background */
.hero-section > .container {
	position: relative;
	z-index: 1;
}
