/* RESET */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Nunito", sans-serif;
}

/* About Section css */
body {
	font-family: "Poppins", sans-serif;
}

.about-section {
	background: #fff;
	padding: 80px 0;
}

.container {
	width: 90%;
	margin: auto;
	display: flex;
	align-items: center;
	gap: 50px;
}

/* LEFT IMAGES */
.image-box {
	position: relative;
	width: 50%;
}

.img-main {
	width: 100%;
	height: 500px;
	object-fit: cover;
}

/* overlay image */
.img-overlay {
	position: absolute;
	bottom: -50px;
	right: -50px;
	border: 10px solid #f5f1ea;
}

.img-overlay img {
	width: 300px;
	height: 220px;
	object-fit: cover;
}

/* RIGHT CONTENT */
.content-box {
	width: 50%;
}

.sub {
	color: #b89b72;
	font-size: 14px;
	letter-spacing: 2px;
	font-weight: 700;
}

.content-box h2 {
	font-family: "Playfair Display";
	font-size: 30px;
	margin: 20px 0;
}

.desc {
	color: #666;
	font-size: 14px;
	text-align: justify;
	margin-bottom: 20px;
}

/* LIST */
.list {
	display: flex;
	gap: 40px;
}

.list ul {
	list-style: disc;
	padding-left: 20px;
}

.list li {
	margin: 10px 0;
}

/* BOTTOM */
.bottom {
	margin-top: 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.bottom h4 {
	font-family: "Playfair Display";
}

.bottom span {
	font-size: 12px;
	color: #888;
}

.bottom button {
	background: #b89b72;
	color: #fff;
	border: none;
	padding: 12px 25px;
	font-family: "Playfair Display";
	letter-spacing: 1px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
	.container {
		flex-direction: column;
	}

	.image-box,
	.content-box {
		width: 100%;
	}

	.img-main {
		height: 300px;
	}

	.img-overlay {
		display: none;
	}

	.list {
		flex-direction: column;
	}

	.bottom {
		flex-direction: column;
		gap: 20px;
	}
}

/* Video Section */

.video-section {
	height: 80vh;
	background: url("images/service/s3.png")
		center/cover no-repeat;
	position: relative;
}

/* DARK OVERLAY */
.overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.322);
	top: 0;
	left: 0;
}

/* CENTER CONTENT */
.content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: #fff;
}

.content h2 {
	font-family: "Playfair Display";
	margin-bottom: 20px;
}

/* PLAY BUTTON */
.play-btn {
	width: 70px;
	height: 70px;
	border: 2px solid #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	margin: auto;
	cursor: pointer;
	transition: 0.3s;
}

.play-btn:hover {
	background: #fff;
	color: #000;
}

/* TEXT */
.content h2 {
	margin-top: 20px;
	font-size: 40px;
	font-weight: 500;
}

/* MOBILE */
@media (max-width: 768px) {
	.content h2 {
		font-size: 24px;
	}

	.play-btn {
		width: 50px;
		height: 50px;
		font-size: 18px;
	}
}

/* Service Section Css */
.services {
	padding: 80px 5%;
	background: #f6f3ee;
	text-align: center;
}

.sub {
	color: #b89b72;
	font-size: 14px;
	text-transform: uppercase;
}

.head h2 {
	font-family: "Playfair Display";
	font-size: 36px;
	margin: 10px 0 40px;
}

/* GRID */
.cards {
	display: flex;
	gap: 30px;
}

/* CARD */
.card {
	position: relative;
	width: 33.33%;
	overflow: hidden;
	border-radius: 10px;
}

.card img {
	width: 100%;
	height: 350px;
	object-fit: cover;
	transition: 0.5s;
}

/* overlay */
.overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	top: 0;
	left: 0;
}

/* frame border */
.frame {
	position: absolute;
	top: 15px;
	left: 15px;
	right: 15px;
	bottom: 15px;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

/* content */
.content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
}

.content h3 {
	font-family: "Playfair Display";
	font-size: 20px;
	letter-spacing: 1px;
}

.content p {
	font-size: 12px;
	letter-spacing: 2px;
}

/* number */
.num {
	position: absolute;
	bottom: 15px;
	left: 20px;
	color: #b89b72;
	font-size: 18px;
	font-family: "Playfair Display";
}

