@charset "UTF-8";

/*
Theme Name: Ganga Inn Hostel
Theme URI: https://gangainnhostel.com
Author: Westonik
Description: Professional theme with Forum & Lora Fonts, Bootstrap 5, and Blue Color Scheme.
Version: 1.6.1
*/

/* =========================================
   1. FONTS & VARIABLES
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Forum&family=Lora:wght@400;500;600;700&display=swap');

:root {
	/* -- 1. COLOR PALETTE -- */

	/* ACCENT COLOR (Gold) - Used for Stars, Lines, Buttons */
	--color-primary: #c19d60;
	--color-primary-dark: #a0824b;

	/* HEADING COLOR (Navy Blue) - Used for Text */
	--color-heading: #0f172a;
	/* Dark Navy */

	/* TEXT BODY COLOR */
	--color-text: #4a4a4a;
	/* Soft Dark Grey */

	/* BACKGROUNDS */
	--color-secondary: #FBF6E8;
	/* Light Cream */
	--color-white: #ffffff;

	/* -- 2. FONTS -- */
	--font-heading: 'Forum', serif;
	--font-body: 'Lora', serif;
}

/* =========================================
   GLOBAL TYPOGRAPHY (Responsive & Correct Colors)
   ========================================= */

body {
	font-family: var(--font-body);
	color: var(--color-text);
	background-color: var(--color-secondary);
	overflow-x: hidden;
	margin: 0;
	padding: 0;

	/* Fluid Base Size */
	font-size: 16px;
	line-height: 1.6;
}

/* HEADINGS - Force them to use the NAVY color, not Gold */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-heading);
	font-weight: 400;
	color: var(--color-heading);
	/* <--- THIS FIXES THE COLOR ISSUE */
	line-height: 1.2;
	margin-bottom: 1rem;
}

/* LINKS - Keep links Gold or Navy? usually Gold looks good for links */
a {
	font-family: var(--font-body);
	text-decoration: none;
	transition: all 0.3s ease;
	color: var(--color-heading);
	/* Links start Navy */
}

a:hover {
	color: var(--color-primary);
	/* Links turn Gold on hover */
}

/* =========================================
   RESPONSIVE FONT SIZES
   ========================================= */

/* Mobile Sizes */
h1 {
	font-size: 2.5rem;
}

h2 {
	font-size: 2rem;
}

h3 {
	font-size: 1.75rem;
}

h4 {
	font-size: 1.5rem;
}

p {
	font-size: 1rem;
}

/* Tablet Sizes (min-width: 768px) */
@media (min-width: 768px) {
	h1 {
		font-size: 3.5rem;
	}

	h2 {
		font-size: 2.75rem;
	}

	h3 {
		font-size: 2rem;
	}

	h4 {
		font-size: 1.75rem;
	}

	body {
		font-size: 17px;
	}
}

/* Desktop Sizes (min-width: 1200px) */
@media (min-width: 1200px) {
	h1 {
		font-size: 4.5rem;
	}

	h2 {
		font-size: 3.5rem;
	}

	h3 {
		font-size: 2.5rem;
	}

	body {
		font-size: 18px;
	}
}

/* Bootstrap Fix */
.display-4 {
	font-size: 2.5rem !important;
	/* Mobile */
	color: var(--color-heading) !important;
	/* Ensure Navy */
}

@media (min-width: 992px) {
	.display-4 {
		font-size: 3.5rem !important;
		/* Desktop */
	}
}

/* Helper Classes */
.text-dark-blue {
	color: var(--color-primary) !important;
}

.bg-light-blue {
	background-color: var(--color-secondary) !important;
}

.hover-accent:hover {
	color: var(--color-accent) !important;
}

/* HIDE SKIP TO CONTENT (Requested) */
.skip-link {
	display: none !important;
}

/* =========================================
   3. LAYOUT: CONTAINER 1550px
   ========================================= */
.container {
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}

/* Force 1550px width on screens larger than 1600px */
@media (min-width: 1600px) {
	.container {
		max-width: 1550px !important;
	}
}

/* =========================================
   4. BUTTONS (Blue BG, White Text)
   ========================================= */
.btn,
.hero-section__btn,
.header-action .btn {
	background-color: #c19d60 !important;
	color: var(--color-white) !important;
	border: 1px solid #fff !important;
	padding: 12px 30px;
	font-weight: 700;
	text-transform: uppercase;
	border-radius: 4px;
	transition: all 0.3s ease;
}

/* Hover Effect: Turns Dark Blue */
.btn:hover,
.hero-section__btn:hover,
.header-action .btn:hover {
	background-color: var(--color-primary) !important;
	border: 1px solid white;
	color: var(--color-white) !important;
}

/* =========================================
   5. HEADER STYLES (Fixed & Sticky)
   ========================================= */
.site-header {
	transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

/* Scrolled State */
.site-header.header-scrolled {
	background-color: var(--color-primary);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

/* Hide Top Bar on Scroll */
.site-header.header-scrolled #header-top-bar {
	display: none;
}

/* Navigation Links */
.navbar-nav .nav-link {
	font-weight: 600;
	text-transform: uppercase;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.9) !important;
	padding: 10px 15px;
	position: relative;
}

/* Hover Effect (Blue Underline) */
.navbar-nav .nav-link::after {
	content: '';
	position: absolute;
	bottom: 5px;
	left: 15px;
	width: 0;
	height: 2px;
	background-color: var(--color-accent);
	/* Blue */
	transition: width 0.3s ease;
}

@media (min-width: 997px) {
    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        bottom: 20px;
        left: 100%;
        width: 0;
        height: 2px;
        background-color: var(--color-accent);
        transition: width 0.3s ease;
    }
    .page-template-page-contact .navbar-nav .nav-link,
