/* Make the hero section take up the full viewport height and width */
.hero-wrapper {
	position: relative; /* Needed for absolute positioning of video */
	width: 100%;
	height: 70vh;
	overflow: hidden; /* Hide anything outside the section */
	display: flex;
	align-items: center; /* Vertically center content */
	justify-content: center; /* Horizontally center content */
}

.hero-content-h1-popup a span{
	color: var(--color-yellow);
}

.hero-content-h1-popup .link-text:before{
	background-color: var(--color-yellow) !important;
}
.home .hero-wrapper {
	height: 100vh;
}

.page-id-46 .hero-wrapper {
	height: 100vh;
}

.page-id-27 .hero-wrapper {
	height: 100vh;
}

.our-works {
	padding-block-start: 0 !important;
}

/* Make the video cover the entire hero section */
.hero-media {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1; /* Place video behind content */
	overflow: hidden;
	/* perspective: 1000px; */
}

.hero-media video,
.hero-media img {
	width: 100vw;
	height: 100vh;
	object-fit: cover; /* Video covers the area without stretching */
}

/* Center the content and make sure it's above the video */
.hero-container {
	position: relative;
	z-index: 9; /* Place content above the video */
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	/* height: 50vh; */
}

.hero-content {
	/* text-align: center; */
	/* White text for contrast */
	/* Add a subtle text shadow for readability */
	text-shadow: 0 2px 8px hsl(var(--color-dark), 0.5) !important;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding-inline: 1rem;
}

.hero-content h1 {
	color: var(--color-white);
	/*max-width: 1200px;*/
	font-weight: 800;
	line-height: 0.8;
	text-transform: uppercase;
	text-align: center;
}

.heading-split > div{
	display: flex !important;
	justify-content: space-between;
	width: 100%;
}

.hero-content .split-word {
	margin-block-end: 2rem;
}

.hero-wrapper {
	position: relative;
}

.hero-wrapper:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/*background-color: hsl(var(--color-dark), 0.1);*/
	z-index: 9;
}

.hero-content_langitude,
.hero-content_longitude {
	font-size: clamp(1.125rem, 0.5947rem + 0.5888vw, 1.5rem);
	font-weight: 200;
	color: var(--color-yellow);
}

.hero-content-h1-popup {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.hero-content-h1-popup a {
	text-decoration: none;
	margin-block-start: 2rem;
	opacity: 0;
}

@media (max-width: 991px) {
	.hero-wrapper {
		height: 70vh;
	}
}
