/* ========================================= */
/* RESET */
/* ========================================= */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Inter", sans-serif;
	background: #f4f4f4;
	color: white;
	overflow-x: hidden;
}

.logo img {
	width: 60px;
}

/* ========================================= */
/* HERO */
/* ========================================= */

.hero {
	position: relative;
	width: 100%;
	min-height: 100vh;
	overflow: visible;
	padding: 24px;
}

/* BACKGROUND */

.hero-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform-origin: center center;
	will-change: transform;
}

.hero-overlay {
	position: absolute;
	inset: 0;

	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.15),
		rgba(0, 0, 0, 0.55)
	);
}

/* CONTAINER */

.hero-container {
	position: relative;
	z-index: 2;

	width: 100%;
	height: calc(100vh - 48px);

	border-radius: 36px;
	overflow: hidden;
}

/* ========================================= */
/* HEADER */
/* ========================================= */

.header {
	position: absolute;
	top: 0;
	left: 0;

	width: 100%;
	padding: 28px 42px;

	display: flex;
	align-items: center;
	justify-content: space-between;

	z-index: 5;
}

/* LOGO */

.logo {
	display: flex;
	align-items: center;
	gap: 14px;
}

.logo-circle {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.4);

	display: flex;
	align-items: center;
	justify-content: center;

	font-size: 12px;
}

.logo h2 {
	font-family: "Cormorant Garamond", serif;
	font-size: 26px;
	font-weight: 500;
}

/* NAV */

.nav {
	display: flex;
	align-items: center;
	gap: 36px;
}

.nav a {
	color: white;
	text-decoration: none;
	font-size: 14px;
	opacity: 0.85;
	transition: 0.3s;
}

.nav a:hover {
	opacity: 1;
}

/* ICONS */

.header-icons {
	display: flex;
	gap: 16px;
}

.header-icons span {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);

	display: flex;
	align-items: center;
	justify-content: center;

	backdrop-filter: blur(10px);

	cursor: pointer;
}

/* ========================================= */
/* HERO CONTENT */
/* ========================================= */

.hero-content {
	position: absolute;
	left: 80px;
	top: 50%;

	transform: translateY(-50%);

	z-index: 3;

	max-width: 560px;

	will-change: transform, opacity;
}

.hero-title {
	font-family: "Cormorant Garamond", serif;
	font-size: 92px;
	line-height: 0.95;
	font-weight: 500;

	margin-bottom: 30px;
}

.hero-description {
	max-width: 520px;
	line-height: 1.9;
	color: rgba(255, 255, 255, 0.8);

	margin-bottom: 42px;
}

/* BUTTON */

.hero-button {
	width: 190px;
	height: 58px;

	border-radius: 999px;

	border: 1px solid rgba(255, 255, 255, 0.5);

	background: transparent;

	color: white;

	cursor: pointer;

	transition: 0.4s;
}

.hero-button:hover {
	background: white;
	color: black;
}

/* ========================================= */
/* RIGHT GALLERY */
/* ========================================= */

.hero-gallery {
	position: absolute;
	right: 70px;
	top: 50%;

	transform: translateY(-50%);

	display: flex;
	flex-direction: column;
	gap: 14px;

	z-index: 3;
}

.gallery-item {
	width: 170px;
	height: 110px;

	border-radius: 18px;

	overflow: hidden;

	cursor: pointer;

	opacity: 0.7;

	transition: 0.4s;
}

.gallery-item.active {
	opacity: 1;
	transform: scale(1.04);
	border: 2px solid white;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ========================================= */
/* HERO RIGHT — BOOKING PANEL */
/* ========================================= */

.hero-right {
	position: absolute;
	right: 72px;
	top: 65%;

	transform: translateY(-50%);

	z-index: 3;

	width: 420px;

	will-change: width, top;
}

.booking-panel {
	background: rgba(12, 8, 6, 0.32);
	backdrop-filter: blur(28px);
	-webkit-backdrop-filter: blur(28px);

	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 20px;

	padding: 30px 28px;

	display: flex;
	flex-direction: column;
}

.booking-panel-label {
	font-family: "Cormorant Garamond", serif;
	font-size: 17px;
	font-weight: 400;
	letter-spacing: 0.5px;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 12px;
	text-align: center;
}

/* DIVIDER — appears as fields reveal */

.booking-divider {
	width: 100%;
	height: 1px;
	background: rgba(255, 255, 255, 0);
	margin-bottom: 0;
	flex-shrink: 0;
}

/* FIELDS WRAP — hidden initially */

.booking-fields-wrap {
	overflow: hidden;
	height: 0;
	opacity: 0;
	display: flex;
	flex-direction: column;
	gap: 22px;
}

/* FIELD */

.booking-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.booking-fields-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.booking-field label {
	font-size: 10px;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
}

.booking-field input,
.booking-field select {
	width: 100%;
	border: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.18);
	outline: none;

	background: transparent;

	color: white;

	height: 40px;

	padding: 0 2px;

	font-family: "Inter", sans-serif;
	font-size: 14px;

	border-radius: 0;

	transition: 0.3s;
}