.page-template-page-gallery .navbar-nav .nav-link,
.page-template-page-video-gallery .navbar-nav .nav-link,
.page-template-page-rooms .navbar-nav .nav-link,
.page-template-page-about .navbar-nav .nav-link{
    	color:black !important;        
    }
}

            

/* Dropdown Menus */
.dropdown-menu {
	background-color: var(--color-primary);
	border: none;
	border-top: 3px solid var(--color-accent);
	border-radius: 0 0 5px 5px;
	padding: 0;
}

.dropdown-item {
	color: #fff;
	padding: 12px 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-item:hover {
	background-color: rgba(255, 255, 255, 0.1);
	color: var(--color-accent);
}


            
            
            
            
            
            
            
            
            
            
            

/* =========================================
   6. HERO SECTION
   ========================================= */
.hero-section {
	position: relative;
	min-height: 85vh;
	display: flex;
	align-items: center;
	padding-top: var(--header-height);
}

.hero-section__bg {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background-size: cover;
	background-position: center;
	z-index: -2;
}

.hero-section__overlay {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: linear-gradient(90deg, #000000 10%, rgba(0, 0, 0, 0.63) 40.06%, rgba(0, 0, 0, 0.58) 100%);
	z-index: -1;
}

/* Typography */
.hero-section__subtitle {
	display: block;
	color: #fff;
	font-weight: 500;
	font-size: 12px;
	letter-spacing: 2px;
	margin-bottom: 1rem;
	margin-top: 2rem;
}

.hero-section__title {
	font-size: 4rem;
	line-height: 1.1;
	color: #fff;
	margin-bottom: 2rem;
}

/* Play Button */
.hero-section__play-btn {
	width: 90px;
	height: 90px;
	background: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-primary);
	font-size: 1.5rem;
	position: relative;
	z-index: 10;
}
.hero-section__play-btn:hover { color: var(--color-accent); }
.hero-section__play-btn::before,
.hero-section__play-btn::after {
	content: '';
	position: absolute;
	border: 1px solid rgba(255, 255, 255, 0.6);
	left: -20px; right: -20px; top: -20px; bottom: -20px;
	border-radius: 50%;
	animation: pulse 2s linear infinite;
	opacity: 0;
}
.hero-section__play-btn::after { animation-delay: 1s; }
@keyframes pulse {
	0% { transform: scale(0.5); opacity: 0; }
	50% { opacity: 1; }
	100% { transform: scale(1.2); opacity: 0; }
}

/* =========================================
   7. FLOATING BOOKING FORM
   ========================================= */
.hero-section__form-wrapper {
	position: absolute;
	bottom: -60px;
	left: 0; right: 0;
	z-index: 20;
}

.hero-section__form {
	border-bottom: 4px solid #c19d60;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.hero-section__form i { color: var(--color-accent) !important; }
.hero-section__form-item label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; }
.hero-section__form .form-control,
.hero-section__form .form-select {
	font-size: 1.1rem;
	font-weight: 700;
	padding-left: 0;
	border: none;
	border-bottom: 1px solid #ddd;
	border-radius: 0;
	color: var(--color-primary) !important;
}
.hero-section__form .form-control:focus,
.hero-section__form .form-select:focus {
	box-shadow: none;
	border-bottom: 1px solid var(--color-accent) !important;
}

/* Desktop Borders */
@media (min-width: 992px) {
    .hero-form-col { border-right: 1px solid #dee2e6; }
}

/* =========================================
   8. RESPONSIVE UPDATES (FIXED)
   ========================================= */

/* Tablet & Mobile (Max Width 991px) */
@media (max-width: 991px) {
	.hero-section {
		min-height: auto;
		padding-top: 140px;
		padding-bottom: 60px;
		display: block; /* Stacks content naturally */
	}

	.hero-section__title {
		font-size: 2.8rem;
        text-align: center;
	}
    
    .hero-section__content { text-align: center; }
    
    .hero-section__actions { 
        justify-content: center;
        flex-direction: column; 
    }

    /* Reset Form Position - No longer floating */
	.hero-section__form-wrapper {
		position: relative;
		bottom: auto;
		margin-top: 40px;
        width: 100%;
	}
    
    /* Add spacing between grid items */
    .hero-section__form .col-md-6 {
        margin-bottom: 1.5rem;
    }
    
    /* Ensure Inputs take full width */
    .hero-section__form-item { width: 100%; }
}

/* Mobile Only (Max Width 576px) */
@media (max-width: 576px) {
	.hero-section { padding-top: 120px; padding-bottom: 40px; }
	.hero-section__title { font-size: 2rem; }
    
    .hero-section__form { padding: 1.5rem !important; }
    
    /* Make button full width */
    #ajaxSubmitBtn { width: 100%; margin-top: 10px; }
}


            
            
            
            
            
            
            
            

/* =========================================
   8. EXPANDING GALLERY (Accordion)
   ========================================= */
#expanding-gallery {
	height: 500px;
	margin-top: 2rem;
}

.expand-card {
	position: relative;
	height: 100%;
	border-radius: var(--border-radius-lg);
	cursor: pointer;
	overflow: hidden;
	flex: 0.5;
	/* Collapsed state */
	margin: 0;
	transition: flex 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.expand-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s ease;
	filter: brightness(0.8);
}

/* Active State */
.expand-card.active {
	flex: 5;
	/* Expanded state */
}

.expand-card.active img {
	filter: brightness(1);
}

.expand-card:hover img {
	transform: scale(1.05);
}

/* Content Overlay */
.expand-content {
	position: absolute;
	bottom: 30px;
	left: 30px;
	right: 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 2;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.4s ease, transform 0.4s ease;
	transition-delay: 0.1s;
}

.expand-card.active .expand-content {
	opacity: 1;
	transform: translateY(0);
}

/* Gallery Text/Arrow */
.expand-label {
	background: #fff;
	color: var(--color-primary);
	padding: 10px 20px;
	border-radius: 8px;
	font-weight: 700;
}

.expand-arrow {
	width: 45px;
	height: 45px;
	background: var(--color-accent);
	/* Blue */
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: rotate(45deg);
}

/* Mobile Gallery */
@media (max-width: 768px) {
	#expanding-gallery {
		flex-direction: column;
		height: 800px;
	}

	.expand-card {
		width: 100%;
		margin-bottom: 10px;
		flex: 1 !important;
	}

	.expand-content {
		opacity: 1;
		transform: translateY(0);
	}
}

