:root {
	--gold: #c99143;
	--gold2: #e4b86b;
	--bg: #050606;
	--card: #0d0e0c;
	--text: #f4efe6;
	--muted: #bdb4a8;
	--border: rgba(201, 145, 67, .55)
}

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

body {
	font-family: Poppins, Arial, sans-serif;
	background: var(--bg);
	color: var(--text);
	line-height: 1.5
}

a {
	text-decoration: none;
	color: inherit
}

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

.bannerstyle {
	border-radius: 10px;
	border: 2px solid #ccc;
	width: 100%;
	height: 140.41px;
	max-height: 140.41px;
	object-fit: cover;
	object-position: center center;
	display: block;
	box-sizing: border-box;
	overflow: hidden;
}

header {
	position: relative;
	width: 100%;
	z-index: 10;
	padding: 18px 0;
	background: #050606;
	border-bottom: 1px solid rgba(201, 145, 67, .25)
}

main {
	display: block;
	position: relative;
	z-index: 1;
}

.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 25px
}

.bannerdiv {
	position: relative;
}

.graydiv {
	background: #f5f4fd;
	border-radius: 10px;
	padding: 20px;
	box-shadow: 1px 3px 6px #666;
}

.logo {
	font-family: Cinzel, serif;
	color: #fff;
	line-height: 1;
	text-align: center;
	font-size: 30px;
	letter-spacing: 5px
}

.logo span {
	display: block;
	font-size: 14px;
	letter-spacing: 6px
}

.logo:before {
	content: '♛';
	display: block;
	color: var(--gold2);
	font-size: 28px
}

.menu {
	display: flex;
	gap: 25px;
	font-size: 14px
}

.menu a.active,
.menu a:hover {
	color: var(--gold2)
}

.btn {
	background: linear-gradient(135deg, var(--gold2), var(--gold));
	color: #12100b;
	padding: 12px 24px;
	border-radius: 4px;
	font-weight: 600;
	display: inline-block;
	border: 1px solid #d2a35a
}

.btn.dark {
	background: #111;
	color: #fff;
	border: 1px solid var(--gold)
}

.hero {
	min-height: 720px;
	padding-top: 28px;
	background: linear-gradient(90deg, #050606 0%, rgba(5, 6, 6, .85) 35%, rgba(5, 6, 6, .25) 75%), url('https://images.unsplash.com/photo-1613490493576-7fde63acd811?q=80&w=1600&auto=format&fit=crop') center/cover
}

.eyebrow {
	font-family: Cinzel, serif;
	color: var(--gold2);
	letter-spacing: 3px;
	font-weight: 700;
	font-size: 15px
}

.hero h1 {
	font-family: Cinzel, serif;
	font-size: 66px;
	line-height: .95;
	margin: 12px 0 20px
}

.hero h1 span {
	color: var(--gold2)
}

.hero p {
	color: #eee;
	max-width: 460px;
	font-size: 18px;
	margin-bottom: 28px
}

.booking-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	margin-top: 28px
}

.service {
	border-radius: 12px;
	padding: 0px;
	text-align: center;
	box-shadow: 0 0 3px #ccc;
	background: #dde9f4;
	display: block;
	text-decoration: none;
	color: inherit;
	cursor: pointer;
	transition: transform .2s ease, box-shadow .2s ease;
}

.service:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, .12);
}

.icon {
	font-size: 52px;
	color: var(--gold2);
	margin-bottom: 10px
}

.service h3,
.card h3 {
	font-size: 15px;
	color: #555;
}

.service p,
.card p {
	color: #eee;
	font-size: 13px;
	margin: 7px 0 14px
}

.small {
	font-size: 12px;
	color: #9b8569;
	margin-top: 10px
}

section {
	padding: 20px 0px;
}

.title-row {
	display: flex;
	justify-content: space-between;
	align-items: end;
	margin-bottom: 18px
}

.section-title h2 {
	font-family: Cinzel, serif;
	font-size: 34px
}

.link {
	color: var(--gold2);
	font-size: 14px
}

.destinations,
.collections {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 12px
}

.card {
	height: 210px;
	border: 1px solid var(--border);
	border-radius: 9px;
	overflow: hidden;
	position: relative;
	background: #222;
	flex: 0 0 calc((100% - 60px) / 6)
}

.card:before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(#0000 35%, #000 96%), var(--img);
	background-size: cover;
	background-position: center
}

.card-body {
	position: absolute;
	bottom: 0;
	width: 100%;
	padding: 18px;
	text-align: center
}

