/*!
Theme Name: drm
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: drm
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

drm is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

:root{

--nav-gradient-left:#233345;
--nav-gradient-right:#1E2A38;

--primary-gold:#C6A75E;

--primary-color:#C6A75E;

--heading-color:#1E2A38;

--bg-light:#F6F1E8;
--nav-active: #E8DFC8;

--text:#2B2B2B;
--white:#ffffff;
--white-color:#ffffff;
--black:#000000;

--font-heading:'Imperial Script', cursive;
--font-body:'Inter', sans-serif;
    
    --bs-primary: #1E2A38;
    
    --bs-dropdown-link-active-bg: #1E2A38;



}

::-webkit-scrollbar-track{
	background-color: var(--bg-light);
	border-left: 1px solid var(--bg-light);
}
::-webkit-scrollbar{
	width: 7px;
	background-color: var(--bg-light);
}
::-webkit-scrollbar-thumb{
	background: var(--primary-gold);
}

::selection{
	color: var(--heading-color);
	background-color: var(--bg-light);
	filter: invert(1);
}


.btn-default{
	position: relative;
    display: inline-block;
    background: var(--primary-gold);
	border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1em;
    text-transform: capitalize;
    color: var(--white-color);
    border: none;
    padding: 17px 50px 17px 20px;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    z-index: 0;
}

.btn-default:hover{
	background: transparent;
	color: var(--white-color);
}

/*.btn-default::before{
	content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 20px;
    height: 20px;
    background-image: url('images/arrow-white.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transform: translate(-20px, -50%);
    transition: all 0.4s ease-in-out;
}*/

.btn-default:hover::before{
	transform: translate(-17px, -50%);
}