/* =========================================
   9. FOOTER STYLES
   ========================================= */
.site-footer {
	font-size: 0.95rem;
}

.footer-shape-top {
	width: 100%;
	height: 100px;
	background-color: #fbf6e800;
	background-image: url('https://gangainn.com/wp-content/uploads/2025/12/cta-bg-shape1.webp');
	background-repeat: no-repeat;
	background-position: top center;
}

/* Partner Logos */
.partner-logos img {
	opacity: 0.6;
	transition: all 0.3s ease;
}

.partner-logos img:hover {
	opacity: 1;
}

/* Footer Links */
.footer-links-clean li {
	margin-bottom: 10px;
}

.footer-links-clean a {
	color: #556c80;
}

.footer-links-clean a:hover {
	color: var(--color-accent);
	padding-left: 5px;
}

/* Social Buttons */
.social-sq-btn {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	color: var(--color-primary);
	border-radius: 4px;
	transition: all 0.3s ease;
}

.social-sq-btn:hover {
	background: var(--color-accent);
	/* Blue */
	color: #fff;
	transform: translateY(-3px);
}

/* Explore Circle Button */
.explore-circle-btn {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background-color: var(--color-primary);
	transition: transform 0.3s ease, background-color 0.3s ease;
	text-align: center;
	border: 1px solid white;
}

.explore-circle-btn:hover {
	transform: scale(1.1) rotate(15deg);
	background-color: white;
	color: #c19d60 !important;
}

/* Scroll To Top */
.scroll-top-outline {
	width: 45px;
	height: 45px;
	border: 1px solid white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.scroll-top-outline:hover {
	background: white;
	color: #fff !important;
}

a.custom-logo-link img {
	height: 120px !important;
	width: 120px;
	object-fit: contain;
}

/* 1. Default Logo Constraints */
.site-branding img,
.custom-logo {
	max-height: 80px;
	/* Set a reasonable max height for initial view */
	width: auto;
	/* Maintain aspect ratio */
	transition: all 0.4s ease;
	/* Smooth shrink animation */
}

/* 2. Scrolled Header Adjustments */
.site-header.header-scrolled {
	background-color: var(--color-primary) !important;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Shrink the logo when scrolled */
.site-header.header-scrolled .site-branding img,
.site-header.header-scrolled .custom-logo {
	max-height: 50px;
	/* Smaller height for sticky state */
}

/* Adjust Navbar padding when scrolled */
.site-header.header-scrolled .navbar {
	padding-top: 5px !important;
	padding-bottom: 5px !important;
}

#scroll-to-top {
	color: white;
	background-color: #C19D60;
}

#scroll-to-top:hover {
	color: #C19D60 !important;
	background-color: white !important;
}


/* =========================================
   15. GALLERY SLIDER UI
   ========================================= */

.gallery-slider-section {
	padding-bottom: 80px;
}

.gallery-swiper {
	padding-bottom: 50px;
	/* Space for pagination */
	/* Remove the hardcoded left/right padding from here */
	/* Padding is now handled by the Bootstrap container classes in HTML */
}

/* Individual Slide Item */
.gallery-slide-item {
	display: block;
	position: relative;
	overflow: hidden;
	border-radius: 0;
	cursor: pointer;
	height: 400px;
	/* Default Desktop Height */
}

/* The Image */
.gallery-slide-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

/* Hover Zoom Effect */
.gallery-slide-item:hover .gallery-slide-img {
	transform: scale(1.1);
}