.mini {
	padding: 7px 18px;
	border: 1px solid var(--gold);
	border-radius: 3px;
	color: var(--gold2);
	font-size: 12px;
	display: inline-block
}

.destination-slider,
.collection-slider {
	position: relative
}

.destinations.slider-track,
.collections.slider-track {
	display: flex;
	gap: 12px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none;
	padding: 2px 2px 12px
}

.destinations.slider-track::-webkit-scrollbar,
.collections.slider-track::-webkit-scrollbar {
	display: none
}

.slider-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1px solid var(--border);
	background: #090a09e8;
	color: var(--gold2);
	font-size: 26px;
	cursor: pointer;
	box-shadow: 0 8px 25px #000
}

.slider-btn:hover {
	background: var(--gold);
	color: #111
}

.slider-btn.prev {
	left: -18px
}

.slider-btn.next {
	right: -18px
}

.slider-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 8px
}

.slider-dots button {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	border: 1px solid var(--gold);
	background: transparent;
	cursor: pointer
}

.slider-dots button.active {
	background: var(--gold2)
}

.why {
	border: 1px solid rgba(201, 145, 67, .35);
	border-radius: 12px;
	padding: 28px;
	background: #0b0c0a
}

.why h2,
.partner h2 {
	text-align: center;
	font-family: Cinzel, serif;
	color: var(--gold2);
	font-size: 25px;
	margin-bottom: 22px
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr)
}

.why-item {
	text-align: center;
	padding: 0 20px;
	border-right: 1px solid rgba(201, 145, 67, .35)
}

.why-item:last-child {
	border-right: 0
}

.why-item b {
	display: block;
	margin: 8px 0
}

.why-item p {
	color: var(--muted);
	font-size: 13px
}

.collections {
	grid-template-columns: repeat(4, 1fr)
}

.collections .card {
	flex: 0 0 calc((100% - 36px) / 4)
}

.partner {
	border: 1px solid rgba(201, 145, 67, .4);
	border-radius: 12px;
	padding: 22px;
	background: #0b0c0a
}

.partner-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 14px
}

.partner-card {
	text-align: center;
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 18px 10px
}

.partner-card h3 {
	font-family: Cinzel, serif
}

.partner-card .btn {
	width: 100%;
	padding: 7px 8px;
	font-size: 12px;
	margin-top: 8px
}

.testimonials {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px
}

.panel {
	border: 1px solid rgba(201, 145, 67, .4);
	border-radius: 12px;
	padding: 24px;
	background: #0b0c0a
}

.panel h3 {
	font-family: Cinzel, serif;
	color: var(--gold2);
	letter-spacing: 2px;
	margin-bottom: 18px
}

.review-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px
}

.review {
	border: 1px solid var(--border);
	border-radius: 9px;
	padding: 16px;
	color: var(--muted);
	font-size: 13px
}

.stars {
	color: var(--gold2);
	margin-top: 12px
}

.stats {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 18px;
	text-align: center
}

.stat b {
	font-family: Cinzel, serif;
	color: var(--gold2);
	font-size: 30px;
	display: block
}

.stat {
	border-right: 1px solid rgba(201, 145, 67, .35)
}

.stat:last-child {
	border-right: 0
}


.footer {
	background: #020b24;
	color: #fff;
	padding: 38px 20px 18px
}

.footer-wrap {
	max-width: 1360px;
	margin: auto;
	display: grid;
	grid-template-columns: 1.4fr repeat(5, 1fr);
	gap: 26px
}

.footer-logo {
	text-align: center
}

.crown {
	font-size: 38px;
	color: #f7b51c;
	line-height: 1
}

.footer-logo h2 {
	font-size: 28px;
	letter-spacing: 5px;
	margin: 8px 0 2px
}

.footer-logo span {
	letter-spacing: 8px;
	font-size: 18px
}

.footer-col {
	border-left: 1px solid rgba(255, 255, 255, .22);
	padding-left: 24px
}

.footer-col h4 {
	font-size: 14px;
	margin-bottom: 15px;
	color: #fff;
	text-transform: uppercase
}

.footer-col a {
	display: block;
	color: #d7dce8;
	font-size: 14px;
	text-decoration: none;
	margin: 9px 0;
	transition: .3s
}

.footer-col a:hover {
	color: #f7b51c;
	padding-left: 4px
}

.social {
	display: flex;
	gap: 10px;
	flex-wrap: wrap
}

.social a {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #0f6bdc;
	color: #fff;
	margin: 0;
	text-decoration: none
}

.app-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	background: #000;
	color: #fff;
	border: 1px solid #333;
	border-radius: 7px;
	padding: 8px 10px;
	margin-bottom: 10px;
	width: max-content;
	font-size: 13px
}

