@charset "utf-8";
/* CSS Document */
body { font-family: 'Montserrat', sans-serif; background-color: #FAF7F2; }
.serif-title { font-family: 'Cinzel', serif; }
.bg-maroon { background-color: #4A0E17; }
.text-maroon { color: #4A0E17; }
.border-maroon { border-color: #4A0E17; }
.bg-gold { background-color: #C5A059; }
.text-gold { color: #C5A059; }
.border-gold { border-color: #C5A059; }
.hover-gold:hover { background-color: #B38F46; }

/* Hero Section */
.hero {
	position: relative;
	background: linear-gradient(rgba(30, 14, 23, 0.8), rgba(30, 14, 23, 0.8)),
				url('../images/img_banner_sub.jpg') center/cover no-repeat;
	color: #FFFFFF;
	padding: 7rem 2rem;
	text-align: center;
	border-bottom: 4px solid #C5A880;
}

.hero-content {
	max-width: 800px;
	margin: 0 auto;
}

.hero h1 {
	font-size: 2.75rem;
	font-weight: 700;
	letter-spacing: 1px;
	margin-bottom: 1rem;
	color: #FFFFFF;
}

.hero p {
	font-size: 18px;
	color: #E2E8F0;
	font-weight: 300;
	max-width: 600px;
	margin: 0 auto;
}

/* Container & Section Grid Framework */
.container {
	max-width: 1140px;
	margin: 0 auto;
}

.cntPadding{padding: 4rem 2rem;}

.section-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.split-row {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 4rem;
	align-items: center;
	margin-bottom: 5rem;
}

.split-row.reverse {
	grid-template-columns: 1.2fr 1fr;
}

@media (max-width: 768px) {
	.section-split {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	.navbar {
		flex-direction: column;
		gap: 1rem;
		text-align: center;
	}
	.split-row, .split-row.reverse {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
}

.section-text h2 {
	font-size: 2rem;
	color: #1A202C;
	margin-bottom: 1.5rem;
	position: relative;
	padding-left: 15px;
	border-left: 4px solid #4A0E17;
}

.section-text p {
	margin-bottom: 1.25rem;
	color: #4A5568;
	font-size: 1.05rem;
}

.section-image img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
	border: 1px solid #E2E8F0;
}

/* Pillars Section */
.bg-dark-section {
	background-color: #1A202C;
	color: #FFFFFF;
	padding: 5rem 2rem;
}

.pillars-header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 3.5rem auto;
}

.pillars-header h2 {
	font-size: 2rem;
	color: #FFFFFF;
	margin-bottom: 1rem;
}

.pillars-header h2 span {
	color: #C5A880;
}

.pillars-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2.5rem;
	max-width: 1140px;
	margin: 0 auto;
}

.pillar-card {
	background-color: #2D3748;
	padding: 2.5rem 2rem;
	border-radius: 6px;
	border-top: 3px solid #C5A880;
	transition: transform 0.2s ease;
}

.pillar-card h3 {
	font-size: 1.25rem;
	color: #C5A880;
	margin-bottom: 1rem;
}

.pillar-card p {
	color: #CBD5E0;
	font-size: 0.95rem;
}

/* CTA Section */
.cta-banner {
	background: linear-gradient(rgba(197, 168, 128, 0.95), rgba(197, 168, 128, 0.95)),
				url('https://images.unsplash.com/photo-1582719508461-905c673771fd?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
	text-align: center;
	padding: 5rem 2rem;
	color: #1A202C;
}

.cta-banner h2 {
	font-size: 2.25rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.cta-banner p {
	font-size: 1.15rem;
	margin-bottom: 2rem;
	font-weight: 500;
}

.btn-cta {
	display: inline-block;
	background-color: #1A202C;
	color: #FFFFFF;
	padding: 0.85rem 2.5rem;
	text-decoration: none;
	border-radius: 4px;
	font-weight: 600;
	letter-spacing: 1px;
	transition: background-color 0.2s ease;
}

.btn-cta:hover {
	background-color: #2D3748;
}

/* Global Room Meta Info Bar */
.policy-bar {
	background-color: #E2E8F0;
	padding: 1rem 1.5rem;
	border-radius: 6px;
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	gap: 1.5rem;
	margin-bottom: 4rem;
	border-left: 4px solid #C5A880;
}

.policy-item {
	font-size: 0.95rem;
	color: #2D3748;
	font-weight: 500;
}

.policy-item strong {
	color: #1A202C;
}

/* Individual Room Blocks */
.room-row {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 3.5rem;
	align-items: center;
	margin-bottom: 5rem;
	padding-bottom: 5rem;
	border-bottom: 1px solid #E2E8F0;
}

.room-row:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.room-row.reverse {
	grid-template-columns: 1fr 1.2fr;
}

.room-image {
	position: relative;
}

.room-image img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 8px;
	box-shadow: 0 12px 30px rgba(0,0,0,0.07);
}

.room-badge {
	position: absolute;
	top: 15px;
	left: 15px;
	background-color: #1A202C;
	color: #C5A880;
	padding: 0.4rem 1rem;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 1px;
	border-radius: 4px;
	border: 1px solid #C5A880;
}

.room-details h2 {
	font-size: 2rem;
	color: #1A202C;
	margin-bottom: 0.5rem;
}

.room-price {
	font-size: 1.4rem;
	color: #C5A880;
	font-weight: 700;
	margin-bottom: 1.25rem;
}

.room-price span {
	font-size: 0.9rem;
	color: #718096;
	font-weight: 400;
}

.room-description {
	color: #4A5568;
	margin-bottom: 1.5rem;
	font-size: 1.05rem;
}

/* Feature Icons / Lists */
.amenity-tag-container {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 2rem;
}

.amenity-tag {
	background-color: #EDF2F7;
	color: #4A5568;
	padding: 0.35rem 0.85rem;
	font-size: 0.85rem;
	border-radius: 4px;
	font-weight: 500;
	border: 1px solid #E2E8F0;
}

.btn-select {
	display: inline-block;
	background-color: #1A202C;
	color: #FFFFFF;
	padding: 0.75rem 2rem;
	text-decoration: none;
	border-radius: 4px;
	font-weight: 600;
	transition: background-color 0.2s ease;
	text-align: center;
}

.btn-select:hover {
	background-color: #C5A880;
	color: #1A202C;
}

/* Guarantee Footer Banner */
.guarantee-banner {
	background-color: #1A202C;
	color: #FFFFFF;
	padding: 4rem 2rem;
	text-align: center;
	border-top: 4px solid #C5A880;
}

.guarantee-grid {
	max-width: 900px;
	margin: 2rem auto 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
}

.guarantee-item h4 {
	color: #C5A880;
	margin-bottom: 0.5rem;
	font-size: 1.1rem;
}

.guarantee-item p {
	color: #A0AEC0;
	font-size: 0.9rem;
}

@media (max-width: 868px) {
	.room-row, .room-row.reverse {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	.room-row .room-image {
		order: -1;
	}
	.room-image img {
		height: 300px;
	}
	.navbar {
		flex-direction: column;
		gap: 1rem;
	}
}

.venue-details h2 {
	font-size: 2rem;
	color: #1A202C;
	margin-bottom: 0.5rem;
	position: relative;
	padding-left: 15px;
	border-left: 4px solid #C5A880;
}

.venue-capacity {
	font-size: 1.1rem;
	color: #C5A880;
	font-weight: 600;
	margin-bottom: 1.5rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.venue-details p {
	color: #4A5568;
	font-size: 1.05rem;
	margin-bottom: 1.25rem;
}

.amenity-list {
	list-style: none;
	margin-bottom: 2rem;
}

.amenity-list li {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: 0.5rem;
	color: #4A5568;
	font-size: 0.95rem;
}

.amenity-list li::before {
	content: "✦";
	position: absolute;
	left: 0;
	color: #C5A880;
}

.venue-images {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

.venue-images img {
	width: 100%;
	height: 350px;
	object-fit: cover;
	border-radius: 8px;
	box-shadow: 0 10px 25px rgba(0,0,0,0.06);
	border: 1px solid #E2E8F0;
}

/* Highlight Features Grid */
.features-strip {
	background-color: #1A202C;
	color: #FFFFFF;
	padding: 4rem 2rem;
	text-align: center;
}

.features-grid {
	max-width: 1140px;
	margin: 2.5rem auto 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2.5rem;
}

.feature-box {
	background-color: #2D3748;
	padding: 2rem;
	border-radius: 6px;
	border-bottom: 3px solid #C5A880;
}

.feature-box h4 {
	color: #C5A880;
	font-size: 1.15rem;
	margin-bottom: 0.75rem;
}

.feature-box p {
	color: #CBD5E0;
	font-size: 0.9rem;
}

.section-title {
	text-align: center;
	font-size: 2rem;
	color: #1A202C;
	margin-bottom: 3rem;
}

.section-title span {
	color: #C5A880;
}

/* Cards Grid Layout */
.info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 4rem;
}

.card-item {
	background: #FFFFFF;
	border: 1px solid #E2E8F0;
	border-top: 4px solid #C5A880;
	border-radius: 6px;
	padding: 2rem;
	text-align: center;
	box-shadow: 0 4px 15px rgba(0,0,0,0.03);
	transition: transform 0.2s ease;
}

.card-item:hover {
	transform: translateY(-5px);
}

.card-icon {
	font-size: 1.75rem;
	margin-bottom: 1rem;
}

.card-item h3 {
	font-size: 1.1rem;
	color: #1A202C;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 0.75rem;
}

.card-item p {
	color: #4A5568;
	font-size: 1rem;
	margin-bottom: 0;
	line-height: 1.5;
}

.card-item a {
	color: #1A202C;
	text-decoration: none;
	font-weight: 600;
}

.card-item a:hover {
	color: #C5A880;
}

/* Map Block Section */
.map-section {
	background-color: #1A202C;
	padding: 5rem 2rem;
	border-top: 4px solid #C5A880;
}

.map-wrapper {
	max-width: 1140px;
	margin: 0 auto;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 15px 35px rgba(0,0,0,0.3);
	border: 2px solid #C5A880;
	height: 500px;
}

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

.rspMenuLink, .rspMenuContent{display:none;}

@media only screen and (max-width : 767px) {
	.rspMenuLink{position:absolute; right:20px; top:10px; cursor:pointer;display:flex; padding:0; align-items:center; justify-content:flex-end; width:60px; flex-wrap:wrap;}
	.rspMenuLink div{width: 40px; height: 15px; margin:0 auto;}
	.rspMenuLink span{display: block;width: 40px;height: 3px;margin: 0 auto 6px auto;background: #000;transition: 0.4s;}
	.rspMenuLink label{color: #ff6a00; font-size:15px; font-weight:bold;cursor:pointer; display:block; width:100%; text-align:center; margin-top:9px;}
	
	.rspMenuClose{position:absolute; top:10px; right:20px; width:40px; height:40px; background: #C5A059; z-index:9; display:flex; padding:0; align-items:center; justify-content:center; cursor:pointer;}
	.rspMenuClose span{display: block;width: 30px;height: 2px;margin: 0 auto 6px auto;background: #FFF;transition: 0.4s;}
	.rspMenuClose span:first-child {-webkit-transform: rotate(-45deg) translate(-5px, 5px) ;transform: rotate(-45deg) translate(-3px, 3px);}
	.rspMenuClose span:nth-child(2) {opacity: 0;}
	.rspMenuClose span:last-child {-webkit-transform: rotate(45deg) translate(-2px, -2px) ;transform: rotate(45deg) translate(-8px, -8px)}

	.rspMenuContent{width: 100%; background: #faf7f2; position: fixed; left: -100%; top: 0; z-index: 999; height: 100vh; margin: 0; padding: 0; -webkit-transition: all .3s linear; -moz-transition: all .3s linear; -o-transition: all .3s linear; -ms-transition: all .3s linear; transition: all .3s linear; overflow:hidden; overflow-y: scroll; display:block;}
	.rspMenuActive{left:0; visibility:visible;}
	
	.rspLogo{clear:both; position:relative; text-align:left; padding:15px 20px; background:#4A0E17;}
	.rspLogo img{max-width:200px;}
	.rspMenuContent ul{margin:0; padding:0;}
	.rspMenuContent li{list-style-type: none; border-bottom: solid 1px #999; color: #FFF; width:100%;}
	.rspMenuContent li a{color: #333; display: block; font-size: 16px; line-height: 26px; text-transform:uppercase; padding: 17px 20px 16px; text-decoration: none; position:relative; }
	.rspMenuContent li a:hover{color:#333 !important;}
	.rspMenuContent li.menu-item-has-children > a:after{ content: "\f105";    font-family: "Font Awesome 5 Free";    font-style: normal;    font-weight: 900;    text-decoration: inherit;    color: #FFF;    font-size: 20px;    position: absolute;    top: 17px;    right: 25px;}
	.rspMenuContent li ul.sub-menu{display:none;}
	.rspMenuContent li ul.sub-menu li{border:none !important;}
	.rspMenuContent li > ul.sub-menu li a:after{content: '\f105'; position: absolute; font-size: 16px; font-family: 'Font Awesome 5 Free';font-style: normal;    font-weight: 600; color: #FFF; left:20px; top: 10px;}
	.rspMenuContent li > ul.sub-menu li a{padding: 10px 20px 10px 45px;}
	
	.hBtmContent .rspHeader{display:flex !important; align-items:center;}
	.rspLinks{display:flex; justify-content:flex-end; gap:10px;}
	.rspLinks a{width:35px; height:35px; text-align:center; display:inline-block; background:#a28a79; color:#FFF;}
	.rspLinks a i{line-height:35px;}
}