/* Overlay on Hover */
.gallery-slide-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(16, 55, 92, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.gallery-slide-item:hover .gallery-slide-overlay {
	opacity: 1;
}

/* Icon in Overlay */
.gallery-slide-overlay i {
	font-size: 2rem;
	color: #fff;
	transform: scale(0);
	transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-slide-item:hover .gallery-slide-overlay i {
	transform: scale(1);
}

/* Swiper Pagination Customization */
.gallery-swiper .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: #ccc;
	opacity: 0.6;
}

.gallery-swiper .swiper-pagination-bullet-active {
	background: var(--color-accent);
	opacity: 1;
}

/* =========================================
   RESPONSIVE FIXES (Mobile & Tablet)
   ========================================= */
@media (max-width: 768px) {

	/* Reduce height on mobile so it doesn't take up full screen */
	.gallery-slide-item {
		height: 280px;
		border-radius: 8px;
		/* Slight roundness looks better on mobile */
	}

	.display-4 {
		font-size: 2.5rem;
		/* Smaller Heading */
	}
}


/* =========================================
   17. MODERN COLLAGE & ICONS (UPDATED)
   ========================================= */

.luxury-collage-section {
	overflow: hidden;
}

/* 1. Text Decorations */
.modern-explore-btn {
	padding: 12px 30px;
	border-radius: 50px;
	background: transparent;
	border: 1px solid var(--color-primary);
	color: var(--color-primary);
	font-weight: 700;
	text-transform: uppercase;
	font-size: 0.8rem;
	display: flex;
	align-items: center;
	gap: 10px;
	white-space: nowrap;
	/* Prevents text breaking on small mobile */
}

.modern-explore-btn:hover {
	background: var(--color-primary);
	color: #fff;
}

.resort-line-decor {
	height: 1px;
	background: rgba(16, 55, 92, 0.2);
}

/* 2. OVERLAPPING COLLAGE LOGIC (DESKTOP) */
.collage-container {
	position: relative;
	height: 600px;
	/* Desktop Height */
	width: 100%;
}

.collage-card {
	position: absolute;
	border-radius: 12px;
	overflow: hidden;
	transition: transform 0.5s ease;
	/* Only animate transform */
}

.collage-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Desktop Positions */
.card-back {
	width: 65%;
	height: 75%;
	top: 0;
	left: 0;
	/* Pinned Left */
	z-index: 1;
}

.card-front {
	width: 60%;
	height: 80%;
	bottom: 0;
	right: 0;
	/* Pinned Right */
	z-index: 2;
	border: 8px solid #fff;
}

/* Hover Effect: Moves Up/Down (Vertical Only) */
.collage-container:hover .card-front {
	transform: translateY(-10px);
}

.collage-container:hover .card-back {
	transform: translateY(10px);
}


/* 3. MODERN AMENITY ICONS */
.modern-amenity {
	text-align: center;
	padding: 20px 10px;
	transition: all 0.3s ease;
}

.amenity-icon-circle {
	width: 60px;
	height: 60px;
	margin: 0 auto 15px;
	background: #C19D60;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
	border: 1px solid #C19D60;
	transition: all 0.3s ease;
}

.modern-amenity i {
	font-size: 1.8rem;
	color: #fff;
}

.modern-amenity h6 {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--bs-secondary-color);
	margin: 0;
}

.modern-amenity:hover .amenity-icon-circle {
	background: var(--color-primary);
	transform: translateY(-5px);
}

.modern-amenity:hover i {
	color: #fff;
}

/* Award Badge */
.modern-cutout {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 120px;
	height: 60px;
	z-index: 5;
}

.cutout-bg {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	border-radius: 120px 120px 0 0;
}

.cutout-icon-box {
	position: absolute;
	bottom: 10px;
	width: 100%;
	text-align: center;
	color: var(--color-primary);
}


/* =========================================
   RESPONSIVE FIXES (TABLET & MOBILE)
   ========================================= */

/* TABLET (Max-Width: 991px) */
@media (max-width: 991px) {

	.responsive-heading {
		font-size: 3rem;
	}

	/* 
       STABILITY FIX: 
       Instead of centering cards with transforms (which breaks on hover),
       we center the CONTAINER and pin cards to corners.
    */
	.collage-container {
		height: 500px;
		max-width: 550px;
		/* Restrict width so it doesn't stretch too wide */
		margin: 40px auto 0;
		/* Center the whole block */
	}

	.card-back {
		width: 85%;
		height: 75%;
		left: 0;
		top: 0;
		/* Fixed position */
		transform: none;
		/* Remove any previous centering transforms */
	}

	.card-front {
		width: 65%;
		height: 65%;
		right: 0;
		bottom: 0;
		/* Fixed position */
		border-width: 5px;
	}

	/* Hover works perfectly now because we aren't fighting horizontal transforms */
}

/* MOBILE (Max-Width: 767px) */
@media (max-width: 767px) {

	.responsive-heading {
		font-size: 2.2rem;
	}

	.modern-amenity {
		padding: 15px 5px;
	}

	.collage-container {
		height: 380px;
		/* Smaller height for mobile */
		max-width: 100%;
		/* Full width allowed */
	}

	.card-back {
		width: 85%;
		height: 75%;
		left: 0;
		top: 0;
	}

	.card-front {
		width: 70%;
		height: 60%;
		right: 0;
		bottom: 0;
		border-width: 4px;
	}

	/* Adjust Badge size */
	.modern-cutout {
		transform: translateX(-50%) scale(0.8);
		transform-origin: bottom center;
	}
}


/* =============================================
   ROOMS & SUITES SECTION - CSS
   ============================================= */

/* Background Layer */
.room-bg-layer {
	position: absolute;
	top: 49px;
	right: 0;
	width: 55%;
	height: 100%;
	background-color: rgb(255 242 204);
	z-index: 0;
}

/* Swiper Navigation Buttons */
.room-swiper-btn {
	width: 50px;
	height: 50px;
	border: 1px solid var(--color-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-primary);
	cursor: pointer;
	transition: all 0.3s ease;
}

.room-swiper-btn:hover {
	background: var(--color-primary);
	color: #fff;
}

/* CARD STYLES */
.room-item-card {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease;
	border: 1px solid #C19D60;
	margin: 15px 5px;
	/* Margin for shadow space */
}

.room-item-card:hover {
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.room-img-wrapper {
	position: relative;
	height: 250px;
	overflow: hidden;
}

.room-img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.room-item-card:hover .room-img-wrapper img {
	transform: scale(1.1);
}

/* --- FIX 1: RATING BADGE --- */
.room-rating-badge {
	position: absolute;
	bottom: 15px;
	right: 15px;
	background: #fff;
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 700;
	color: #10375c;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

	/* PREVENT STRETCHING */
	height: auto !important;
	width: max-content !important;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	line-height: normal;
}

.room-rating-badge i {
	color: #f59e0b;
	margin-right: 5px;
	line-height: 0;
}

/* Card Body */
.room-card-body {
	padding: 25px;
}

.room-card-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--color-primary);
	margin-bottom: 10px;
}

.room-card-desc {
	font-size: 0.9rem;
	color: #666;
	line-height: 1.6;
	margin-bottom: 20px;
}

/* --- FIX 2: AMENITIES IN ONE ROW --- */
.room-amenities-list {
	display: flex;
	gap: 8px;
	flex-wrap: nowrap !important;
	/* Force Single Row */
	align-items: center;
	width: 100%;
	overflow: hidden;
	/* Prevent spillover just in case */
}

