/* ==========================================================================
   Hero banners — the large image header used on the Home page and at
   the top of every category, program, blog and contact page.
   ========================================================================== */
.hero {
	position: relative;
	min-height: 640px;
	display: flex;
	align-items: center;
	color: #fff;
	background-size: cover;
	background-position: center;
	overflow: hidden;
}
.hero::before {
	content: '';
	position: absolute; inset: 0;
	background: linear-gradient(120deg, rgba(24, 38, 32, 0.88) 0%, rgba(24, 38, 32, 0.62) 45%, rgba(24, 38, 32, 0.42) 100%);
}
.hero-inner { position: relative; z-index: 2; max-width: var(--container); margin: 0 auto; padding: 64px 24px; width: 100%; }
.hero-content { max-width: 700px; }
.hero .eyebrow { color: #f0d9a4; }
.hero h1 { color: #fff; font-size: clamp(2.1rem, 4.4vw, 3.4rem); margin-bottom: 0.4em; }
.hero p.lead { font-size: 1.15rem; color: #eee6d6; max-width: 560px; margin-bottom: 2em; }

/* ---- Trust badges (the 3 pill checkmarks — now rendered ABOVE the buttons) ---- */
.hero .hero-meta {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 12px !important;
	margin-top: 24px !important;
	margin-bottom: 24px !important;   /* space below badges, above buttons */
}
.hero .hero-meta span {
	display: inline-flex !important;
	align-items: center !important;
	gap: 8px !important;
	padding: 8px 16px !important;
	border-radius: 999px !important;
	font-size: 0.82rem !important;
	font-weight: 500 !important;
	line-height: 1.3 !important;
	white-space: nowrap !important;
	color: #fff !important;
	background: rgba(255, 255, 255, 0.14) !important;
	border: 1px solid rgba(255, 255, 255, 0.28) !important;
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	cursor: default;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.hero .hero-meta span svg,
.hero .hero-meta span i,
.hero .hero-meta span img {
	width: 16px !important;
	height: 16px !important;
	flex-shrink: 0;
}
.hero .hero-meta span:nth-child(1) {
	background: rgba(212, 163, 89, 0.22) !important;   /* warm gold */
	border-color: rgba(212, 163, 89, 0.45) !important;
}
.hero .hero-meta span:nth-child(2) {
	background: rgba(122, 168, 140, 0.22) !important;  /* soft sage green */
	border-color: rgba(122, 168, 140, 0.45) !important;
}
.hero .hero-meta span:nth-child(3) {
	background: rgba(122, 150, 199, 0.22) !important;  /* dusty blue */
	border-color: rgba(122, 150, 199, 0.45) !important;
}
.hero .hero-meta span:hover {
	transform: translateY(-3px);
	background: rgba(255, 255, 255, 0.22) !important;
	border-color: rgba(255, 255, 255, 0.55) !important;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}
.hero .hero-meta span:nth-child(1):hover { box-shadow: 0 8px 20px rgba(212, 163, 89, 0.35); }
.hero .hero-meta span:nth-child(2):hover { box-shadow: 0 8px 20px rgba(122, 168, 140, 0.35); }
.hero .hero-meta span:nth-child(3):hover { box-shadow: 0 8px 20px rgba(122, 150, 199, 0.35); }

@media (max-width: 560px) {
	.hero .hero-meta { gap: 10px !important; margin-bottom: 18px !important; }
	.hero .hero-meta span { font-size: 0.78rem !important; padding: 7px 14px !important; }
}

/* ---- Hero action buttons (Explore Programs / Plan Your Visit) ---- */
.hero .hero-actions {
	display: flex !important;
	gap: 16px !important;
	flex-wrap: wrap !important;
	margin-top: 8px !important;       /* small buffer so buttons don't crowd badges above */
	margin-bottom: 24px !important;
}
.hero .hero-actions .btn {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 16px 32px !important;
	border-radius: 50px !important;
	font-size: 1.05rem !important;
	font-weight: 600 !important;
	text-decoration: none !important;
	white-space: nowrap;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
	will-change: transform;
}
/* Icons inside hero buttons (the phone icon on program pages): a fixed
   size, so it never collapses to nothing on desktop or fills the whole
   full-width button on phones. */
.hero .hero-actions .btn { gap: 10px; }
.hero .hero-actions .btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.hero .hero-actions .btn-primary {
	background-color: #d99a4e !important;
	border: 2px solid #d99a4e !important;
	color: #fff !important;
	box-shadow: 0 4px 14px rgba(217, 154, 78, 0.35);
}
.hero .hero-actions .btn-primary:hover,
.hero .hero-actions .btn-primary:focus-visible {
	background-color: #c78538 !important;
	border-color: #c78538 !important;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(217, 154, 78, 0.45);
}
.hero .hero-actions .btn-outline {
	background-color: transparent !important;
	color: #fff !important;
	border: 2px solid #fff !important;
}
.hero .hero-actions .btn-outline:hover,
.hero .hero-actions .btn-outline:focus-visible {
	background: #fff !important;
	color: var(--color-primary-dark) !important;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(255, 255, 255, 0.25);
}
.hero .hero-actions .btn:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 3px;
}
@media (max-width: 480px) {
	.hero .hero-actions { flex-direction: column !important; }
	.hero .hero-actions .btn { width: 100% !important; }
}

.hero--page { min-height: 420px; }
.hero--small { min-height: 320px; }
/* Phone held sideways: keep the page banner within the screen. */
@media (orientation: landscape) and (max-height: 520px) {
	.hero--page { min-height: 300px; }
	.hero--small { min-height: 240px; }
}

/* Inner-page heroes (programs, categories, blog, contact, payment, dates,
   refund, booking — not the home slider): a deeper brand-green shade that
   stays dark all the way to the bottom, so light photos never wash out to
   white under the buttons, and a green–saffron–gold line along the bottom
   edge so the hero ends cleanly against the page. */
.hero--page::before {
	background:
		linear-gradient(0deg, rgba(20, 36, 30, 0.78) 0%, rgba(20, 36, 30, 0.35) 38%, rgba(20, 36, 30, 0) 65%),
		linear-gradient(100deg, rgba(20, 36, 30, 0.9) 0%, rgba(20, 36, 30, 0.7) 45%, rgba(20, 36, 30, 0.5) 100%);
}
.hero--page::after {
	content: '';
	position: absolute;
	left: 0; right: 0; bottom: 0;
	z-index: 2;
	height: 4px;
	background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-gold), var(--color-secondary), var(--color-primary));
}
@media print {
	.hero--page::before, .hero--page::after { display: none; }
}

.breadcrumb-row { position: relative; z-index: 2; font-size: 0.85rem; color: #e7e2d3; margin-bottom: 18px; }
.breadcrumb-row a { color: #f0d9a4; }
.breadcrumb-row a:hover { text-decoration: underline; }

/* Decorative Himalayan silhouette divider under hero */
.hero-divider {
	position: absolute; left: 0; right: 0; bottom: -1px; z-index: 2;
	line-height: 0;
}
.hero-divider svg { width: 100%; height: 60px; display: block; }