/* Hero Video Section */
.hero-video {
	position: relative;
	background-color: #1a1a1a;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.hero-video__media {
	position: absolute;
	inset: 0;
	opacity: 0.42;
}

.hero-video__image {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero-video__image-el {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.hero-video__video {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-video__overlay {
	position: absolute;
	inset: 0;
}
.hero-video__media video{
	filter: brightness(1.1) contrast(1.1) saturate(1.2);
}
.hero-video__content {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: 120px 24px 80px;
}

.hero-video__title {
	color: #fff;
	font-size: 36px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 24px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.hero-video__subtitle {
	color: #fff;
	font-size: 16px;
	line-height: 1.6;
	margin: 0 0 32px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	text-align: justify;
}

.hero-video__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 32px;
	border: 2px solid rgba(142, 169, 162, 1);
	background-color: #8EA9A2;
	color: #fff;
	font-weight: 400;
	border-radius: 6px;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.hero-video__cta:hover {
	background-color: #9dbdb5;
	border-color: #9dbdb5;
	color: #fff;
	text-decoration: none !important;
}

/* Mobile: Figma layout - image on top, text block below (black) */
@media (max-width: 767px) {
	.hero-video {
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		min-height: auto;
	}

	.hero-video__media {
		position: relative;
		height: 45vh;
		min-height: 220px;
		flex-shrink: 0;
	}

	.hero-video__overlay {
		display: none;
	}

	.hero-video__content {
		background: #000;
		width: 100%;
		max-width: none;
		padding: 32px 24px 40px;
		margin: 0;
		text-align: left;
	}

	.hero-video__content .hero-video__title {
		text-align: center;
		margin: 20 auto;
		color: #FFF;
		font-family: Playfair Display, Georgia, serif;
		font-size: 30px;
		font-style: normal;
		font-weight: 700;
		line-height: normal;
		text-transform: capitalize;
	}

	.hero-video__content .hero-video__subtitle {
		text-align: left;
		font-size: 16px;
		line-height: 1.6;
		margin: 0 0 28px;
	}

	.hero-video__content .hero-video__cta {
		display: block;
		width: fit-content;
		margin-left: auto;
		margin-right: auto;
		text-align: center;
		border-radius: 8px;
	}
}

@media (min-width: 768px) {
	.hero-video__title {
		font-size: 48px;
	}

	.hero-video__subtitle {
		font-size: 18px;
	}
}

@media (min-width: 1100px) {
	.hero-video {
		min-height: 705px;
	}

	.hero-video__title {
		font-size: 48px; 
	}
}