.room-amenities-list span {
	font-size: 0.75rem;
	color: #555;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 5px;
	background: #f8f9fa;
	padding: 6px 10px;
	border-radius: 5px;
	white-space: nowrap;
	/* Keep text together */
	flex-shrink: 0;
	/* Don't shrink too much */
}

.room-amenities-list span i {
	color: var(--color-accent);
}

/* Price & Button */
.room-price-tag {
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--color-primary);
}

.room-view-btn {
	font-size: 0.7rem;
	font-weight: 700;
	border-radius: 4px;
	padding: 10px 12px;
	color: white;
	background-color: #c19d60 !important;
	text-decoration: none;
	text-transform: uppercase;
	transition: margin 0.3s ease;
    border:none !important;
}

.room-view-btn:hover {
	color: white;
	background-color: var(--color-accent);
}

/* TABLET (Max-Width: 991px) */
@media (max-width: 991px) {
	.room-bg-layer {
		width: 100%;
		height: 40%;
		top: auto;
		bottom: 0;
		border-radius: 0;
	}

	.room-responsive-heading {
		font-size: 2.5rem;
	}
}

/* MOBILE (Max-Width: 767px) */
@media (max-width: 767px) {
	.room-responsive-heading {
		font-size: 2rem;
	}

	.room-img-wrapper {
		height: 200px;
	}

	.room-card-body {
		padding: 20px;
	}

	/* Ensure amenities fit on very small screens */
	.room-amenities-list {
		gap: 5px;
	}

	.room-amenities-list span {
		padding: 5px;
		font-size: 0.7rem;
	}
}


/* =============================================
   TESTIMONIAL CAROUSEL (Blue Theme)
   ============================================= */

/* The Card Wrapper */
.testimonial-card {
	background-color: var(--color-white);
	padding: 3rem;
	/* Spacious padding like the image */
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(16, 55, 92, 0.05);
	/* Subtle navy shadow */
	position: relative;
	height: 100%;
}

/* Stars */
.star-rating {
	color: #FFC107;
	/* Gold standard for stars */
	font-size: 1.2rem;
	letter-spacing: 2px;
}

/* Testimonial Text */
.testimonial-text {
	font-family: var(--font-main);
	/* Uses 'Outfit' */
	font-size: 1.25rem;
	line-height: 1.8;
	color: #4b5563;
	/* Slightly lighter than body text for elegance */
	font-style: italic;
	margin-bottom: 2rem;
}

/* User Image */
.testimonial-user-img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--color-secondary);
}

/* Quote Icon (Bottom Right) */
.quote-icon {
	font-size: 4rem;
	color: var(--color-primary);
	/* Uses your Dark Navy */
	opacity: 0.15;
	/* Light transparency */
	line-height: 1;
}

/* =============================================
   CUSTOM SWIPER NAVIGATION (Matches Image)
   ============================================= */

.testimonial-controls-wrapper {
	margin-top: 30px;
}

/* 1. The Buttons (Square with Navy Background) */
.swiper-button-custom {
	width: 50px;
	height: 50px;
	background-color: var(--color-primary);
	/* Dark Navy */
	color: var(--color-white);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	/* Slight radius */
	cursor: pointer;
	transition: all 0.3s ease;
}

.swiper-button-custom:hover {
	background-color: var(--color-accent);
	/* Brighter Blue on hover */
	transform: translateY(-2px);
}

/* 2. The Pagination (Dashes between buttons) */
.swiper-pagination-custom {
	display: flex;
	align-items: center;
	gap: 8px;
	width: auto !important;
}

/* Style the standard swiper bullets to look like dashes */
.swiper-pagination-custom .swiper-pagination-bullet {
	width: 25px;
	/* Long dash */
	height: 4px;
	/* Thickness */
	background-color: var(--color-primary);
	opacity: 0.3;
	border-radius: 4px;
	margin: 0 !important;
	transition: all 0.3s ease;
}

.swiper-pagination-custom .swiper-pagination-bullet-active {
	opacity: 1;
	background-color: var(--color-primary);
	width: 40px;
	/* Active one is slightly longer or same */
}

/* Responsive Tweak */
@media (max-width: 768px) {
	.testimonial-card {
		padding: 2rem;
	}

	.testimonial-text {
		font-size: 1rem;
	}
}


/* =============================================
   MARQUEE STRIP (BLUE THEME)
   ============================================= */
.marquee-section {
	background-color: var(--color-primary);
	/* Dark Navy Blue */
	padding: 30px 0;
	overflow: hidden;
	white-space: nowrap;
	position: relative;
	z-index: 5;
}

.marquee-content {
	display: inline-block;
	animation: marquee-scroll 25s linear infinite;
}

/* Individual Items */
.marquee-item {
	color: var(--color-white);
	font-family: var(--font-main);
	/* Or var(--font-main) */
	font-size: 1.8rem;
	/* Large, readable text */
	font-weight: 400;
	margin: 0 50px;
	/* Space between items */
	display: inline-flex;
	align-items: center;
	gap: 50px;
	/* Space between Text and Star */
}

/* The Star Icon */
.marquee-item i {
	color: white;
	/* Bright Sky Blue */
	font-size: 1.2rem;
	vertical-align: middle;
}