.booking-field input:focus,
.booking-field select:focus {
	border-bottom-color: rgba(255, 255, 255, 0.55);
}

.booking-field select option {
	background: #1a1410;
	color: white;
}

/* BUTTON */

.booking-button {
	position: relative;

	width: 100%;
	height: 64px;

	margin-top: 16px;

	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 999px;

	background: transparent;

	color: white;

	font-size: 10px;
	font-weight: 600;
	letter-spacing: 2.5px;

	cursor: pointer;

	flex-shrink: 0;

	overflow: hidden;
}

.booking-button:hover {
	background: rgba(255, 255, 255, 0.06);
}

/* BUTTON STATE LAYERS */

.btn-state {
	position: absolute;
	inset: 0;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;

	font-size: 10px;
	font-weight: 600;
	letter-spacing: 2.5px;
	white-space: nowrap;
}

.btn-state--scroll {
	opacity: 1;
}

.btn-state--cta {
	opacity: 0;
}

/* MOUSE SCROLL ICON */

.btn-mouse-icon {
	width: 16px;
	height: 24px;

	border: 1.5px solid rgba(255, 255, 255, 0.65);
	border-radius: 8px;

	position: relative;
	flex-shrink: 0;
}

.btn-mouse-icon::after {
	content: "";
	position: absolute;
	top: 4px;
	left: 50%;
	transform: translateX(-50%);

	width: 2px;
	height: 5px;

	background: rgba(255, 255, 255, 0.75);
	border-radius: 1px;

	animation: btnScrollDot 1.6s ease-in-out infinite;
}

@keyframes btnScrollDot {
	0% {
		opacity: 1;
		transform: translateX(-50%) translateY(0);
	}
	80% {
		opacity: 0;
		transform: translateX(-50%) translateY(7px);
	}
	100% {
		opacity: 0;
		transform: translateX(-50%) translateY(7px);
	}
}

/* ========================================= */
/* SLIDER NAV */
/* ========================================= */

.hero-dots {
	position: absolute;
	left: 80px;
	bottom: 130px;

	display: flex;
	gap: 12px;

	z-index: 5;
}

.hero-dot {
	width: 10px;
	height: 10px;

	border-radius: 50%;

	background: rgba(255, 255, 255, 0.3);

	cursor: pointer;
}

.hero-dot.active {
	background: white;
}

/* ========================================= */
/* MOBILE */
/* ========================================= */

@media (max-width: 1100px) {
	.hero-title {
		font-size: 72px;
	}

	.hero-gallery {
		display: none;
	}

	.hero-right {
		right: 40px;
		width: 360px;
	}
}

@media (max-width: 768px) {
	.hero {
		padding: 14px;
	}

	.hero-container {
		border-radius: 24px;
	}

	.header {
		padding: 22px;
	}

	.nav {
		display: none;
	}

	.hero-content {
		left: 30px;
		right: 30px;
		max-width: 100%;
	}

	.hero-title {
		font-size: 54px;
	}

	.hero-description {
		font-size: 14px;
	}

	.hero-right {
		display: none;
	}

	.hero-dots {
		left: 30px;
		bottom: 40px;
	}
}

/* ========================================= */
/* ABOUT SECTION */
/* ========================================= */

.about-section {
	position: relative;

	padding: 180px 0 140px;

	background: #fff;

	overflow: hidden;
}

/* CONTAINER */

.about-container {
	width: min(1350px, 90%);
	margin: auto;

	display: grid;

	grid-template-columns:
		1fr
		1fr;

	gap: 120px;

	align-items: center;
}

/* ========================================= */
/* GALLERY */
/* ========================================= */

.about-gallery {
	position: relative;
	width: 100%;
	height: 755px;
}

/* DECORATION */

.about-decoration {
	position: absolute;
	left: 60px;
	top: 60px;
	width: 360px;
	height: 360px;
	border-radius: 50%;
	border: 1px solid rgba(0, 0, 0, 0.05);
	z-index: 1;
	pointer-events: none;
}

/* BASE IMAGE — JS controls opacity & transform */

.about-image {
	position: absolute;
	overflow: hidden;
	background: white;
	padding: 7px;
	border-radius: 3px;
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1), 0 3px 10px rgba(0, 0, 0, 0.06);
	cursor: pointer;
	opacity: 0;
	will-change: transform, box-shadow, opacity, filter;
	transition:
		transform 0.55s cubic-bezier(0.34, 1.4, 0.64, 1),
		opacity 0.7s ease,
		box-shadow 0.4s ease,
		filter 0.4s ease;
}

