/* ==================================================================
   Hero Slider
   ================================================================== */
.mhhs-hero-slider {
	position: relative;
	width: 100%;
	border-radius: 14px;
	overflow: hidden;
	aspect-ratio: 4 / 5;
}
.mhhs-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.7s ease;
}
.mhhs-slide.active {
	opacity: 1;
	visibility: visible;
}
.mhhs-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.mhhs-slide-caption {
	position: absolute;
	left: 20px;
	bottom: 20px;
	background: rgba(0, 0, 0, 0.55);
	color: #fff;
	padding: 8px 16px;
	border-radius: 999px;
	font-size: 14px;
}
.mhhs-slider-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	width: 38px;
	height: 38px;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.85);
	color: #222;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease;
}
.mhhs-slider-btn:hover { background: #fff; }
.mhhs-slider-prev, .mhhs-prev { left: 14px; }
.mhhs-slider-next, .mhhs-next { right: 14px; }
.mhhs-dots {
	position: absolute;
	bottom: 18px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	z-index: 2;
}
.mhhs-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.55);
	cursor: pointer;
	padding: 0;
}
.mhhs-dot.active { background: #fff; }

/* ==================================================================
   Gallery carousel — "Moments at Magic Hills"
   ================================================================== */
.mhhs-gallery {
	position: relative;
	margin-top: 24px;
}
.mhhs-gallery-track {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding-bottom: 6px;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.mhhs-gallery-track::-webkit-scrollbar { display: none; }

.mhhs-gallery-item {
	flex: 0 0 auto;
	width: 260px;
	height: 200px;
	scroll-snap-align: start;
	border: none;
	padding: 0;
	border-radius: 10px;
	overflow: hidden;
	cursor: zoom-in;
	background: #eee;
	transition: transform 0.25s ease;
}
.mhhs-gallery-item:hover { transform: translateY(-3px); }
.mhhs-gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.mhhs-gallery-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	border: none;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
	cursor: pointer;
	z-index: 2;
}
.mhhs-gallery-prev { left: -18px; }
.mhhs-gallery-next { right: -18px; }
@media (max-width: 640px) {
	.mhhs-gallery-btn { display: none; }
	.mhhs-gallery-item { width: 200px; height: 160px; }
}

/* ==================================================================
   Lightbox popup
   ================================================================== */
.mhhs-lightbox {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
}
.mhhs-lightbox.mhhs-lb-open { display: flex; }
.mhhs-lightbox-overlay {
	position: absolute;
	inset: 0;
	background: rgba(10, 10, 10, 0.85);
}
.mhhs-lightbox-stage {
	position: relative;
	max-width: 90vw;
	max-height: 85vh;
	z-index: 1;
	text-align: center;
}
.mhhs-lightbox-stage img {
	max-width: 90vw;
	max-height: 80vh;
	border-radius: 8px;
	display: block;
	margin: 0 auto;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.mhhs-lightbox-caption {
	color: #f1f1f1;
	margin-top: 10px;
	font-size: 14px;
}
.mhhs-lightbox-close {
	position: absolute;
	top: 18px;
	right: 18px;
	width: 40px;
	height: 40px;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	cursor: pointer;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
}
.mhhs-lightbox-close svg { width: 18px; height: 18px; }
.mhhs-lightbox-close:hover { background: rgba(255, 255, 255, 0.3); }

.mhhs-lightbox-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 46px;
	height: 46px;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	font-size: 18px;
	cursor: pointer;
	z-index: 2;
}
.mhhs-lightbox-nav:hover { background: rgba(255, 255, 255, 0.3); }
.mhhs-lightbox-prev { left: 18px; }
.mhhs-lightbox-next { right: 18px; }

body.mhhs-no-scroll { overflow: hidden; }