/* Border Helper */
.border-white-10 {
	border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Hover Pauses Scroll (Optional) */
.marquee-section:hover .marquee-content {
	animation-play-state: paused;
}

/* Animation Keyframes */
@keyframes marquee-scroll {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

/* Responsive Font Size */
@media (max-width: 768px) {
	.marquee-item {
		font-size: 1.2rem;
		margin: 0 20px;
		gap: 20px;
	}
}


/* =============================================
   22. ROOMS & SUITES SECTION (Card Slider)
   ============================================= */

/* Background Layout: White left, Dark Image right */
.rooms-suites-section {
	background-color: var(--color-white);
	overflow: hidden;
	border-top: 1px solid #ebebeb;
}

.rooms-bg-layer {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 65%;
	/* Covers right side */
	background-image: url('https://images.pexels.com/photos/2082087/pexels-photo-2082087.jpeg?auto=compress&cs=tinysrgb&w=1600');
	/* Dark interior */
	background-size: cover;
	background-position: center;
	z-index: 1;
}

/* Add a dark overlay to the image so cards pop */
.rooms-bg-layer::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(16, 55, 92, 0.7);
	/* Dark Navy Overlay */
}

/* Decorative Line in Header */
.line-decor {
	width: 30px;
	height: 1px;
	background-color: var(--color-primary);
	display: inline-block;
}

.text-primary-custom {
	color: var(--color-primary);
}

/* Navigation Buttons (Round outline) */
.swiper-btn-room {
	width: 50px;
	height: 50px;
	border: 1px solid var(--color-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-primary);
	cursor: pointer;
	transition: all 0.3s ease;
	background: #fff;
}

.swiper-btn-room:hover {
	background-color: var(--color-primary);
	color: #fff;
}

/* ================== THE CARD ================== */
.room-suite-card {
	background: #fff;
	border-radius: 20px;
	padding: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	height: 100%;
	transition: transform 0.3s ease;
	border: 1px solid #cbcbcb;
}

/* Card Image */
.room-suite-img {
	position: relative;
	border-radius: 15px;
	overflow: hidden;
	height: 220px;
	margin-bottom: 15px;
}

.room-suite-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.room-suite-card:hover .room-suite-img img {
	transform: scale(1.1);
}

/* Rating Badge */
.rating-badge {
	position: absolute;
	top: 15px;
	right: 15px;
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	padding: 5px 12px;
	border-radius: 20px;
	font-size: 0.8rem;
	backdrop-filter: blur(5px);
}

.rating-badge i {
	color: #FFD700;
	margin-right: 3px;
}

/* Card Content */
.room-suite-body {
	padding: 0 10px 10px;
}

.room-name {
	font-family: var(--font-main);
	/* Or var(--font-main) */
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--color-primary);
	margin-bottom: 8px;
}

.room-desc {
	font-size: 0.9rem;
	color: #6c757d;
	line-height: 1.5;
	margin-bottom: 15px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	/* Limit text to 2 lines */
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Amenities Icons Row */
.room-amenities-row {
	display: flex;
	justify-content: space-between;
	font-size: 0.85rem;
	color: #555;
	background: #f8f9fa;
	padding: 10px;
	border-radius: 8px;
}

.room-amenities-row i {
	color: var(--color-accent);
	/* Blue accent */
	margin-right: 5px;
}

/* Price & Button */
.room-price {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--color-primary);
}

.btn-view-details {
	padding: 8px 20px;
	border: 1px solid #dee2e6;
	border-radius: 30px;
	color: var(--color-primary);
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	background: transparent;
	transition: all 0.3s ease;
}

.btn-view-details:hover {
	background: var(--color-primary);
	border-color: var(--color-primary);
	color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
	.rooms-bg-layer {
		width: 100%;
		height: 50%;
		bottom: 0;
		top: auto;
	}

	.rooms-swiper-nav {
		display: none !important;
	}

	/* Hide custom nav on mobile, use dots */
}


/* =============================================
   23. HAPPY CUSTOMERS SECTION (FIXED HEIGHT)
   ============================================= */

/* 1. CRITICAL: Force Swiper Slides to equal height */
.happy-customers-swiper .swiper-slide {
	height: auto;
	/* Lets the slide take the height of the tallest sibling */
	display: flex;
	/* Allows the card inside to stretch */
}

/* Decorative Dots in Top Left */
.decor-dots {
	position: absolute;
	top: 50px;
	left: 50px;
	display: flex;
	gap: 10px;
}

.decor-dots span {
	width: 10px;
	height: 10px;
	background-color: var(--color-accent);
	border-radius: 50%;
	opacity: 0;
}

/* Card Styling */
.customer-card {
	background-color: rgb(251, 246, 232);
	padding: 30px;
	position: relative;
	overflow: hidden;
	border: 1px solid #c19d60;
	border-radius: 8px;

	/* FLEXBOX HEIGHT FIXES */
	height: 100%;
	/* Fills the slide height */
	display: flex;
	/* Enables flex layout */
	flex-direction: column;
	/* Stacks children vertically */
}

/* Inner Content Wrapper */
/* This ensures the content stretches so the footer hits the bottom */
.customer-card .card-content {
	flex: 1;
	/* Grows to fill available space */
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 2;
}

/* Large Faint Background Quote Icon */
.bg-quote-icon {
	position: absolute;
	top: -20px;
	right: 10px;
	font-size: 10rem;
	color: rgb(255 242 204);
	opacity: 0.6;
	z-index: 1;
	font-family: var(--font-main);
	line-height: 1;
}

/* Stars */
.star-rating i {
	color: #f59e0b;
	font-size: 0.9rem;
	margin-right: 2px;
}

/* Text Body */
.customer-text {
	font-size: 1rem;
	line-height: 1.7;
	color: #6b7280;
	margin-bottom: 20px;
	font-style: normal;
}

/* Divider Line */
.customer-divider {
	border: 0;
	height: 1px;
	background-color: #e5e7eb;
	margin: 20px 0;
	width: 50px;
	transition: width 0.3s ease;

	/* Pushes divider and profile to the bottom */
	margin-top: auto;
}

.customer-card:hover .customer-divider {
	width: 100%;
	background-color: #c19d60;
}