.about-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 1px;
	pointer-events: none;
	user-select: none;
}

/* SCATTERED POSITIONS */

.g-img-1 { top: 0;    left: 0;    width: 255px; height: 330px; z-index: 3; }
.g-img-2 { top: 0;    left: 195px; width: 280px; height: 195px; z-index: 4; }
.g-img-3 { top: 310px; left: 0;   width: 230px; height: 195px; z-index: 3; }
.g-img-4 { top: 165px; left: 182px; width: 245px; height: 318px; z-index: 5; }
.g-img-5 { top: 465px; left: 0;   width: 288px; height: 198px; z-index: 4; }
.g-img-6 { top: 25px;  left: 425px; width: 148px; height: 208px; z-index: 4; }
.g-img-7 { top: 520px; left: 232px; width: 272px; height: 178px; z-index: 6; }
.g-img-8 { top: 180px; left: 388px; width: 185px; height: 260px; z-index: 3; }
.g-img-9 { top: 540px; left: 430px; width: 155px; height: 195px; z-index: 4; }

/* OTHER IMAGES — subtle recede, scatter handled by JS */

.about-gallery.has-hover .about-image:not(.is-focused) {
	opacity: 0.82 !important;
	filter: brightness(0.94) saturate(0.9);
}

/* FOCUSED IMAGE */

.about-image.is-focused {
	z-index: 10 !important;
	box-shadow:
		0 48px 90px rgba(0, 0, 0, 0.22),
		0 8px 20px rgba(0, 0, 0, 0.1) !important;
}

/* ========================================= */
/* CONTENT */
/* ========================================= */

.about-content {
	max-width: 560px;
}

/* LABEL */

.about-label {
	display: block;

	font-size: 11px;

	letter-spacing: 3px;

	color: #9f8b5e;

	margin-bottom: 26px;
}

/* TITLE */

.about-title {
	font-family: "Cormorant Garamond", serif;

	font-size: 64px;

	line-height: 1.05;

	color: #1d1d1d;

	font-weight: 500;

	margin-bottom: 38px;
}

/* DESCRIPTION */

.about-description {
	color: #6d6d6d;

	line-height: 2;

	font-size: 16px;

	margin-bottom: 28px;
}

/* BUTTON */

.about-button {
	width: 180px;
	height: 56px;

	border: none;

	border-radius: 999px;

	background: #c4ab74;

	color: white;

	font-size: 13px;

	letter-spacing: 2px;

	cursor: pointer;

	transition: 0.4s ease;
}

.about-button:hover {
	background: #b79a5d;
	transform: translateY(-4px);
}

/* ========================================= */
/* RESPONSIVE */
/* ========================================= */

@media (max-width: 1100px) {
	.about-container {
		grid-template-columns: 1fr;
		gap: 80px;
	}

	.about-gallery {
		margin: auto;
	}
}

@media (max-width: 768px) {
	.about-section {
		padding: 120px 0 100px;
	}

	.about-gallery {
		height: 480px;
	}

	.about-gallery { height: 500px; }

	.g-img-1 { top: 0;    left: 0;    width: 140px; height: 181px; }
	.g-img-2 { top: 0;    left: 107px; width: 154px; height: 107px; }
	.g-img-3 { top: 170px; left: 0;   width: 127px; height: 107px; }
	.g-img-4 { top: 90px;  left: 100px; width: 135px; height: 175px; }
	.g-img-5 { top: 258px; left: 0;   width: 158px; height: 109px; }
	.g-img-6 { top: 14px;  left: 234px; width: 82px;  height: 114px; }
	.g-img-7 { top: 288px; left: 128px; width: 150px; height: 98px; }
	.g-img-8 { top: 100px; left: 213px; width: 102px; height: 143px; }
	.g-img-9 { top: 298px; left: 237px; width: 96px;  height: 107px; }

	.about-decoration {
		width: 260px;
		height: 260px;
		left: 30px;
		top: 30px;
	}

	.about-title {
		font-size: 46px;
	}

	.about-description {
		font-size: 15px;
		line-height: 1.9;
	}
}

/* ========================================= */
/* STICKY HEADER */
/* ========================================= */