/* hover */
.card:hover img {
	transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
	.cards {
		flex-direction: column;
	}

	.card {
		width: 100%;
	}
}

/* New Venue and Upcoming Venue Details --------------------------------------------------------*/
/* ================= LEFT SIDE ================= */
.left-box {
	background: #1e1d2b;
	color: #fff;
	padding: 80px 40px;
	min-height: 600px;
	position: relative;
	overflow: hidden;
}

/* MAP BACKGROUND */
.left-box::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url("events/map.png") center/65% no-repeat;
	opacity: 0.05;
	z-index: 0;
}

/* DOT PATTERN */
.left-box::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient(#c09756 1px, transparent 1px);
	background-size: 40px 40px;
	opacity: 0.08;
	z-index: 0;
}

/* CONTENT ABOVE BACKGROUND */
.left-box .content {
	position: relative;
	z-index: 2;
}

.sub {
	color: #caa56a;
	margin-bottom: 10px;
	letter-spacing: 1px;
}

.title {
	font-size: 42px;
	margin-bottom: 40px;
	font-family: "Playfair Display", serif;
}

.event-row {
	display: flex;
	justify-content: center;
	gap: 20px;
}

.event {
	width: 50%;
}

.event h5 {
	font-size: 16px;
	color: #fff;
	font-family: "Playfair Display", serif;
	color: #caa56a;
}

.event span {
	font-size: 14px;
	color: #fff;
	display: block;
	margin-bottom: 10px;
}

.event p {
	font-size: 14px;
	color: #ccc;
}

/* BUTTON */
.read-btn {
	background-color: #caa56a;
	color: #fff;
	padding: 10px 25px;
	transition: 0.3s;
	border-radius: none;
	text-decoration: none;
	font-family: "Playfair Display", serif;
	font-size: 14px;
	letter-spacing: 1px;
}

/* ================= RIGHT SIDE ================= */
.right-box {
	background: url("images/service/s2.png") center/cover no-repeat;
	min-height: 600px;
	position: relative;
}

.right-box::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
}

/* CONTENT */
.overlay-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: #fff;
	width: 80%;
}

.overlay-content h2 {
	font-size: 36px;
	margin-bottom: 15px;
	font-family: "Playfair Display", serif;
}

.overlay-content p {
	margin-bottom: 20px;
	font-size: 16px;
}

.visit-btn {
	background-color: #fff;
	color: #caa56a;
	padding: 10px 25px;
	transition: 0.3s;
	font-family: "Playfair Display", serif;
	font-size: 14px;
	letter-spacing: 1px;
	text-decoration: none;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
	.event-row {
		flex-direction: column;
	}

	.event {
		width: 100%;
	}

	.title {
		font-size: 28px;
	}
}

/* Room section structure css */
.lux-room-sec {
	display: flex;
	min-height: 100vh;
	background: #0f0f14;
	font-family: "Playfair Display", serif;
	position: relative;
	overflow: hidden;
}

/* LEFT */
.lux-left {
	width: 30%;
	background: #1e1d2b;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}
.lux-left-inner::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url("events/map.png") center/65% no-repeat;
	opacity: 0.05;
	z-index: 0;
}

/* DOT PATTERN */
.lux-left-inner::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient(#c09756 1px, transparent 1px);
	background-size: 40px 40px;
	opacity: 0.08;
	z-index: 0;
}
.lux-left-inner {
	text-align: center;
}

.lux-dots span {
	width: 6px;
	height: 6px;
	background: #777;
	display: inline-block;
	margin: 0 4px;
	border-radius: 50%;
}

.lux-dots .active {
	background: #caa56a;
}

.lux-sub {
	color: #caa56a;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 1.5px;
	font-weight: 600;
}

.lux-head {
	font-family: "Playfair Display", serif;
}

.lux-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 20px 0;
}

.lux-divider span {
	width: 60px;
	height: 1px;
	background: #555;
}

.lux-divider i {
	margin: 0 10px;
	color: #caa56a;
}

.lux-btn {
	background-color: #caa56a;
	color: #fff;
	padding: 10px 25px;
	font-family: "Playfair Display", serif;
	letter-spacing: 1px;
	border: none;
	font-size: 14px;
	text-decoration: none;
	cursor: pointer;
}