.customer-card:hover {
	cursor: pointer;
}

/* Profile Image */
.customer-img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
}

/* Name & Role */
.customer-name {
	font-family: var(--font-main);
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--color-primary);
	margin-bottom: 2px;
}

.customer-role {
	font-size: 0.85rem;
	color: #9ca3af;
	font-weight: 400;
}

/* Pagination (Lines/Dashes) */
.happy-pagination .swiper-pagination-bullet {
	width: 25px;
	height: 4px;
	border-radius: 4px;
	background-color: #d1d5db;
	opacity: 1;
	transition: all 0.3s ease;
}

.happy-pagination .swiper-pagination-bullet-active {
	background-color: var(--color-primary);
	width: 35px;
}


/* =============================================
   ROTATING CIRCLE BADGE
   ============================================= */

.rotating-badge-container {
	position: relative;
	width: 160px;
	/* Adjust size as needed */
	height: 160px;
	background-color: #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	/* Soft shadow */
	z-index: 10;
	/* Ensure it sits on top */
}

/* 1. The Spinning Text Wrapper */
.badge-rotator {
	position: absolute;
	width: 100%;
	height: 100%;
	animation: rotate-text 15s linear infinite;
	/* Adjust speed here */
}

/* 2. SVG Text Styling */
.badge-svg {
	width: 100%;
	height: 100%;
	transform-origin: center;
}

.badge-text {
	font-family: 'Outfit', sans-serif;
	/* Your Theme Font */
	font-weight: 600;
	font-size: 24px;
	/* Adjust font size to fit circle */
	letter-spacing: 2px;
	fill: var(--color-primary);
	/* Dark Navy Text */
	text-transform: uppercase;
}

/* 3. Center Icon (Static) */
.badge-center-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}

.badge-center-icon i {
	font-size: 2.5rem;
	/* Icon Size */
	color: #cfa162;
	/* Gold Color from image */
}

/* Animation Keyframes */
@keyframes rotate-text {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

/* Optional: Pause on Hover */
.rotating-badge-container:hover .badge-rotator {
	animation-play-state: paused;
}


/* =============================================
      NEARBY LOCATIONS - RESPONSIVE CSS
      ============================================= */
.nearby-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.nearby-item {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 15px;
	cursor: pointer;
	border-radius: 8px;
	background: rgb(251, 246, 232);
	border: 1px solid #c19d60;
	transition: all 0.3s ease;
}

/* Active State */
.nearby-item.active {
	border-color: #c19d60;
	background-color: rgb(193 157 96);
	box-shadow: rgb(152, 124, 74);
}

/* Active State */
.nearby-item.active .nearby-text,
.nearby-item.active .nearby-title {
	color: white;
}

.nearby-img {
	width: 100px;
	height: 75px;
	flex-shrink: 0;
	overflow: hidden;
	border-radius: 8px;
}

.nearby-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nearby-badge {
	background: white;
	color: #c19d60;
	font-size: 10px;
	padding: 3px 8px;
	font-weight: 700;
	text-transform: uppercase;
	border-radius: 4px;
	display: inline-block;
	margin-bottom: 5px;
	border: 1px solid #c19d606e;
}

.nearby-title {
	font-size: 1.1rem;
	color: var(--color-primary);
	margin: 0 0 5px 0;
	font-weight: 700;
}

.nearby-text {
	font-size: 0.85rem;
	color: #666;
	margin: 0;
	line-height: 1.4;
}

/* 2. DESKTOP MAP STYLES (LG and Up) */
@media (min-width: 992px) {

	/* Ensures the row has a minimum height so map looks "full" */
	.nearby-locations-section .row {
		min-height: 600px;
	}

	.nearby-map-wrapper {
		position: relative;
		height: 100%;
		/* Stretches to fill the col-lg-6 */
		width: 100%;
		background: #f8f9fa;
	}
}

/* Map Glow Overlay */
.map-inner-glow {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	pointer-events: none;
	box-shadow: inset 0 0 25px 40px rgb(255 252 242);
}

/* 3. TABLET & MOBILE STYLES (Max 991px) */
@media (max-width: 991px) {

	/* Remove the full-height constraint, let content stack */
	.nearby-locations-section .row {
		min-height: auto;
	}

	/* Fixed height for map on Mobile so it doesn't vanish or get too small */
	.nearby-map-wrapper {
		height: 400px;
		width: 100%;
		margin-top: 30px;
		/* Space between list and map */
		background: #f8f9fa;
		position: relative;
	}

	/* Adjust Headers */
	.nearby-header h2 {
		font-size: 2rem;
	}
}

/* 4. SMALL MOBILE (Max 576px) */
@media (max-width: 576px) {
	.nearby-item {
		padding: 10px;
		gap: 15px;
	}

	.nearby-img {
		width: 80px;
		height: 80px;
	}

	.nearby-title {
		font-size: 1rem;
	}

	.nearby-text {
		font-size: 0.75rem;
		/* Limit text lines */
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.nearby-map-wrapper {
		height: 350px;
	}
}


/* =============================================
      AVAILABLE ON SECTION CSS
      ============================================= */
/* 1. Logo Styling (Base / Mobile First) */
.partner-logo {
	display: inline-block;
	/* MOBILE HEIGHT: 50px is standard for phone screens */
	height: 50px;
	width: auto;
	object-fit: contain;
	/* Visuals */
	transition: all 0.4s ease;
	cursor: pointer;
	/* Optional: If you want them gray initially, uncomment this: */
	/* filter: grayscale(100%) opacity(0.7); */
}

/* 2. TABLET Sizing (iPad / Small Laptops) */
@media (min-width: 768px) {
	.partner-logo {
		height: 65px;
	}
}

/* 3. DESKTOP Sizing (Large Screens) */
@media (min-width: 992px) {
	.partner-logo {
		height: 80px;
		/* Your requested large size */
	}
}

/* 3. Hover Effect */
.partner-logo:hover {
	transform: scale(1.1);
	/* filter: grayscale(0%) opacity(1); */
}


/* =============================================
      3D STACK VIDEO GALLERY STYLES
      ============================================= */
.video-stack-wrapper {
	position: relative;
	padding: 30px 0 60px;
	overflow: hidden;
}

.video-stack-swiper {
	width: 100%;
	overflow: visible !important;
	/* Critical for overlapping side slides */
}

.video-stack-swiper .swiper-slide {
	width: 600px;
	/* Width of the card */
	height: 380px;
	border-radius: 15px;
	overflow: hidden;
	transition: all 0.5s ease;
	filter: brightness(0.4);
	/* Darken side slides */
}

.video-stack-swiper .swiper-slide-active {
	filter: brightness(1);
	/* Brighten center slide */
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.v-stack-card {
	position: relative;
	width: 100%;
	height: 100%;
	background: #000;
}

.v-stack-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 1. Play Button Style */
.v-stack-play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
}

.v-stack-play-circle {
	width: 75px;
	height: 75px;
	background: rgba(255, 255, 255, 0.9);
	border: 3px solid #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #10375c;
	/* Navy Blue */
	font-size: 1.2rem;
	transition: all 0.3s ease;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.v-stack-play-circle:hover {
	background: #fff;
	transform: scale(1.1);
}

/* 2. Bottom Footer Bar */
.v-stack-footer {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 20px 25px;
	background: linear-gradient(transparent, rgba(16, 55, 92, 0.85));
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 5;
}

.v-stack-title {
	color: #fff;
	font-size: 1.1rem;
	font-weight: 700;
	margin: 0;
}

.v-stack-time {
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(5px);
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	padding: 4px 12px;
	border-radius: 20px;
}

/* 3. Navigation Arrows */
.v-stack-nav {
	position: absolute;
	top: 45%;
	width: 45px;
	height: 45px;
	background: #fff;
	color: #10375c;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 20;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.v-stack-nav:hover {
	background: #10375c;
	color: #fff;
}

.v-stack-prev {
	left: 20px;
}

.v-stack-next {
	right: 20px;
}

/* 4. Pagination Dots */
.v-stack-dots {
	bottom: 15px !important;
}

.v-stack-dots .swiper-pagination-bullet {
	background: #fff;
	opacity: 0.4;
	width: 8px;
	height: 8px;
}

.v-stack-dots .swiper-pagination-bullet-active {
	background: #007bff;
	/* Bright blue dot like your image */
	opacity: 1;
}

@media (max-width: 768px) {
	.video-stack-swiper .swiper-slide {
		width: 90%;
		height: 260px;
	}

	.v-stack-nav {
		display: none;
	}
}



/* =========================================
   TOASTR NOTIFICATION CUSTOMIZATION
   ========================================= */

/* 1. General Toast Style */
#toast-container > div {
    opacity: 1 !important;               /* Remove transparency */
    border-radius: 4px !important;       /* Your 4px theme radius */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
	font-family: var(--font-body);
    font-size: 14px !important;
    padding: 15px 15px 15px 50px !important; /* Adjust padding for icon */
}

/* 2. SUCCESS (Booking Submitted) - Emerald Green */
#toast-container > .toast-success {
    background-color: #10B981 !important; /* Modern Emerald Green */
    background-image: none !important;    /* Remove default icon if you want clean look */
}
/* Optional: Add a custom icon via CSS if you removed the image above
   Or just keep default behavior. The background color is key. */

/* 3. ERROR (Security/Validation Fail) - Red */
#toast-container > .toast-error {
    background-color: #EF4444 !important; /* Soft Modern Red */
}