.sticky-header {
	position: fixed;

	top: 0;
	left: 0;

	width: 100%;
	height: 82px;

	z-index: 9999;

	display: flex;
	align-items: center;

	transform: translateY(-100%);

	transition:
		transform 0.45s ease,
		background 0.45s ease,
		backdrop-filter 0.45s ease;

	background: #4b3a30d1;

	backdrop-filter: blur(18px);

	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* ACTIVE */

.sticky-header.active {
	transform: translateY(0);
}

/* INNER */

.sticky-inner {
	width: min(1400px, 92%);
	margin: auto;

	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* ========================================= */
/* LOGO */
/* ========================================= */

.sticky-logo {
	display: flex;
	align-items: center;
	gap: 14px;
}

.sticky-logo-circle {
	width: 42px;
	height: 42px;

	border-radius: 50%;

	border: 1px solid rgba(255, 255, 255, 0.25);

	display: flex;
	align-items: center;
	justify-content: center;

	color: white;

	font-size: 12px;
}

.sticky-logo h2 {
	font-family: "Cormorant Garamond", serif;

	font-size: 28px;

	font-weight: 500;

	color: white;
}

/* ========================================= */
/* NAV */
/* ========================================= */

.sticky-nav {
	display: flex;
	align-items: center;
	gap: 42px;
}

.sticky-nav a {
	position: relative;

	color: rgba(255, 255, 255, 0.72);

	text-decoration: none;

	font-size: 13px;

	letter-spacing: 1px;

	transition: 0.3s ease;
}

.sticky-nav a::after {
	content: "";

	position: absolute;

	left: 0;
	bottom: -8px;

	width: 0;
	height: 1px;

	background: white;

	transition: 0.3s ease;
}

.sticky-nav a:hover {
	color: white;
}

.sticky-nav a:hover::after {
	width: 100%;
}

/* ========================================= */
/* BUTTON */
/* ========================================= */

.sticky-book-btn {
	width: 150px;
	height: 46px;

	border: none;

	border-radius: 999px;

	background: white;

	color: black;

	font-size: 12px;

	letter-spacing: 2px;

	cursor: pointer;

	transition: 0.4s ease;
}

.sticky-book-btn:hover {
	transform: translateY(-2px);
}

/* ========================================= */
/* MOBILE */
/* ========================================= */

@media (max-width: 992px) {
	.sticky-nav {
		display: none;
	}
}

@media (max-width: 768px) {
	.sticky-header {
		height: 72px;
	}

	.sticky-logo h2 {
		font-size: 24px;
	}

	.sticky-book-btn {
		width: 120px;
		height: 42px;

		font-size: 11px;
	}
}

/* ========================================= */
/* DESTINATION SECTION */
/* ========================================= */

.destination-section {
	position: relative;
	width: 100%;
	min-height: 100vh;
	overflow: hidden;
	padding: 120px 0;
	background: black;
}

/* VIDEO */

.destination-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
	filter: brightness(0.45);
}

.destination-overlay {
	position: absolute;
	inset: 0;

	z-index: 2;
}

/* CONTAINER */

.destination-container {
	position: relative;
	z-index: 3;
	width: min(1500px, 92%);
	margin: auto;
}

/* TOP */

.destination-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 240px;
}

.destination-heading {
	font-size: 3vw;
	font-weight: 700;
	color: #f4e8e3;
}

/* FILTER */

.destination-filter {
	display: flex;
	gap: 40px;
}

.destination-filter-btn {
	background: none;
	border: none;
	color: white;
	font-size: 20px;
	cursor: pointer;
	opacity: 0.5;
	transition: 0.4s;
	text-transform: lowercase;
}

.destination-filter-btn.active {
	opacity: 1;
}

/* CONTENT */

.destination-content {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 80px;
	align-items: center;
}

/* LEFT */

.destination-subtitle {
	display: block;
	font-size: 14px;
	letter-spacing: 3px;
	opacity: 0.7;
}

.destination-title {
	font-size: 4vw;
	line-height: 0.9;
	font-weight: 800;
	margin-bottom: 30px;
}

.destination-description {
	max-width: 520px;
	line-height: 1.9;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.75);
	margin-bottom: 40px;
}

.destination-button {
	width: 220px;
	height: 70px;
	border: none;
	background: #0c2430;
	color: white;
	border-radius: 14px;
	font-size: 20px;
	font-weight: 600;
	cursor: pointer;
	transition: 0.4s;
}

.destination-button:hover {
	transform: translateY(-4px);
}

/* RIGHT */

.destination-right {
	position: relative;
}

/* NAV */

.destination-navigation {
	display: flex;
	gap: 16px;
	margin-bottom: 30px;
}

.destination-nav {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.18);
	color: white;
	cursor: pointer;
	transition: 0.4s;
}

.destination-nav:hover {
	background: white;
	color: black;
}

/* SLIDER */

.destination-slider-wrapper {
	overflow: hidden;
}

.destination-slider {
	display: flex;
	gap: 28px;
	transition: transform 0.7s ease;
}

/* CARD */

.destination-card {
	position: relative;
	width: 200px;
	height: 300px;
	border-radius: 28px;
	overflow: hidden;
	flex-shrink: 0;
	cursor: pointer;
	transition: 0.6s ease;
}