/* RIGHT */
.lux-slider-wrap {
	width: 70%;
	overflow: hidden;
	position: relative;
	display: flex;
	align-items: center;
}

.lux-slider {
	display: flex;
	gap: 20px;
	padding: 20px;
	transition: 0.4s;
}

.lux-card {
	min-width: calc(50% - 10px);
	height: 500px;
	position: relative;
	overflow: hidden;
}

/* IMAGE */
.lux-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* OVERLAY */
.lux-overlay {
	position: absolute;
	bottom: 0;
	width: 100%;
	padding: 20px;
	color: #fff;
	background: linear-gradient(to top, rgb(0, 0, 0), transparent);
}

.lux-overlay h3 {
	font-family: "Playfair Display", serif;
	font-size: 24px;
	letter-spacing: 1px;
}

.lux-desc {
	font-size: 13px;
	opacity: 0.8;
}

/* INFO BAR */
.lux-info-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 10px 0;
	font-size: 14px;
}

.lux-info-bar span {
	font-family: "Playfair Display", serif;
	letter-spacing: 1px;
	font-size: 12px;
}

.lux-info-bar i {
	color: #caa56a;
	margin-right: 5px;
}

/* BOTTOM */
.lux-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.lux-price {
	color: #caa56a;
	font-family: "Playfair Display", serif;
	font-size: 16px;
}

.lux-detail-btn {
	background: #fff;
	color: #000;
	padding: 5px 10px;
	font-family: "Playfair Display", serif;
	font-size: 14px;
	letter-spacing: 1px;
	text-decoration: none;
	cursor: pointer;
}

/* PLUS */
.lux-plus {
	position: absolute;
	top: 15px;
	right: 15px;
	background: #1e1d2b;
	border: none;
	color: #caa56a;
	padding: 8px;
}

.lux-amen {
	position: absolute;
	top: 60px;
	right: 15px;
	background: #1e1d2b;
	color: white;
	padding: 15px;
	display: none;
}

.lux-amen ul li {
	list-style: none;
	font-size: 12px;
}

.lux-icon {
	color: #caa56a;
	margin: 5px 20px;
}

.lux-amen ul li span {
	font-family: "Playfair Display", serif;
	letter-spacing: 1px;
}
.lux-card.show .lux-amen {
	display: block;
}

/* NAV */
.lux-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: #1e1d2b;
	border: none;
	color: #fff;
	padding: 10px;
	z-index: 5;
}

.lux-prev {
	left: 10px;
}
.lux-next {
	right: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
	.lux-room-sec {
		flex-direction: column;
	}
	.lux-left,
	.lux-slider-wrap {
		width: 100%;
	}
	.lux-left {
		padding: 40px;
	}
	.lux-card {
		min-width: 100%;
	}
}

/* Footer Section Structure */
.lux-footer {
	background: #1e1d2b;
	color: #ccc;
	font-family: serif;
}

/* TOP */
.lux-footer-top {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	padding: 60px 5%;
}

/* COLUMN */
.lux-col h3 {
	color: #caa56a;
	margin-bottom: 15px;
	font-family: "Playfair Display", serif;
	font-size: 18px;
	letter-spacing: 1px;
}

.lux-col p {
	font-size: 14px;
	line-height: 1.7;
}

.lux-col a {
	color: #caa56a;
	text-decoration: none;
}

/* LINKS */
.lux-col ul {
	list-style: none;
	padding: 0;
	font-size: 13px;
}

.lux-col ul li {
	margin-bottom: 8px;
	cursor: pointer;
}

/* SUBSCRIBE */
.lux-subscribe {
	display: flex;
	margin-top: 15px;
	width: 100%;
}

.lux-subscribe input {
	flex: 1;
	padding: 10px;
	border: none;
	background: #2a2938;
	color: #fff;
	min-width: 0;
}

.lux-subscribe button {
	background: #caa56a;
	border: none;
	padding: 10px 15px;
	cursor: pointer;
	font-family: "Playfair Display", serif;
	font-size: 14px;
	color: #fff;
	white-space: nowrap;
}

/* MIDDLE */
.lux-footer-middle {
	text-align: center;
	padding: 15px;
	border-top: 1px solid #333;
	border-bottom: 1px solid #333;
}

.lux-footer-middle i {
	margin: 0 8px;
	color: #caa56a;
	cursor: pointer;
}