/* 4. WARNING (Rate Limiting / Spam Protection) - Amber/Orange */
#toast-container > .toast-warning {
    background-color: #F59E0B !important; /* Deep Amber */
}

/* 5. Progress Bar Color */
.toast-progress {
    background-color: rgba(255, 255, 255, 0.4) !important;
}

/* 6. Title and Message Text */
.toast-title {
    font-weight: 700 !important;
    font-size: 15px !important;
}
.toast-message {
    font-weight: 400 !important;
}





.page-template-page-contact #header-top-bar, .page-template-page-gallery #header-top-bar, .page-template-page-video-gallery #header-top-bar, .page-template-page-rooms #header-top-bar, .page-template-page-about #header-top-bar{
	background-color: #C19D60 !important;
}


.site-header.header-scrolled{
	z-index:11 !important;      
}


.dropdown-menu[data-bs-popper]{
	border-radius:4px;
}
      

      
.fa-calendar-check:before {
    margin-left: 5px;
}      
      

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}      
      
      
@media (max-width: 996px) {
    .navbar-collapse.justify-content-end.collapse.show {
        background: #ffffff;
        padding: 20px;
    }
    .navbar-nav .nav-link{
    	color:#c19d60 !important; 
      	padding: 10px 0px;
    }
    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        bottom: 20px;
        left: 98%;
        width: 0;
        height: 2px;
        background-color: var(--color-accent);
        transition: width 0.3s ease;
    }
      /* Sab dropdown items */
    .dropdown-menu .dropdown-item {
        color: #c19d60;
        padding: 12px 20px;
        background: #fff;
        border-bottom: 1px solid #c19d60;
    }

    /* Sirf first item ke liye top border */
    .dropdown-menu li:first-child > .dropdown-item {
        border-top: 1px solid #c19d60;
    }
	.hero-section__form .form-control, .hero-section__form .form-control:focus{
          border-bottom: 1px solid #ddd !important;
    }
    
}

      