.btn-default::after{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15%;
	right: 0;
    width: 0;
    height: 106%;
    background: var(--primary-color);
    transform: skew(45deg);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.btn-default:hover:after{
	width: 100%;
    transform: skew(0deg);
    left: 0;
}

.btn-default.btn-highlighted:hover{
	color: var(--primary-color);
}

.btn-default.btn-highlighted:hover::before{
	filter: brightness(1) invert(1);
}

.btn-default.btn-highlighted::after{
	background: var(--white-color);
}

.btn-default.btn-highlighted-two:hover{
	color: var(--white-color);
}

.btn-default.btn-highlighted-two:hover::before{
	filter: brightness(1) invert(1);
}

.btn-default.btn-highlighted-two::after{
	background: var(--nav-gradient-left);
}


.btn-default.btn-highlighted-three:hover{
	color: var(--white-color);
}

.btn-default.btn-highlighted-three:hover::before{
	filter: brightness(1) invert(1);
}

.btn-default.btn-highlighted-three::after{
	background: var(--primary-color);
}



.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background: var(--nav-gradient-left);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading{
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container{
	margin: 40px auto;
}

.loading{
	border: 1px solid transparent;
	border-color: transparent var(--primary-gold) transparent var(--primary-gold);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading{
	transition: all 0.5s ease-in-out;
}

#loading-icon{
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading{
	0%{
		transform: rotate(0deg);
	}

	100%{
		transform: rotate(360deg);
	}
}



/* Alignments
--------------------------------------------- */
.alignleft {

	/*rtl:ignore*/
	float: left;

	/*rtl:ignore*/
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {

	/*rtl:ignore*/
	float: right;

	/*rtl:ignore*/
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}



.banner_sec .banner_pic {
    background-repeat: no-repeat;
    background-size: cover;
    height: 270px;
    background-position: center center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 70px;
}



.banner_sec .banner_pic img.overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.banner_sec .banner_pic .banner_text{
    position: relative;
    z-index: 3;
    padding-top: 0px;
    width: 100%;
}
.banner_sec .banner_pic .banner_text .heading h1 {
    font-family: 'Imperial Script', cursive;
    font-size: 64px;
    font-weight: 400;
    color: #fff;
    line-height: 66px;
    max-width: 750px;
    margin-bottom: 0px;
}
.banner_sec .banner_pic .banner_text p {
    font-size: 24px;
    line-height: 32px;
    font-weight: 300;
    color: #fff;
    max-width: 800px;
}

/*
.InnerpageContent{
    padding-top: 120px;
    padding-bottom: 120px;
}
*/


.cb-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.cb-cursor.-visible {
    opacity: 1;
}

.cb-cursor.-pointer {
    transform: scale(2);
    background: var(--primary-gold);
}

.cb-cursor.-active {
    transform: scale(0.8);
}

.cb-cursor:before{
	background: var(--primary-gold);
}


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

.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.navbar-brand.text-white{
	display: none;
}




/* SECTION */
.stores-section {
  background: #f9f9f9;
}

/* TITLE */
.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #222;
}

.section-subtitle {
  color: #666;
}

/* CARD */
.store-card {
  /*background-color: #233345;*/
	background-color: #202d3c;
  padding: 30px;
  border-radius: 12px;
  transition: 0.3s;
  background-position: center center;
  background-size: cover;
/*  box-shadow: 0 5px 20px rgba(0,0,0,0.05);*/
    background-blend-mode: soft-light;
}

/*.store-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}*/

.store-logo-cont{
	height: 150px;
}

/* LOGO */
.store-logo {
 width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(100%) brightness(10);
}

/* TEXT */
.store-card h3 {
  font-weight: 600;
  margin-top: 10px;
}

.store-tag {
  color: #c59d5f;
  font-style: italic;
  margin-bottom: 10px;
}

.store-desc {
  font-size: 14px;
  color: #FFF;
}

/* FEATURES */
.store-features {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.store-features li {
  font-size: 14px;
  color: #FFF;
  margin-bottom: 5px;
}



.hero{
	position: relative;
	background: url('../images/hero-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
/*	padding: 260px 0 150px;*/
}
/*
.hero::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(360deg, rgba(3, 34, 27, 0) 74.01%, rgba(3, 34, 27, 0.9) 100%), linear-gradient(270deg, rgba(3, 34, 27, 0) 25.1%, rgba(3, 34, 27, 0.516) 41.43%, rgba(3, 34, 27, 0.86) 58.93%);
	width: 100%;
	height: 100%;
	z-index: 1;
}*/

.hero.hero-video .hero-bg-video{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero.hero-video .hero-bg-video video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ===== SECTION ===== */
.brand-section {
    padding: 80px 0;
    background: #f2f2f2;
    text-align: center;
}

.brand-section p.subtitle {
    color: #b89b5e;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 50px;
}

/* ===== CARD ===== */
.brand-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 50px 30px;
    transition: all 0.4s ease;
    overflow: hidden;
    z-index: 1;
    height: 100%;
}

/* Hover Lift Effect */


/* ===== LOGO ===== */
.brand-card img {
    max-width: 180px;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}
.brand-card img {
	filter: grayscale(100%) brightness(100);
}
.brand-card:hover img {
    transform: scale(1.05);
    filter: grayscale(100%) brightness(100);
}

/* ===== TITLE ===== */


/* ===== DESCRIPTION ===== */
.brand-card p {
    font-size: 18px;
    color: #FFF;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* ===== LIST ===== */
.brand-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.brand-card ul li {
    font-size: 1.146vw;
    line-height: 1.56vw;
    margin-bottom: 8px;
    letter-spacing: -0.02rem;
    font-weight: 300;
}

.brand-card ul li::before {
    content: "✔";
    color: #c8a96a;
    margin-right: 8px;
}

/* ===== BUTTON ===== */
.brand-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 25px;
    border: 1px solid #c8a96a;
    color: #c8a96a;
    border-radius: 30px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.brand-btn:hover {
    background: #c8a96a;
    color: #fff;
}

/* ===== OPTIONAL BACKGROUND IMAGE VERSION ===== */
.brand-card.bg-image {
    background-size: cover;
    background-position: center;
    color: #fff;
    position: relative;
}

.brand-card.bg-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    border-radius: 16px;
    z-index: -1;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0px;
}


.brand-card.bg-image::after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(00deg, var(--nav-gradient-left), var(--nav-gradient-right));
    border-radius: 500px 500px 0 0;
    height: 0;
    width: 100%;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.brand-card.bg-image.active::after,
.brand-card.bg-image:hover::after{
    height: 100%;
    border-radius: 0;
}

.brand-body{
	position: relative;
	z-index: 3;
}

.brand-card:hover h3, .brand-card:hover p, .brand-card:hover ul li{
	color: #FFF;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .brand-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .brand-section h2 {
        font-size: 30px;
    }
}


.copyrightlft{
    text-align: left;
}
.copyrightrgt{
    text-align: right;
}


.copyrightrgt a{
    color: #FFF;
    text-decoration: none;
    margin-left: 7px;
    margin-right: 7px;
}

.copyrightrgt a:hover{
    text-decoration: underline;
}



.amenities-box img {
    max-width: 42px;
}
/*New code added*/
ul#menu-primary-menu {
    margin-left: 35px;
}
nav.navbar.navbar-expand-lg.custom-navbar {
    padding: 16px 16px;
}
.copyrightrgt a{
	font-size:16px;
}
p.footer-desc.mt-3 {
    font-size: 16px;
}
ul.footer-links li a {
    font-size: 16px !important;
}
.info-block p{
	font-size:16px !important;
}

.abtlftInner{
    padding-left: 2vw;
}



/* Top Info */
.abtlftInner .room-info {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.abtlftInner .info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
  font-weight: 500;
  font-size: 1vw;
}

.abtlftInner .info-item i {
  font-size: 1vw;
}

/* Highlights */
.abtlftInner .highlights p {
  margin: 5px 0;
  color: #a67c2d;
}

.abtlftInner .highlights i {
  margin-right: 8px;
}

/* Section Title */
.abtlftInner .section-title {
  margin: 25px 0 15px;
  font-weight: 600;
  font-size: 16px;
  color: #555;
}

/* Amenities */
.abtlftInner .amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.abtlftInner .amenities ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.abtlftInner .amenities li {
  margin-bottom: 10px;
  color: #444;
  font-size: 14px;
}

.abtlftInner .amenities li i {
  color: #a67c2d;
  margin-right: 8px;
}

.page-section.section-highlights.section-highlights-Inner{
    padding-left: 5vw;
    padding-right: 5vw;
}



/* Card Style */
.abt-experience-section .card-box {
  text-align: center;
}

.abt-experience-section .card-box img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 2px;
}

.abt-experience-section .card-box h4 {
  margin-top: 15px;
  font-size: 1.5vw;
}

/* Swiper spacing */
.abt-experience-section .swiper-slide {
  width: 300px;
}

/* Center effect */
.abt-experience-section .experienceSwiper {
  padding: 0 0px;
}


.photo-gallery-sec{
   padding-left: 5vw;
    padding-right: 5vw;
}

/* Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

/* Images */
.gallery-grid a {
  display: block;
  overflow: hidden;
  border-radius: 0px;
  height: 350px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

/* Hover Effect */
.gallery-grid a:hover img {
  transform: scale(1.08);
}


/* Grid */
.nearby-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 30px;
  background-color: #1E2A38;
  margin-top: 30px;
  border-radius: 20px;
}

/* List */
.nearby-col ul {
  list-style: none;
  padding: 0;
}

.nearby-col li {
  margin-bottom: 12px;
  font-size: 1.1vw;
  color: #FFF;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.nearby-col i {
  color: #b08a3c;
  margin-top: 3px;
}

/* Food Box */
.food-box {
  margin-top: 50px;
  background: #fff;
  padding: 25px;
/*  border-left: 4px solid #b08a3c;*/
}

.room-features {
  background: #f2f2f261;
  padding: 70px 20px;
}

/* Card */
.feature-card {
  background: var(--white);
  padding: 30px;
 /* border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);*/
  transition: 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Hover Glow */
.feature-card:hover {
  transform: translateY(-8px);
/*  box-shadow: 0 20px 40px rgba(0,0,0,0.1);*/
}

/* Gold top line */
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-gold);
}

/* Heading */
.feature-card h3 {
  color: var(--heading-color);
  margin-bottom: 20px;
}

/* Feature list */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 15px;
  border-radius: 8px;
  background: #fafafa;
  transition: 0.3s;
}

