.fl-hero-header {
	width: 100vw;
	position: relative;
	overflow: hidden;
	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
}

.hero-header-container {
	position: relative;
	width: 100%;
	height: 350px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f5f7fa;
	border-radius: 0 0 0 75px;
	overflow: hidden;
}

.hero-header-container.homepage-type {
	height: 100vh;
	border-radius: 0;
}

.hero-background-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero-background-image img {
	width: 100%;
	height: 100%;
	object-position: center;
}

.hero-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f5f7fa;
	color: #666;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 2;
}

.hero-content {
	position: relative;
	z-index: 3;
	max-width: 1200px;
	width: 100%;
	padding: 0 40px;
}

.hero-headline {
	font-family: "Aktiv Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-size: clamp(32px, 4vw + 1rem, 64px)!important;
	font-style: normal;
	font-weight: 400;
	line-height: 1.1;
	margin: 0;
	color: #ffffff;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.homepage-type .hero-headline {
	font-size: clamp(2rem, 3.5vw + 1rem, 4rem);
	text-align: center;
}

/* Bootstrap Breakpoint: xl (1200px) and down */
@media (max-width: 1200px) {
	.hero-content {
		padding: 0 30px;
	}
}

/* Bootstrap Breakpoint: lg (992px) and down */
@media (max-width: 992px) {
	.hero-content {
		padding: 0 25px;
	}
}

/* Bootstrap Breakpoint: md (768px) and down */
@media (max-width: 768px) {
	.fl-hero-header {
		margin-top: -120px;
	}
	
	.hero-header-container {
		margin-top: 0;
		padding-top: 120px;
		border-radius: 0 0 0 50px;
	}
	
	.hero-content {
		padding: 0 20px;
	}
}

/* Bootstrap Breakpoint: sm (576px) and down */
@media (max-width: 576px) {
	.fl-hero-header {
		margin-top: -100px;
	}
	
	.hero-header-container {
		margin-top: 0;
		padding-top: 100px;
		border-radius: 0 0 0 30px;
	}
	
	.hero-content {
		padding: 0 15px;
	}
} 