/*
 * Hero Slider widget styles. Every selector is scoped under .vhs-hero so
 * this can never leak out and affect anything else on the site — no bare
 * tag selectors (h1, a, button...) and no generic class names.
 */
.vhs-hero {
	--vhs-ocean-deep: #0E5C56;
	--vhs-coral: #FF6B4A;
	--vhs-sand: #FBF3E7;
	--vhs-ink: #1B2B29;
	--vhs-gold: #F2B441;
	--vhs-white: #FFFFFF;

	position: relative;
	min-height: 88vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	color: var(--vhs-white);
	font-family: 'Poppins', sans-serif;
	padding: 60px 0;
}

.vhs-hero *,
.vhs-hero *::before,
.vhs-hero *::after {
	box-sizing: border-box;
}

.vhs-hero img {
	max-width: 100%;
	display: block;
}

/* Background slides */
.vhs-slides {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.vhs-slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 1.2s ease-in-out;
}

.vhs-slide--active {
	opacity: 1;
}

.vhs-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(14, 92, 86, .88) 0%, rgba(14, 92, 86, .55) 55%, rgba(14, 92, 86, .15) 100%);
}

/* Content */
.vhs-content {
	position: relative;
	z-index: 2;
	padding: 40px 6%;
	max-width: 640px;
}

.vhs-eyebrow {
	display: inline-block;
	font-size: .78rem;
	letter-spacing: .14em;
	text-transform: uppercase;
	background: rgba(255, 255, 255, .14);
	border: 1px solid rgba(255, 255, 255, .35);
	padding: 6px 14px;
	border-radius: 100px;
	margin-bottom: 22px;
	font-weight: 500;
	font-family: 'Poppins', sans-serif;
}

.vhs-heading {
	font-family: 'Fraunces', serif;
	font-weight: 600;
	line-height: 1.1;
	font-size: clamp(2.4rem, 5.2vw, 3.8rem);
	margin: 0 0 18px;
	color: var(--vhs-white);
}

.vhs-heading em {
	font-style: italic;
	color: var(--vhs-gold);
}

.vhs-description {
	font-size: 1.05rem;
	max-width: 480px;
	opacity: .92;
	margin: 0 0 32px;
	line-height: 1.6;
	font-family: 'Poppins', sans-serif;
}

.vhs-ctas {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	align-items: center;
}

.vhs-btn-primary {
	background: var(--vhs-coral);
	color: var(--vhs-white);
	padding: 16px 30px;
	border-radius: 100px;
	font-weight: 600;
	font-size: .98rem;
	box-shadow: 0 10px 24px -8px rgba(255, 107, 74, .65);
	transition: transform .15s ease;
	text-decoration: none;
	display: inline-block;
	font-family: 'Poppins', sans-serif;
}

.vhs-btn-primary:hover {
	transform: translateY(-2px);
}

.vhs-btn-ghost {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 500;
	font-size: .95rem;
	color: var(--vhs-white);
	border-bottom: 1px solid rgba(255, 255, 255, .5);
	padding-bottom: 2px;
	text-decoration: none;
	font-family: 'Poppins', sans-serif;
}

.vhs-trust-strip {
	display: flex;
	gap: 26px;
	margin-top: 38px;
	flex-wrap: wrap;
	font-size: .82rem;
	opacity: .9;
	font-family: 'Poppins', sans-serif;
}

.vhs-trust-strip span {
	display: flex;
	align-items: center;
	gap: 6px;
}

/* Ticket card */
.vhs-ticket {
	position: absolute;
	right: 6%;
	top: 50%;
	transform: translateY(-50%) rotate(3deg);
	background: var(--vhs-white);
	color: var(--vhs-ink);
	width: 290px;
	border-radius: 16px;
	box-shadow: 0 30px 60px -15px rgba(0, 0, 0, .4);
	overflow: hidden;
	z-index: 2;
	font-family: 'Poppins', sans-serif;
	text-decoration: none;
	display: block;
}

.vhs-ticket-top {
	padding: 20px 22px 16px;
}

.vhs-ticket-dest {
	font-family: 'Fraunces', serif;
	font-weight: 600;
	font-size: 1.15rem;
	color: var(--vhs-ocean-deep);
}

.vhs-ticket-meta {
	font-size: .78rem;
	color: #6b7a78;
	margin-top: 4px;
}

.vhs-ticket-divider {
	position: relative;
	border-top: 2px dashed #d9cdbb;
}

.vhs-ticket-divider::before,
.vhs-ticket-divider::after {
	content: '';
	position: absolute;
	top: -10px;
	width: 20px;
	height: 20px;
	background: var(--vhs-sand);
	border-radius: 50%;
}

.vhs-ticket-divider::before {
	left: -10px;
}

.vhs-ticket-divider::after {
	right: -10px;
}

.vhs-ticket-bottom {
	padding: 16px 22px 22px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.vhs-ticket-price {
	font-family: 'Fraunces', serif;
	font-weight: 700;
	font-size: 1.6rem;
	color: var(--vhs-coral);
}

.vhs-ticket-price span {
	font-size: .7rem;
	color: #6b7a78;
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
	display: block;
}

.vhs-ticket-book {
	background: var(--vhs-ocean-deep);
	color: var(--vhs-white);
	font-size: .8rem;
	font-weight: 600;
	padding: 9px 16px;
	border-radius: 100px;
}

@media (max-width: 900px) {
	.vhs-ticket {
		display: none;
	}
}

/* Video popup */
body.vhs-modal-lock-scroll {
	overflow: hidden;
}

.vhs-modal-overlay {
	position: fixed;
	inset: 0;
	z-index: 100000;
	background: rgba(27, 43, 41, .9);
	display: none;
	align-items: center;
	justify-content: center;
	padding: 5vh 5vw;
	font-family: 'Poppins', sans-serif;
}

.vhs-modal-overlay--open {
	display: flex;
}

.vhs-modal-box {
	position: relative;
	width: 100%;
	max-width: 960px;
}

.vhs-modal-close {
	position: absolute;
	top: -44px;
	right: 0;
	background: transparent;
	border: none;
	color: #FFFFFF;
	font-size: 2.2rem;
	line-height: 1;
	cursor: pointer;
	padding: 4px 8px;
}

.vhs-modal-media {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	background: #000;
	border-radius: 8px;
	overflow: hidden;
}

.vhs-modal-media iframe,
.vhs-modal-media video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