.feature-item:hover {
  background: var(--nav-active);
  transform: scale(1.02);
}

.feature-item span {
  color: #666;
}

.feature-item strong {
  color: var(--heading-color);
}

/* Inspired section */
.inspired-card p {
  margin-bottom: 20px;
  color: #666;
}

.inspired-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.inspired-item {
  padding: 15px;
  border-left: 3px solid var(--primary-gold);
  background: #fafafa;
  transition: 0.3s;
}

.inspired-item:hover {
  background: var(--nav-active);
  transform: translateX(5px);
}

.inspired-item span {
  font-weight: 600;
  color: var(--heading-color);
}

.inspired-item p {
  margin: 5px 0 0;
  font-size: 14px;
}


.hero-btns .btn-outline{
    border: 1px #FFF solid;
    color: #FFF;
}

.hero-btns .btn-outline:hover{
    border: 1px #FFF solid;
    background: #FFF;
    color: #000;
}
.photo-gallery-page-sec{
    position: relative;
}
.selflink{
    display: block;
    height: 0px;
    position: absolute;
    top: -60px;
}




.sr2-rooms {
  background: var(--bg-light);
}

/* Card */
.sr2-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.sr2-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* Image */
.sr2-img {
  overflow: hidden;
}

.sr2-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.4s;
}

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

