/*!
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: 250px;
    background-position: center center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}



.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-size: 36px;
    font-weight: 700;
    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: 600;
    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: #fff;
  padding: 30px;
  border-radius: 12px;
  transition: 0.3s;
/*  box-shadow: 0 5px 20px rgba(0,0,0,0.05);*/
}

/*.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;
}

/* 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: #555;
}

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

.store-features li {
  font-size: 14px;
  color: #444;
  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: 14px;
  letter-spacing: 1px;
  color: #555;
}

/* 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);
}