/* BOTTOM */
.lux-footer-bottom {
	display: flex;
	justify-content: space-between;
	padding: 15px 5%;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	text-align: center;
}

.logos {
	color: #caa56a;
	font-weight: bold;
	font-size: 16px;
}

.top-btn {
	color: #caa56a;
	cursor: pointer;
	font-size: 12px;
}

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

/* Tablet */
@media (max-width: 992px) {
	.lux-footer-top {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Mobile */
@media (max-width: 600px) {
	.lux-footer-top {
		grid-template-columns: 1fr;
		padding: 40px 20px;
		text-align: center;
	}

	.lux-subscribe {
		flex-direction: column;
		gap: 10px;
	}

	.lux-subscribe button {
		width: 100%;
	}

	.lux-footer-bottom {
		flex-direction: column;
	}
}

/* Testimonial Section css */
.pro-testimonial-sec {
	background: #fff;
	text-align: center;
	padding: 80px 15px;
	font-family: "Playfair Display", serif;
}

/* SUB TITLE */
.pro-sub {
	color: #caa56a;
	margin-bottom: 10px;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 1px;
}

/* TITLE */
.pro-title {
	font-size: 36px;
	margin-bottom: 40px;
	font-family: "Playfair Display", serif;
}

/* WRAP */
.pro-test-wrap {
	position: relative;
	max-width: 700px;
	margin: auto;
	padding: 0 20px;
}

/* SLIDER */
.pro-test-slider {
	position: relative;
	min-height: 220px; /* flexible instead of fixed */
}

/* ITEM */
.pro-test-item {
	position: absolute;
	width: 100%;
	opacity: 0;
	transform: translateY(20px);
	transition: 0.5s;
	padding: 20px;
}

.pro-test-item.active {
	opacity: 1;
	transform: translateY(0);
}

/* QUOTE */
.pro-quote {
	font-size: 60px;
	color: #caa56a;
	line-height: 0;
}

/* NAME */
.pro-test-slider h4 {
	font-size: 14px;
	letter-spacing: 1px;
}

/* TEXT */
.pro-text {
	font-size: 15px;
	color: #555;
	margin: 15px 0;
	line-height: 1.6;
}

/* NAV BUTTON */
.pro-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: #1e1d2b;
	border: none;
	padding: 10px 12px;
	cursor: pointer;
	color: #fff;
	z-index: 10;
}

/* FIX: keep inside container */
.pro-prev {
	left: 0;
}
.pro-next {
	right: 0;
}

/* DOTS */
.pro-dots {
	margin-top: 20px;
}

.pro-dots span {
	width: 8px;
	height: 8px;
	background: #ddd;
	display: inline-block;
	margin: 0 4px;
	border-radius: 50%;
	cursor: pointer;
}

.pro-dots .active {
	background: #caa56a;
	transform: scale(1.2);
}

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

@media (max-width: 768px) {
	.pro-title {
		font-size: 26px;
	}

	.pro-text {
		font-size: 14px;
	}

	.pro-quote {
		font-size: 40px;
	}

	.pro-nav {
		padding: 8px 10px;
	}

	.pro-prev {
		left: 5px;
	}

	.pro-next {
		right: 5px;
	}
}

@media (max-width: 480px) {
	.pro-title {
		font-size: 22px;
	}

	.pro-test-wrap {
		padding: 0 10px;
	}

	.pro-test-item {
		padding: 15px;
	}

	.pro-nav {
		display: none; /* better UX on small screens */
	}
}
/* About Us Pages Css -----------------------------*/
.stats-section {
	position: relative;
	background: url("images/room/r1.png") center/cover no-repeat;
	padding: 100px 20px;
	color: #fff;
	overflow: hidden;
}

.stats-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.65);
	backdrop-filter: blur(2px);
}

.stats-container {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	max-width: 1200px;
	margin: auto;
}

.stat-box {
	text-align: center;
	padding: 30px 20px;
	border-radius: 12px;

	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.15);

	transition: all 0.4s ease;
	position: relative;
}

