/**
 * Homepage full-width promo banner — Dream Yacht Charter.
 */

.myh-home-promo {
	position: relative;
	width: 100%;
	min-height: 520px;
	background-color: #0a2540;
	background-size: cover;
	background-position: center right;
	background-repeat: no-repeat;
	overflow: hidden;
	font-family: "Gotham Book", sans-serif;
}

.myh-home-promo__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		to right,
		rgba(8, 35, 68, 0.92) 0%,
		rgba(8, 35, 68, 0.78) 38%,
		rgba(8, 35, 68, 0.35) 62%,
		rgba(8, 35, 68, 0.05) 100%
	);
	pointer-events: none;
}

.myh-home-promo__inner {
	position: relative;
	z-index: 2;
	max-width: 1320px;
	margin: 0 auto;
	padding: 4.5rem 1.5rem 4.5rem 2rem;
	min-height: 520px;
	display: flex;
	align-items: center;
}

.myh-home-promo__content {
	max-width: 520px;
	color: #fff;
}

.myh-home-promo__heading {
	margin: 0 0 1.25rem;
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 400;
	line-height: 1.15;
	color: #fff;
	letter-spacing: 0.01em;
}

.myh-home-promo__body {
	margin: 0 0 2rem;
	font-size: clamp(1rem, 1.6vw, 1.15rem);
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.95);
	font-weight: 400;
	max-width: 480px;
}

.myh-home-promo__actions {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.85rem;
}

.myh-home-promo__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 220px;
	padding: 0.7rem 2rem;
	border-radius: 999px;
	font-family: "Gotham Book", sans-serif;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
	line-height: 1.2;
}

.myh-home-promo__btn--outline {
	background: transparent;
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.9);
}

.myh-home-promo__btn--outline:hover,
.myh-home-promo__btn--outline:focus {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	border-color: #fff;
}

.myh-home-promo__btn--solid {
	background: #4db8e8;
	color: #fff;
	border: 2px solid #4db8e8;
}

.myh-home-promo__btn--solid:hover,
.myh-home-promo__btn--solid:focus {
	background: #3aa8d8;
	border-color: #3aa8d8;
	color: #fff;
	transform: translateY(-1px);
}

@media (max-width: 991.98px) {
	.myh-home-promo {
		min-height: 460px;
		background-position: 70% center;
	}

	.myh-home-promo__inner {
		min-height: 460px;
		padding: 3.5rem 1.25rem;
	}

	.myh-home-promo__overlay {
		background: linear-gradient(
			to right,
			rgba(8, 35, 68, 0.92) 0%,
			rgba(8, 35, 68, 0.75) 55%,
			rgba(8, 35, 68, 0.45) 100%
		);
	}
}

@media (max-width: 575.98px) {
	.myh-home-promo {
		min-height: 420px;
	}

	.myh-home-promo__inner {
		min-height: 420px;
		padding: 2.5rem 1rem;
	}

	.myh-home-promo__btn {
		min-width: 200px;
		width: 100%;
		max-width: 280px;
	}
}