.destination-card.active {
	transform: translateY(-20px);
}

.destination-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.destination-card::after {
	content: "";

	position: absolute;
	inset: 0;

	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.75),
		rgba(0, 0, 0, 0.05)
	);
}

.destination-card span {
	position: absolute;
	left: 24px;
	bottom: 24px;
	z-index: 2;
	font-size: 25px;
	font-weight: 700;
}

/* RESPONSIVE */

@media (max-width: 1200px) {
	.destination-content {
		grid-template-columns: 1fr;
	}

	.destination-heading {
		font-size: 70px;
	}

	.destination-title {
		font-size: 90px;
	}
}

@media (max-width: 768px) {
	.destination-section {
		padding: 30px 0;
	}

	.destination-top {
		flex-direction: column;
		align-items: flex-start;
		gap: 30px;
	}

	.destination-filter {
		gap: 20px;
		flex-wrap: wrap;
	}

	.destination-heading {
		font-size: 30px;
	}

	.destination-title {
		font-size: 35px;
	}

	.destination-card {
		width: 130px;
		height: 200px;
	}

	.destination-card span {
		font-size: 18px;
	}

	.destination-filter-btn {
		font-size: 15px;
	}
	.destination-top {
		margin-bottom: 60px;
	}
	.destination-slider {
		gap: 15px;
	}
}

/* ========================================= */
/* ROOM SECTION */
/* ========================================= */

.room-section {
	position: relative;

	padding: 140px 0 80px 0;

	background: #f3f0ea;

	overflow: hidden;
}

/* CONTAINER */

.room-container {
	width: min(1450px, 92%);
	margin: auto;
}

/* ========================================= */
/* HEADING */
/* ========================================= */

.room-heading {
	text-align: center;
	margin-bottom: 80px;
}

.room-label {
	display: block;

	font-size: 14px;

	letter-spacing: 4px;

	color: #b69b6b;

	margin-bottom: 24px;
}

.room-title {
	font-family: "Cormorant Garamond", serif;

	font-size: 72px;

	font-weight: 500;

	line-height: 1;

	color: #1d1d1d;
}

/* ========================================= */
/* SLIDER */
/* ========================================= */

.room-slider-wrapper {
	position: relative;
}

.room-slider {
	position: relative;
	overflow: hidden;
}

/* SLIDE */

.room-slide {
	display: none;

	grid-template-columns:
		1fr
		1fr;

	background: white;

	min-height: 500px;

	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.06);

	animation: roomFade 0.6s ease;
}

.room-slide.active {
	display: grid;
}

/* ANIMATION */