.copy {
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, .12);
	margin-top: 28px;
	padding-top: 16px;
	color: #cbd2e1;
	font-size: 13px
}

@media(max-width:992px) {
	.footer-wrap {
		grid-template-columns: repeat(3, 1fr)
	}

	.footer-logo {
		text-align: left
	}

	.footer-col {
		border-left: 0;
		padding-left: 0
	}
}

@media(max-width:600px) {
	.footer {
		padding: 32px 16px 15px
	}

	.footer-wrap {
		grid-template-columns: 1fr;
		gap: 22px
	}

	.footer-logo {
		text-align: center
	}

	.footer-col {
		text-align: center
	}

	.social {
		justify-content: center
	}

	.app-btn {
		margin-left: auto;
		margin-right: auto
	}

	.footer-logo h2 {
		font-size: 24px
	}

	.copy {
		font-size: 12px
	}
}

.copy {
	text-align: center;
	border-top: 1px solid rgba(201, 145, 67, .25);
	margin-top: 28px;
	padding-top: 14px;
	color: #8f8272;
	font-size: 12px
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid var(--border);
	border-radius: 6px;
	background: #0d0e0c;
	color: var(--gold2);
	font-size: 24px;
	cursor: pointer;
	align-items: center;
	justify-content: center
}

.mobile-book {
	display: none
}

@media(max-width:900px) {

	.card,
	.collections .card {
		flex-basis: calc((100% - 12px) / 2)
	}

	.slider-btn.prev {
		left: 6px
	}

	.slider-btn.next {
		right: 6px
	}

	.bannerstyle {
		border-radius: 5px;
		height: 140.41px;
		max-height: 140.41px;
		width: 100%;
		object-fit: cover;
	}

	header {
		position: relative;
		padding: 12px 0;
	}

	.nav {
		position: relative;
		flex-direction: row
	}

	.logo {
		font-size: 24px
	}

	.logo:before {
		font-size: 22px
	}

	.desktop-book {
		display: none
	}

	.mobile-book {
		display: block;
		text-align: center;
		margin-top: 10px
	}

	.menu-toggle {
		display: flex
	}

	section {
		padding: 10px 0px;
	}

	.slider {
		height: 260px;
	}

	.menu {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		margin-top: 12px;
		display: none;
		flex-direction: column;
		gap: 0;
		background: #090a09;
		border: 1px solid var(--border);
		border-radius: 10px;
		overflow: hidden;
		box-shadow: 0 18px 40px #000
	}

	.menu.show {
		display: flex
	}

	.menu a {
		padding: 14px 18px;
		border-bottom: 1px solid rgba(201, 145, 67, .16)
	}

	.menu a:last-child {
		border-bottom: 0
	}

	.hero {
		padding: 20px 0;
		min-height: auto
	}

	.hero h1 {
		font-size: 46px
	}

	.booking-grid,
	.destinations,
	.partner-grid,
	.why-grid,
	.footer-grid {
		grid-template-columns: 1fr 1fr
	}

	.collections,
	.testimonials,
	.review-grid,
	.stats {
		grid-template-columns: 1fr
	}

	.why-item,
	.stat {
		border-right: 0;
		border-bottom: 1px solid rgba(201, 145, 67, .25);
		padding: 16px
	}

	.card {
		height: 240px
	}
}

@media(max-width:560px) {

	.card,
	.collections .card {
		flex-basis: 100%
	}

	.booking-grid,
	.destinations,
	.partner-grid,
	.why-grid,
	.footer-grid {
		grid-template-columns: 1fr
	}

	.hero h1 {
		font-size: 38px
	}

	.title-row {
		display: block
	}

	.section-title h2 {
		font-size: 28px
	}

	.container {
		width: min(94%, 1180px)
	}
}


.title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 18px;
}

.title h2 {
	font-size: 28px;
	color: #222;
}

.title a {
	text-decoration: none;
	color: #555;
	font-weight: 600;
}

.hotel-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.hotel-card {
	background: #fff;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 5px 18px rgba(0, 0, 0, .08);
	transition: .35s;
}

.hotel-card:hover {
	transform: translateY(-8px);
}

.hotel-img {
	height: 170px;
	overflow: hidden;
	position: relative;
}

.hotel-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .4s;
}

.hotel-card:hover img {
	transform: scale(1.08);
}

.rating {
	position: absolute;
	left: 10px;
	bottom: 10px;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	background: rgba(0, 0, 0, .55);
	padding: 5px 10px;
	border-radius: 30px;
}

.hotel-content {
	padding: 15px;
}