/* Content */
.sr2-content {
  padding: 20px;
}

.sr2-content h4 {
  margin-bottom: 8px;
  color: var(--heading-color);
}

.sr2-content p {
  font-size: 14px;
  color: #666;
}

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

.sr2-bottom span {
  color: var(--primary-gold);
  font-weight: 600;
}

/* Button */
.sr2-btn {
  padding: 7px 16px;
  border: 1px solid var(--primary-gold);
  color: var(--primary-gold);
  border-radius: 25px;
  font-size: 13px;
  transition: 0.3s;
  text-decoration: none;
}

.sr2-btn:hover {
  background: var(--primary-gold);
  color: #fff;
}

/* Optional subtle animation */
.sr2-card {
  position: relative;
}
/*
.sr2-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(120deg, transparent, rgba(198,167,94,0.2), transparent);
  opacity: 0;
  transition: 0.4s;
}*/

.sr2-card:hover::after {
  opacity: 1;
}

.padding__Section{
    padding-left: 5vw;
    padding-right: 5vw;
}


.drm-aboutlux2-section {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #FFF;
  color: #0f0f0f;
}

/* Heading */
.drm-aboutlux2-title {
  font-size: 38px;
  color: #c8a96a;
  margin-bottom: 10px;
}

.drm-aboutlux2-tagline {
  color: #ccc;
  font-size: 16px;
  letter-spacing: 1px;
}

/* Content */
.drm-aboutlux2-content p {
  font-size: 15px;
  color: #000;
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 1.146vw;
    line-height: 1.56vw;
}

.drm-aboutlux2-content h5 {
  color: var(--heading-color);
  font-size: 1.5vw;
  margin-top: 25px;
  margin-bottom: 10px;
}

/* Right Boxes */
.drm-aboutlux2-boxwrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.drm-aboutlux2-box {
  background: rgba(255,255,255,0.05);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid rgba(200,169,106,0.2);
  backdrop-filter: blur(8px);
  transition: 0.3s;
}