/* Hover effect */
.stat-box:hover {
	transform: translateY(-10px) scale(1.03);
	background: rgba(255, 255, 255, 0.12);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.stat-box h2 {
	font-size: 52px;
	color: #c9a46c;
	margin-bottom: 15px;
	font-weight: 600;
	font-family: "Playfair Display", serif;
}

/* Label box */
.stat-box p {
	display: inline-block;
	padding: 10px 20px;
	border-radius: 3px;

	border: 1px solid rgba(255, 255, 255, 0.3);
	background: rgba(255, 255, 255, 0.05);

	font-size: 13px;
	letter-spacing: 1px;
}

/* subtle glowing dots (optional like screenshot) */
.stat-box::after {
	content: "...";
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	color: #c9a46c;
	opacity: 0.6;
}

/* Tablet */
@media (max-width: 992px) {
	.stats-container {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Mobile */
@media (max-width: 576px) {
	.stats-container {
		grid-template-columns: 1fr;
	}

	.stat-box h2 {
		font-size: 38px;
	}
}

/* Contact Us Pages Css -------------------------*/
.contact-section {
	padding: 70px 20px;
	background: #fff;
}

.contact-section h2 {
	font-family: "Playfair Display";
}

.form-wrapper {
	max-width: 1100px;
	margin: auto;
	background: #e9e2e29a;
	padding: 20px;
}

/* 2 column layout */
.form-row {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.form-group {
	width: calc(50% - 15px);
	position: relative;
}

/* full width textarea */
.form-group.full {
	width: 100%;
	margin-top: 30px;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	background: white;
	border: none;
	color: #151414;
	font-size: 14px;
	padding: 20px 20px 20px 55px;
	outline: none;
}

/* heights */
.form-group input,
.form-group select {
	height: 65px;
}

.form-group textarea {
	height: 220px;
	resize: none;
	padding-top: 20px;
}

/* iconss */
.form-group .icons {
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	color: #caa56a;
	font-size: 16px;
}

/* textarea icons fix */
.form-group.full .icons {
	top: 20px;
	transform: none;
}

/* placeholder */
input::placeholder,
textarea::placeholder {
	color: #888;
}

/* button */
.btn-box {
	text-align: center;
	margin-top: 40px;
}

.btn-box button {
	background: #caa56a;
	border: none;
	padding: 18px 55px;
	font-size: 13px;
	letter-spacing: 2px;
	font-weight: bold;
	cursor: pointer;
	color: white;
	font-family: "Playfair Display";
}

.btn-box button:hover {
	background: #d6b278;
	color: #fff;
}

/* mobile */
@media (max-width: 768px) {
	.form-group {
		width: 100%;
	}
}

/* SECTION BACKGROUND (BLACK SIDES LIKE IMAGE) */
.map-section {
	background: #d3d2deaa;
	padding: 0 60px;
}

/* MAP WRAPPER */
.map-wrapper {
	width: 100%;
	height: 420px;
	overflow: hidden;
	padding: 20px;
}

/* IFRAME */
.map-wrapper iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

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

/* Tablet */
@media (max-width: 992px) {
	.map-section {
		padding: 0;
	}

	.map-wrapper {
		height: 350px;
	}
}

/* Mobile */
@media (max-width: 600px) {
	.map-wrapper {
		height: 280px;
	}
}

/* Blog Section css --------------------------------------*/

.blog-section {
	background: #1e1d2b;
	padding: 80px 20px;
	color: #fff;
}

.container-fluid {
	max-width: 1200px;
	margin: auto;
}

.subtitle {
	letter-spacing: 3px;
	font-size: 14px;
	color: #b89b5e;
	margin-bottom: 10px;
	text-align: center;
	font-weight: 700;
}

.title {
	font-size: 42px;
	margin-bottom: 40px;
	text-align: center;
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
}

.blog-card {
	position: relative;
}

.img-box {
	position: relative;
	overflow: hidden;
}

.img-box img {
	width: 100%;
	height: 450px;
	object-fit: cover;
	transition: 0.5s;
}

.blog-card:hover img {
	transform: scale(1.1);
}

.date-box {
	position: absolute;
	top: 20px;
	left: 20px;
	border: 1px solid #fff;
	padding: 10px;
	text-align: center;
}

.date-box span {
	font-size: 12px;
	letter-spacing: 2px;
	color: #fff;
	font-weight: 700;
}

.date-box h4 {
	font-size: 20px;
	font-family: "Playfair Display";
	color: #caa56a;
}

.contentess {
	background: #fff;
	padding: 20px;
	width: 85%;
	position: absolute;
	bottom: -30px;
	left: 20px;
}

.contentess span {
	font-size: 12px;
	letter-spacing: 2px;
	color: #caa56a;
	font-weight: 700;
}

.contentess h3 {
	font-size: 16px;
	margin-top: 10px;
	font-family: "Playfair Display";
	letter-spacing: 1px;
	color: #000;
}

/* Responsive */

@media (max-width: 992px) {
	.blog-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.blog-grid {
		grid-template-columns: 1fr;
	}

	.img-box img {
		height: 300px;
	}

	.contentess {
		position: relative;
		bottom: 0;
		left: 0;
		width: 100%;
		margin-top: -5px;
	}
}

/* Facility Section Css ----------------------------*/
.hf-services-sec {
	background: #fff;
	padding: 80px 20px;
}

.hf-container {
	max-width: 1200px;
	margin: auto;
}

.hf-subtitle {
	letter-spacing: 4px;
	font-size: 14px;
	color: #caa56a;
	margin-bottom: 10px;
	text-align: center;
	font-weight: 700;
	letter-spacing: 2px;
}

.hf-title {
	font-size: 42px;
	margin-bottom: 40px;
	color: #222;
	text-align: center;
	font-family: "Playfair Display";
}

.hf-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
}

.hf-card {
	background: #1e1d2b;
	padding: 30px;
	border: 2px solid #caa56a;
	position: relative;
	transition: 0.3s;
	border-radius: 5px;
}

.hf-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.hf-icon {
	font-size: 30px;
	color: #b89b5e;
	margin-bottom: 15px;
}

.hf-card h3 {
	font-size: 22px;
	margin-bottom: 10px;
	color: #caa56a;
	font-family: "Playfair Display";
	letter-spacing: 1px;
}

.hf-card p {
	font-size: 14px;
	color: #fff;
	line-height: 1.6;
}

/* Responsive */

@media (max-width: 992px) {
	.hf-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 576px) {
	.hf-grid {
		grid-template-columns: 1fr;
	}

	.hf-title {
		font-size: 32px;
	}
}

/* Room Pages Css ---------------------------*/
.rs-room-sec {
	background: #f5f3f0;
	padding: 80px 20px;
}

.rs-container {
	max-width: 1200px;
	margin: 0 auto;
}

.rs-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 60px;
}

.rs-image img {
	width: 100%;
	height: 500px;
	object-fit: cover;
}

/* Content Box */
.rs-content {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background: #fff;
	padding: 20px;
	width: 35%;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Content Box */
.rs-content-two {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	background: #fff;
	padding: 20px;
	width: 35%;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.rs-price {
	color: #b89b5e;
	font-size: 18px;
	font-family: "Playfair Display";
}

.rs-price span {
	color: #777;
	font-size: 14px;
}

.rs-title {
	font-size: 36px;
	margin: 10px 0 15px;
	font-family: "Playfair Display";
}

.rs-desc {
	color: #777;
	font-size: 14px;
	line-height: 1.7;
	margin-bottom: 20px;
	text-align: justify;
}

.rs-features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px 20px;
	font-size: 14px;
	color: #555;
	margin-bottom: 20px;
}

.rs-features i {
	color: #b89b5e;
	margin-right: 8px;
}

.rs-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid #eee;
	padding-top: 20px;
}

.rs-details {
	text-decoration: none;
	color: #777;
	letter-spacing: 2px;
	font-size: 12px;
}

.rs-btn {
	background: #b89b5e;
	color: #fff;
	padding: 10px 25px;
	text-decoration: none;
	font-size: 12px;
	letter-spacing: 2px;
	font-family: "Playfair Display";
}

/* Responsive */

@media (max-width: 992px) {
	.rs-wrapper {
		flex-direction: column;
	}

	.rs-content {
		position: relative;
		width: 100%;
		transform: none;
		margin-bottom: 20px;
	}

	.rs-content-two {
		position: relative;
		width: 100%;
		transform: none;
		margin-bottom: 20px;
	}

	.rs-image img {
		height: 350px;
	}
}

@media (max-width: 576px) {
	.rs-title {
		font-size: 26px;
	}

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

	.rs-bottom {
		flex-direction: column;
		gap: 15px;
		align-items: flex-start;
	}
}