.hotel-content h3 {
	font-size: 17px;
	margin-bottom: 10px;
	color: #555;
}

.price {
	color: #222;
	font-size: 18px;
	font-weight: bold;
}

.price span {
	font-size: 14px;
	color: #666;
	font-weight: normal;
}

@media(max-width:992px) {

	.hotel-grid {
		grid-template-columns: repeat(2, 1fr);
	}

}

@media(max-width:600px) {

	.hotel-grid {
		grid-template-columns: 1fr;
	}

	.title h2 {
		font-size: 22px;
	}

}

.section-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 18px;
}

.section-title h2 {
	font-size: 28px;
	color: #222;
}

.section-title a {
	text-decoration: none;
	font-weight: 600;
	color: #444;
}

.destination-slider {
	display: flex;
	gap: 15px;
	overflow-x: auto;
	scroll-behavior: smooth;
	padding-bottom: 10px;
}

.destination-slider::-webkit-scrollbar {
	display: none;
}

.destination-card {
	width: 176px;
	height: 190px;
	border-radius: 14px;
	overflow: hidden;
	position: relative;
	cursor: pointer;
	flex-shrink: 0;
}

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

.destination-card:hover img {
	transform: scale(1.08);
}

.destination-card::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 70%;
	background: linear-gradient(transparent, rgba(0, 0, 0, .85));
}

.destination-name {
	position: absolute;
	bottom: 15px;
	left: 15px;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	z-index: 2;
}

@media(max-width:768px) {

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

	.section-title h2 {
		font-size: 22px;
	}

	.destination-name {
		font-size: 17px;
	}

}

.luxury-section {
	max-width: 1360px;
	margin: auto;
}

.section-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 14px;
}

.section-head h2 {
	margin: 0;
	font-size: 24px;
	color: #111;
}

.section-head a {
	color: #111;
	font-weight: 600;
	text-decoration: none;
}

.luxury-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.luxury-card {
	height: 160px;
	border-radius: 14px;
	overflow: hidden;
	position: relative;
	box-shadow: 0 6px 16px rgba(0, 0, 0, .15);
}

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

.luxury-card:after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, .75), transparent);
}

.luxury-card span {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 14px;
	z-index: 2;
	text-align: center;
	color: #fff;
	font-weight: 700;
}

@media(max-width:768px) {
	.luxury-grid {
		display: flex;
		overflow-x: auto;
		gap: 12px;
	}

	.luxury-card {
		min-width: 220px;
		height: 130px;
	}
}

/* Homepage section carousels (Featured Items / Hotels / Luxury) */
.hs-carousel {
	position: relative;
	padding: 0 8px;
}

.hs-carousel__track {
	display: flex;
	gap: 15px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none;
	padding: 4px 2px 14px;
}

.hs-carousel__track::-webkit-scrollbar {
	display: none;
}

.hs-carousel__track.hotel-grid,
.hs-carousel__track.luxury-grid,
.hs-carousel__track.destination-slider {
	display: flex;
	grid-template-columns: none;
	overflow-x: auto;
}

.hs-carousel__track .destination-card {
	flex: 0 0 176px;
}

.hs-carousel__track .hotel-card {
	flex: 0 0 clamp(220px, 24vw, 280px);
	min-width: 220px;
}

.hs-carousel__track .luxury-card {
	flex: 0 0 clamp(220px, 24vw, 280px);
	min-width: 220px;
	height: 160px;
}

.hs-carousel__btn {
	position: absolute;
	top: 42%;
	transform: translateY(-50%);
	z-index: 4;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid rgba(15, 23, 42, .12);
	background: #fff;
	color: #1e2a44;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 8px 20px rgba(15, 23, 42, .14);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.hs-carousel__btn:hover {
	background: #0a6b4a;
	border-color: #0a6b4a;
	color: #fff;
}

.hs-carousel__btn.prev {
	left: -6px;
}

.hs-carousel__btn.next {
	right: -6px;
}

.hs-carousel__dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 2px;
	min-height: 14px;
}

.hs-carousel__dots button {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	border: 1px solid #0a6b4a;
	background: transparent;
	padding: 0;
	cursor: pointer;
}

.hs-carousel__dots button.active {
	background: #0a6b4a;
}

@media (max-width: 768px) {
	.hs-carousel {
		padding: 0;
	}

	.hs-carousel__btn.prev {
		left: 0;
	}

	.hs-carousel__btn.next {
		right: 0;
	}

	.hs-carousel__track .hotel-card,
	.hs-carousel__track .luxury-card {
		flex: 0 0 78vw;
		min-width: 220px;
	}
}