.drm-aboutlux2-box:hover {
  transform: translateY(-5px);
  border-color: #c8a96a;
}

.drm-aboutlux2-box h6 {
  color: #c8a96a;
  margin-bottom: 10px;
}

.drm-aboutlux2-box ul {
  padding-left: 18px;
}

.drm-aboutlux2-box ul li {
  font-size: 14px;
  margin-bottom: 6px;
}

/* Animation */
.drm-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease;
}

.drm-fade.active {
  opacity: 1;
  transform: translateY(0);
}


.drm-datahub-page {
  background: linear-gradient(135deg, #f8f8f8, #ffffff);
  color: #222;
  padding-top: 100px;
  padding-bottom: 100px;
}

/* Title */
.drm-datahub-title {
  font-size: 38px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #111;
}

.drm-datahub-subtitle {
  color: #c8a96a;
  font-size: 14px;
  text-transform: uppercase;
}

/* Cards */
.drm-datahub-card {
  background: rgba(255,255,255,0.85);
/*  border: 1px solid rgba(200,169,106,0.25);*/
  padding: 25px;
  border-radius: 0px;
  backdrop-filter: blur(8px);
  transition: 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  margin-bottom: 30px;
}

.drm-datahub-card:hover {
  transform: translateY(-6px);
  border-color: #c8a96a;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.drm-datahub-card h5 {
      color: var(--heading-color);
    font-size: 1.5vw;
    margin-top: 25px;
    margin-bottom: 10px;
}

.drm-datahub-card ul {
  list-style: none;
  padding: 0;
}

.drm-datahub-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 1.146vw;
  line-height: 1.56vw;
  color: #000;
}

/* Accordion */
.drm-datahub-accordion .accordion-button {
  background: #ffffff;
  color: #b8964f;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: none;
}

.drm-datahub-accordion .accordion-button:not(.collapsed) {
  background: #f9f9f9;
  color: #b8964f;
}

.drm-datahub-accordion .accordion-body {
  background: #ffffff;
  color: #555;
  border: 1px solid rgba(0,0,0,0.05);
  border-top: none;
}

/* Animation */
.drm-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.drm-fade.active {
  opacity: 1;
  transform: translateY(0);
}


.drm-contact-section {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #f9f9f9;
}

/* Title */
.drm-contact-title {
  font-size: 36px;
  color: #111;
}

.drm-contact-subtitle {
  color: #c8a96a;
}

/* Cards */
.drm-contact-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: 0.3s;
}

.drm-contact-card:hover {
  transform: translateY(-5px);
  border-color: #c8a96a;
}

.drm-contact-card h5 {
  color: #c8a96a;
}

/* Form */
.drm-contact-form input,
.drm-contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  outline: none;
}

.drm-contact-form input:focus,
.drm-contact-form textarea:focus {
  border-color: #c8a96a;
}

.drm-contact-form button {
  background: #c8a96a;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  transition: 0.3s;
}

.drm-contact-form button:hover {
  background: #b8964f;
}

.drm-contact-form input[type="submit"] {
  background: #c8a96a;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  transition: 0.3s;
}

.drm-contact-form [type="submit"]:hover {
  background: #b8964f;
}

/* WhatsApp */
.drm-whatsapp-btn {
  display: inline-block;
  background: #25d366;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
}

/* Map */
.drm-map iframe {
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: 12px;
}

.drm-banquet-section {
  background: #f8f8f8;
}

.drm-banquet-title {
  font-size: 34px;
  color: #111;
}

.drm-banquet-subtitle {
  color: #c8a96a;
  font-size: 14px;
}

/* Cards */
.drm-banquet-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: 0.3s;
  height: 100%;
}

.drm-banquet-card:hover {
  transform: translateY(-6px);
  border-color: #c8a96a;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.drm-banquet-card h5 {
  color: #111;
  margin-bottom: 10px;
}