@keyframes roomFade {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ========================================= */
/* INFO */
/* ========================================= */

.room-info {
	padding: 80px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* PRICE */

.room-price {
	margin-bottom: 34px;
}

.room-price span {
	display: block;

	color: #777;

	margin-bottom: 8px;
}

.room-price h3 {
	font-size: 54px;

	color: #1d1d1d;

	font-weight: 700;
}

.room-price small {
	font-size: 18px;
	color: #888;
}

/* TITLE */

.room-name {
	font-family: "Cormorant Garamond", serif;

	font-size: 64px;

	font-weight: 500;

	color: #1d1d1d;

	margin-bottom: 26px;
}

/* DESCRIPTION */

.room-description {
	max-width: 520px;

	line-height: 2;

	color: #666;

	margin-bottom: 42px;
}

/* FEATURES */

.room-features {
	display: grid;

	grid-template-columns:
		1fr
		1fr;

	gap: 20px;

	margin-bottom: 50px;
}

.room-feature {
	color: #5d5d5d;

	font-size: 14px;

	letter-spacing: 1px;
}

/* ACTIONS */

.room-actions {
	display: flex;
	gap: 18px;
}

/* BUTTONS */

.book-room-btn {
	width: 190px;
	height: 58px;

	border: none;

	background: #c4ab74;

	color: white;

	letter-spacing: 2px;

	cursor: pointer;

	transition: 0.4s;
}

.book-room-btn:hover {
	background: #b89c67;
}

.view-room-btn {
	width: 220px;
	height: 58px;

	border: 1px solid #cfcfcf;

	background: white;

	color: #222;

	letter-spacing: 2px;

	cursor: pointer;

	transition: 0.4s;
}

.view-room-btn:hover {
	background: #111;
	color: white;
}

/* ========================================= */
/* IMAGE */
/* ========================================= */

.room-image {
	position: relative;
	overflow: hidden;
}

.room-image video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ========================================= */
/* NAVIGATION */
/* ========================================= */

.room-nav {
	position: absolute;
	top: 50%;

	transform: translateY(-50%);

	width: 72px;
	height: 72px;

	border: none;

	border-radius: 50%;

	background: rgba(160, 160, 160, 0.45);

	color: white;

	font-size: 22px;

	cursor: pointer;

	z-index: 5;

	transition: 0.4s;
}

.room-nav:hover {
	background: #111;
}

.prev-room {
	left: -36px;
}

.next-room {
	right: -36px;
}

/* ========================================= */
/* MOBILE */
/* ========================================= */

@media (max-width: 1100px) {
	.room-slide {
		grid-template-columns: 1fr;
	}

	.room-image {
		min-height: 420px;
	}
}

@media (max-width: 768px) {
	.room-section {
		padding: 100px 0;
	}

	.room-title {
		font-size: 52px;
	}

	.room-info {
		padding: 40px 30px;
	}

	.room-name {
		font-size: 46px;
	}

	.room-price h3 {
		font-size: 42px;
	}

	.room-features {
		grid-template-columns: 1fr;
	}

	.room-actions {
		flex-direction: column;
	}

	.book-room-btn,
	.view-room-btn {
		width: 100%;
	}

	.room-nav {
		width: 56px;
		height: 56px;
	}

	.prev-room {
		left: 10px;
	}

	.next-room {
		right: 10px;
	}
}

/* ========================================= */
/* TESTIMONIAL SECTION */
/* ========================================= */

.testimonial-section {
	position: relative;

	padding: 140px 0;

	background: #f5f5f5;

	overflow: hidden;
}

/* CONTAINER */

.testimonial-container {
	width: min(1450px, 92%);
	margin: auto;
}

/* ========================================= */
/* HEADING */
/* ========================================= */

.testimonial-heading {
	text-align: center;
	margin-bottom: 90px;
}

.testimonial-label {
	display: block;

	color: #f28ca6;

	font-size: 14px;

	letter-spacing: 2px;

	margin-bottom: 22px;
}

.testimonial-title {
	font-size: 72px;

	line-height: 1.1;

	color: #111827;

	font-weight: 700;
}

/* ========================================= */
/* SLIDER */
/* ========================================= */

.testimonial-slider-wrapper {
	overflow: visible;
}

.testimonial-slider {
	display: flex;

	gap: 40px;

	transition: transform 0.7s ease;
}

/* ========================================= */
/* CARD */
/* ========================================= */

.testimonial-card {
	position: relative;

	flex: 0 0 calc((100% - 80px) / 3);

	background: white;

	border-radius: 24px;

	padding: 80px 40px 36px;

	box-shadow: 0 25px 70px rgba(0, 0, 0, 0.04);

	min-height: 340px;
}

/* AVATAR */

.testimonial-avatar {
	position: absolute;

	top: -34px;
	left: 40px;

	width: 68px;
	height: 68px;

	border-radius: 50%;

	overflow: hidden;

	border: 6px solid #f5f5f5;
}

.testimonial-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* TEXT */

.testimonial-text {
	line-height: 2;

	color: #666;

	font-size: 16px;

	margin-bottom: 38px;
}

/* FOOTER */

.testimonial-footer {
	display: flex;

	align-items: flex-end;
	justify-content: space-between;

	padding-top: 28px;

	border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.testimonial-footer h4 {
	color: #111827;

	font-size: 20px;

	margin-bottom: 8px;
}

.testimonial-footer span {
	color: #999;

	font-size: 14px;
}

/* STARS */

.testimonial-stars {
	color: #ff4f87;

	letter-spacing: 4px;

	font-size: 18px;
}

/* ========================================= */
/* NAVIGATION */
/* ========================================= */

.testimonial-navigation {
	display: flex;

	justify-content: center;

	gap: 18px;

	margin-top: 60px;
}

.testimonial-nav {
	width: 62px;
	height: 62px;

	border: none;

	border-radius: 50%;

	background: white;

	color: #111;

	font-size: 20px;

	cursor: pointer;

	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

	transition: 0.4s;
}

.testimonial-nav:hover {
	background: #111;
	color: white;
}

/* ========================================= */
/* MOBILE */
/* ========================================= */

@media (max-width: 1100px) {
	.testimonial-card {
		flex: 0 0 calc((100% - 40px) / 2);
	}
}

@media (max-width: 768px) {
	.testimonial-section {
		padding: 100px 0;
	}

	.testimonial-title {
		font-size: 48px;
	}

	.testimonial-card {
		flex: 0 0 100%;

		padding: 80px 28px 28px;
	}

	.testimonial-text {
		font-size: 15px;
		line-height: 1.9;
	}
}

/* ========================================= */
/* CONTACT MAP SECTION */
/* ========================================= */

.contact-map-section {
	position: relative;

	height: 100vh;

	overflow: hidden;

	background: #f5f5f5;
}

/* ========================================= */
/* MAP */
/* ========================================= */

.contact-map {
	position: relative;

	width: 100%;
	height: 100%;

	background-image: url("https://upload.wikimedia.org/wikipedia/commons/2/2e/Indonesia_location_map.svg");

	background-size: cover;
	background-position: center;
}

/* LIGHT OVERLAY */

.map-overlay {
	position: absolute;
	inset: 0;

	background: rgba(255, 255, 255, 0.78);
}

/* ========================================= */
/* CONTACT CARD */
/* ========================================= */

.contact-card {
	position: absolute;

	right: 10%;
	top: 50%;

	transform: translateY(-50%);

	width: 420px;

	padding: 60px 46px;

	background: #a66a4e;

	border-radius: 28px;

	z-index: 5;

	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
}

/* TITLE */

.contact-title {
	font-size: 54px;

	color: white;

	margin-bottom: 52px;

	font-weight: 600;
}

/* GROUP */

.contact-group {
	margin-bottom: 34px;
}

/* LABEL */

.contact-label {
	display: block;

	color: rgba(255, 255, 255, 0.5);

	font-size: 18px;

	margin-bottom: 10px;
}

/* TEXT */

.contact-group p {
	color: white;

	font-size: 20px;

	line-height: 1.4;

	font-weight: 500;
}

/* ========================================= */
/* SOCIAL */
/* ========================================= */

.contact-social {
	display: flex;
	gap: 22px;
}

.contact-social a {
	color: white;

	text-decoration: none;

	font-size: 20px;

	border-bottom: 1px solid rgba(255, 255, 255, 0.3);

	transition: 0.3s;
}

.contact-social a:hover {
	opacity: 0.7;
}

/* ========================================= */
/* NAVIGATION */
/* ========================================= */

.contact-nav {
	position: absolute;

	right: -46px;
	top: 120px;

	display: flex;

	background: white;

	border-radius: 999px;

	overflow: hidden;

	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-arrow {
	width: 64px;
	height: 64px;

	border: none;

	background: white;

	font-size: 22px;

	cursor: pointer;

	transition: 0.3s;
}

.contact-arrow:hover {
	background: #f3f3f3;
}

/* ========================================= */
/* MAP PIN */
/* ========================================= */

.map-pin {
	position: absolute;

	width: 26px;
	height: 26px;

	border-radius: 50%;

	background: #2f6d51;

	z-index: 3;

	cursor: pointer;
}

.map-pin span {
	position: absolute;

	inset: -28px;

	border-radius: 50%;

	background: rgba(47, 109, 81, 0.18);

	animation: pinPulse 2.4s infinite;
}

/* ACTIVE */

.map-pin.active {
	width: 34px;
	height: 34px;

	transform: translate(-4px, -4px);
}

.map-pin.active span {
	inset: -44px;
}

/* PULSE */

@keyframes pinPulse {
	0% {
		transform: scale(0.6);
		opacity: 1;
	}

	100% {
		transform: scale(1.4);
		opacity: 0;
	}
}

/* ========================================= */
/* MOBILE */
/* ========================================= */

@media (max-width: 992px) {
	.contact-map-section {
		height: auto;
	}

	.contact-map {
		min-height: 1200px;
	}

	.contact-card {
		position: relative;

		top: auto;
		left: auto;

		transform: none;

		width: min(92%, 420px);

		margin: 80px auto;
	}

	.contact-nav {
		right: 20px;
		top: 20px;
	}
}

@media (max-width: 768px) {
	.contact-card {
		padding: 42px 28px;
	}

	.contact-title {
		font-size: 42px;
	}

	.contact-group p {
		font-size: 20px;
	}

	.contact-social {
		flex-wrap: wrap;
	}

	.contact-social a {
		font-size: 16px;
	}
}

/* ========================================= */
/* INDONESIA MAP */
/* ========================================= */

.contact-map {
	position: relative;

	width: 100%;
	height: 100%;

	overflow: hidden;

	background: #f5f5f3;
}

.contact-map-bg {
	position: absolute;
	inset: 0;

	background-image: url("../images/map.png");

	background-size: cover;

	background-position: center;

	background-repeat: no-repeat;

	filter: grayscale(100%) brightness(1.08) contrast(0.82);

	transform: scale(1.02);
}

/* LIGHT OVERLAY */

.map-overlay {
	position: absolute;
	inset: 0;

	background: linear-gradient(
		to right,
		rgba(255, 255, 255, 0.78),
		rgba(255, 255, 255, 0.55)
	);

	z-index: 1;
}

.contact-card {
	position: absolute;

	z-index: 5;
}

/* ========================================= */
/* FOOTER */
/* ========================================= */

.footer {
	position: relative;
	padding: 50px 0 20px;
	background: #111;
	color: white;
	overflow: hidden;
}

/* CONTAINER */

.footer-container {
	width: min(1400px, 85%);
	margin: auto;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 21px;
	padding-bottom: 25px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ========================================= */
/* BRAND */
/* ========================================= */

.footer-brand {
	max-width: 340px;
}

.footer-brand h2 {
	font-family: "Cormorant Garamond", serif;

	font-size: 42px;

	letter-spacing: 6px;

	margin-bottom: 20px;
}

.footer-brand p {
	color: rgba(255, 255, 255, 0.58);

	line-height: 1.9;

	font-size: 15px;
}

/* ========================================= */
/* LINKS */
/* ========================================= */

.footer-links,
.footer-socials {
	display: flex;
	flex-direction: column;

	gap: 16px;
}

.footer-links a,
.footer-socials a {
	color: rgba(255, 255, 255, 0.7);

	text-decoration: none;

	font-size: 15px;

	transition: 0.3s ease;
}

.footer-links a:hover,
.footer-socials a:hover {
	color: white;

	transform: translateX(4px);
}

/* ========================================= */
/* BOTTOM */
/* ========================================= */

.footer-bottom {
	width: min(1400px, 92%);
	margin: auto;

	padding-top: 28px;

	display: flex;
	justify-content: center;
}

.footer-bottom p {
	color: rgba(255, 255, 255, 0.42);

	font-size: 14px;

	letter-spacing: 1px;
}

/* ========================================= */
/* MOBILE */
/* ========================================= */

@media (max-width: 768px) {
	.footer {
		padding: 70px 0 30px;
	}

	.footer-container {
		flex-direction: column;

		gap: 40px;
	}

	.footer-brand h2 {
		font-size: 34px;
	}
}

.all-room-btn {
	margin: 80px auto 0px auto;
	display: block;
}

@media (max-width: 768px) {
	.all-rooms-btn {
		width: 100%;
		justify-content: center;
	}
}

/* ========================================= */
/* ALL ROOMS BUTTON */
/* ========================================= */

.all-rooms-btn {
	display: flex;
	align-items: center;
	gap: 12px;

	padding: 18px 34px;

	border: 1px solid #d7d1c7;

	background: white;

	color: #1c1c1c;

	text-decoration: none;

	font-size: 13px;
	letter-spacing: 2px;
	text-transform: uppercase;

	transition: 0.35s ease;
	height: 60px;
}

.all-rooms-btn::after {
	content: "→";

	transition: 0.35s ease;
}

.all-rooms-btn:hover {
	background: #c3a66a;
	color: white;

	border-color: #c3a66a;
}

.all-rooms-btn:hover::after {
	transform: translateX(5px);
}

/* ========================================= */
/* GALLERY LIGHTBOX */
/* ========================================= */

.gallery-lightbox {
	position: fixed;
	inset: 0;
	z-index: 10000;
	pointer-events: none;
	visibility: hidden;
}

.gallery-lightbox.is-open {
	visibility: visible;
	pointer-events: auto;
}

/* soft overlay — page stays visible underneath */
.gallery-lightbox-bg {
	position: absolute;
	inset: 0;
	background: rgba(12, 8, 5, 0.55);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	opacity: 0;
	transition: opacity 0.5s ease;
	cursor: pointer;
}

.gallery-lightbox.is-open .gallery-lightbox-bg {
	opacity: 1;
}

/* the animating image */
.gallery-lightbox-img {
	position: fixed;
	object-fit: cover;
	object-position: center;
	z-index: 10001;
	pointer-events: none;
	display: block;
}

/* close button */
.gallery-lightbox-close {
	position: fixed;
	top: 28px;
	right: 28px;
	z-index: 10002;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	color: rgba(255, 255, 255, 0.8);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transform: scale(0.75);
	transition: opacity 0.35s ease 0.35s, transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1) 0.35s, background 0.2s ease;
}

.gallery-lightbox.is-open .gallery-lightbox-close {
	opacity: 1;
	transform: scale(1);
}

.gallery-lightbox-close:hover {
	background: rgba(255, 255, 255, 0.18);
	color: white;
}

/* image counter */
.gallery-lightbox-hint {
	position: fixed;
	bottom: 28px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10002;
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	letter-spacing: 2.5px;
	color: rgba(255, 255, 255, 0.45);
	opacity: 0;
	transition: opacity 0.35s ease 0.5s;
	pointer-events: none;
	white-space: nowrap;
}

.gallery-lightbox.is-open .gallery-lightbox-hint {
	opacity: 1;
}

@media(max-width:992px){

    .room-slide .room-info{
        order:2
    }
    .room-slide .room-image{
        order:1
    }
}

.header .logo a h2{
  color: #fff;
}
.header .logo a{
  text-decoration: none;
}

.footer-logo{
  width: 200px;
}