html:has(body.coming-soon-page) {
	margin-top: 0 !important;
}

.coming-soon-wrapper {
	position: relative;
	width: 100%;
	min-height: 100vh;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #00394e;
}

.coming-soon-background-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.coming-soon-background-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.coming-soon-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgb(255 255 255 / 70%);
	z-index: 2;
}

.coming-soon-video-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	overflow: hidden;
}

.coming-soon-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 1.5s ease-in-out;
}

.coming-soon-video.loaded {
	opacity: 1;
}

.coming-soon-content {
	position: relative;
	z-index: 3;
	width: 100%;
	padding: 2rem;
}

.coming-soon-inner {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
	color: #ffffff;
}

.coming-soon-logo {
	margin-bottom: 4rem;
}

.coming-soon-logo img {
	max-width: 320px;
	width: auto;
	height: auto;
	display: inline-block;
	max-height: 360px;
	/* filter: drop-shadow(0 0 8px #fff); */
}

.coming-soon-text {
	margin-bottom: 3rem;
}

.coming-soon-text p {
	font-size: 20px;
	line-height: 1.6;
	margin: 0;
	color: #00273a;
	font-weight: 400;
	max-width: 450px;
    margin: 0 auto;
}

.coming-soon-contact {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 3rem;
	flex-wrap: wrap;
}

.coming-soon-contact-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 20px;
	font-weight: 500;
}

.coming-soon-contact-item i {
	font-size: 15px;
	opacity: 1;
	color: #00273a;
}

.coming-soon-contact-item a {
	color: #00273a;
	text-decoration: none;
	transition: all 0.3s ease;
	border-bottom: 1px solid transparent;
}

.coming-soon-contact-item a:hover {
	opacity: 0.8;
	border-bottom-color: #00273a;
}

@media (max-width: 768px) {
	.coming-soon-logo img {
		max-width: 280px;
	}

	.coming-soon-text p {
		font-size: 18px;
	}

	.coming-soon-contact {
		flex-direction: column;
		gap: 1.5rem;
	}

	.coming-soon-contact-item {
		font-size: 1rem;
	}

	.coming-soon-background-image {
		background-attachment: scroll;
	}

	.coming-soon-video {
		width: 100%;
		height: 100%;
	}
}

@media (max-width: 480px) {
	.coming-soon-logo {
		margin-bottom: 2rem;
	}

	.coming-soon-logo img {
		max-width: 220px;
	}

	.coming-soon-text {
		margin-bottom: 2rem;
	}

	.coming-soon-contact-item {
		font-size: 0.9375rem;
	}
}