/* Tag */
.drm-banquet-tag {
  display: inline-block;
  font-size: 12px;
  color: #fff;
  background: #c8a96a;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

/* Button */
.drm-banquet-btn {
  background: #c8a96a;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.drm-banquet-btn:hover {
  background: #b8964f;
}



.highlight-card{
border:none;
/*
background:#fff;
box-shadow:0 8px 30px rgba(0,0,0,.05);
*/
transition:.3s;
height:100%;
    overflow: hidden;
    position: relative;
}

.highlight-card img{
    position: relative;
    z-index: 1;
}

.highlight-card::before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(00deg, var(--nav-gradient-left), var(--nav-gradient-right));
    border-radius: 500px 500px 0 0;
    height: 0;
    width: 100%;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.highlight-card.active::before,
.highlight-card:hover::before{
    height: 100%;
    border-radius: 0;
}

.highlight-card:hover img{
    opacity: .5;
}




.drm-banquet-pro {
  background: #f7f7f7;
}

/* Card */
.drm-banquet-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

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

/* Image */
.drm-banquet-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.drm-banquet-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

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

/* Overlay */
.drm-banquet-img .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

/* Tag */
.tag {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: #c8a96a;
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
}

/* Content */
.drm-banquet-content {
  padding: 20px;
}

.drm-banquet-content ul {
  list-style: none;
  padding: 0;
}

.drm-banquet-content li {
  font-size: 14px;
  margin-bottom: 8px;
}

.drm-banquet-content i {
  color: #c8a96a;
  margin-right: 8px;
}

/* Features */
.feature-box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  transition: 0.3s;
}

.feature-box i {
  font-size: 22px;
  color: #c8a96a;
  margin-bottom: 10px;
}

.feature-box:hover {
  transform: translateY(-5px);
}

/* Form */
.drm-banquet-form input,
.drm-banquet-form select,
.drm-banquet-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.drm-banquet-form button {
  background: #c8a96a;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  border: none;
}

.drm-banquet-form input[type="submit"] {
  background: #c8a96a;
  color: #fff;
  padding: 12px 30px;
  border-radius: 5px;
  border: none;
}

.abt-headline{
	font-weight: 300;
    color: #c6a75e
}


/* Mobile Styles (up to 767px) */
@media screen and (max-width: 767px) {
.drm-aboutlux2-content p {
    font-size: 15px;
    color: #000;
    line-height: 1.8;
}
.banner_pic{
		height: 30vh !important;
	}
.banner_sec{
		height: 30vh !important;
	}
.banner_sec .banner_pic .banner_text .heading h1
 {
    font-family: 'Imperial Script', cursive;
	 font-size: 42px;
}
	.banner_sec .banner_pic .banner_text p {
		font-size: 18px;
	}
	.drm-aboutlux2-section {
    padding-top: 50px;
    padding-bottom: 50px;
   
}
	.drm-aboutlux2-content h5{
		font-size:18px;
	}
	.drm-datahub-card h5 {
    font-size: 5.5vw;
	}
	.drm-datahub-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 17px;
    line-height: 30px;
    color: #000;
	}
	.experience-item-picture img {
    width: 100%;
    height: 100%;
    object-fit: contain;
	}
	.hero-swiper {
    height: 75vh !important;
    position: relative;
}
	.slide-content h2{
		font-size:44px;
	}
.abt-experience-section .card-box h4 {
    margin-top: 15px;
    font-size: 3.8vw;
}

.nearby-col li {
    margin-bottom: 12px;
    font-size: 3.1vw;
}
	.food-box h3{
		font-size:18px;
		margin-top: 10px;
	}
	.abtlftInner .info-item{
		font-size: 14px;
	}
	.abtlftInner .info-item i {
    font-size: 2.9vw;
}
	.abtlftInner .room-info{
		margin-top: 12px;
	}
	
}