/* ==========================================================================
   HOTEL ANANYA GRAND SHALIMAR - CORE PRODUCTION STYLES
   ========================================================================== */

:root {
    --primary-burgundy: #803033;
    --primary-burgundy-hover: #632225;
    --luxury-gold: #C5A039;
    --luxury-gold-muted: #E5C158;
    --cream-bg: #FDFBF7;
    --pure-white: #FFFFFF;
    --charcoal-dark: #2A2A2A;
    --text-muted: #666666;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);




/* ==========================================================================
   HOTEL ANANYA BRAND BRANDING UTILITIES (REUSABLE CLASSES)
   ========================================================================== */


    /* Exact Color Palette Variable Extractions */
    --brand-burgundy: #803033;       /* Deep rich wine / primary brand color */
    --brand-gold: #C5A039;           /* Luxury metallic gold accent */
    --brand-gold-light: #F4EAD4;     /* Soft tinted gold for subtle alert boxes */
    --brand-charcoal: #1E272C;       /* Low-contrast deep dark grey for premium sections */
    --brand-black: #0F1416;          /* Near absolute dark backdrop contrast */
    --brand-cream: #FAF6F0;          /* Classic warm off-white surface */
    --brand-white-pure: #FFFFFF;     /* Base white element */
}

/* --------------------------------------------------------------------------
   1. BACKGROUND COLOR UTILITIES (Apply to <section>, <div>, <header>)
   -------------------------------------------------------------------------- */

/* Signature Burgundy Layer Background */
.bg-brand-burgundy {
    background-color: var(--brand-burgundy) !important;
}

/* Warm Luxury Gold Element Background */
.bg-brand-gold {
    background-color: var(--brand-gold) !important;
}

/* Soft Accent Box / Notification Background */
.bg-brand-gold-light {
    background-color: var(--brand-gold-light) !important;
}

/* Sleek MICE Corporate Charcoal Background */
.bg-brand-charcoal {
    background-color: var(--brand-charcoal) !important;
}

/* Deep Contrasting Onyx Midnight Background */
.bg-brand-black {
    background-color: var(--brand-black) !important;
}

/* Nostalgic Old Kolkata Textured Cream Surface Background */
.bg-brand-cream {
    background-color: var(--brand-cream) !important;
}


/* --------------------------------------------------------------------------
   2. TEXT COLOR UTILITIES (Apply to <h1>, <h2>, <p>, <span>)
   -------------------------------------------------------------------------- */

.text-brand-burgundy {
    color: var(--brand-burgundy) !important;
}

.text-brand-gold {
    color: var(--brand-gold) !important;
}

.text-brand-charcoal {
    color: var(--brand-charcoal) !important;
}

.text-brand-cream {
    color: var(--brand-cream) !important;
}


/* --------------------------------------------------------------------------
   3. PREMIUM COMBO CONTAINER PATTERNS (Ready-Made Layout Prefabs)
   -------------------------------------------------------------------------- */

/* Premium Onyx Corporate Box Pattern */
.container-premium-dark {
    background: linear-gradient(135deg, var(--brand-charcoal) 0%, var(--brand-black) 100%);
    color: var(--brand-white-pure);
    border-left: 4px solid var(--brand-gold);
}

/* Nostalgic Kolkata Heritage Frame Pattern */
.container-heritage-cream {
    background-color: var(--brand-cream);
    border: 1px solid rgba(128, 48, 51, 0.1);
    color: var(--brand-charcoal);
}

/* Luxury Call-Out Focus Box Pattern */
.container-luxury-callout {
    background-color: var(--brand-gold-light);
    border-left: 4px solid var(--brand-burgundy);
    color: var(--brand-burgundy);
}



















body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--cream-bg);
    color: var(--charcoal-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-serif {
    font-family: 'Playfair Display', serif;
}

/* --- Clean Global Hyperlinks Rule --- */
a {
    text-decoration: none !important;
    color: inherit;
    transition: var(--transition-smooth);
}
a:hover {
    color: var(--primary-burgundy);
}

/* --- Top Utility Strip --- */
.top-bar {
    background-color: var(--charcoal-dark);
    color: var(--cream-bg);
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(197, 160, 57, 0.2);
}
.top-bar a {
    color: var(--cream-bg);
}
.top-bar a:hover {
    color: var(--luxury-gold);
}








/* ==========================================================================\
   REFINED LUXURY NAVIGATION
   ========================================================================== */

/* 1. Light Navigation Container */
.navbar {
    background: var(--brand-cream) !important; /* Cream background for clarity */
    border-bottom: 2px solid var(--brand-gold) !important;
    padding: 15px 0;
    transition: var(--transition-smooth);
}

/* 2. Nav Links (Dark text for light background) */
.navbar .nav-link {
    color: var(--brand-charcoal) !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 10px 15px !important;
    transition: var(--transition-smooth);
}

.navbar .nav-link:hover, 
.navbar .nav-link.active {
    color: var(--brand-burgundy) !important;
}

/* 3. Boutique Dropdown Menus */
.dropdown-menu {
    background: var(--pure-white) !important;
    border: 1px solid rgba(197, 160, 57, 0.2) !important;
    border-radius: 0;
    padding: 0.5rem 0;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.dropdown-item {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.75rem 1.5rem;
    color: var(--brand-charcoal) !important;
    transition: var(--transition-smooth);
}

/* Updated Hover State for Dropdown */
.dropdown-item:hover {
    background: var(--brand-gold-light) !important; /* Soft gold background on hover */
    color: var(--brand-burgundy) !important;
    padding-left: 2rem; /* Slight nudge for effect */
}

/* 4. Elegant CTA Button */
.btn-outline-brand-gold {
    border: 1px solid var(--brand-burgundy) !important;
    color: var(--brand-burgundy) !important;
    padding: 8px 24px !important;
    border-radius: 0 !important;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-outline-brand-gold:hover {
    background: var(--brand-burgundy) !important;
    color: var(--pure-white) !important;
}

/* 5. Professional Hover Dropdown Animation */
@media (min-width: 992px) {
    .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    }
    .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}












/* --- Master Action Buttons --- */
.btn-burgundy {
    background-color: var(--primary-burgundy);
    color: var(--pure-white) !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 12px 28px;
    border: none;
    border-radius: 0;
    transition: var(--transition-smooth);
}
.btn-burgundy:hover {
    background-color: var(--primary-burgundy-hover);
    transform: translateY(-2px);
}
.btn-gold {
    background-color: var(--luxury-gold);
    color: var(--charcoal-dark) !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 12px 28px;
    border: none;
    border-radius: 0;
    transition: var(--transition-smooth);
}
.btn-gold:hover {
    background-color: var(--luxury-gold-muted);
    transform: translateY(-2px);
}






.btn-outline-dark {
    border: 1px solid transparent;
    color: var(--brand-charcoal);
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.btn-outline-dark:hover, .btn-outline-dark.active {
    border-bottom: 1px solid var(--brand-gold);
    background: transparent;
    color: var(--brand-gold);
}




















/* --- Layout Elements --- */
.gold-label {
    color: var(--luxury-gold);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}
.section-title {
    color: var(--primary-burgundy);
    font-weight: 600;
    margin-bottom: 24px;
}

/* Floating Overlap Image Component */
.image-overlap-container {
    position: relative;
    padding-bottom: 60px;
}
.bg-frame-decoration {
    position: absolute;
    border: 1px solid var(--luxury-gold);
    width: 80%;
    height: 85%;
    top: -15px;
    right: 0;
    z-index: 1;
}
.main-overlap-img {
    position: relative;
    z-index: 2;
    width: 85%;
    border-radius: 4px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    display: block;
    margin-left: auto;
}
.floating-accent-img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    z-index: 3;
    border: 6px solid var(--pure-white);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* --- Component Cards & Modules --- */
.showcase-card {
    background: var(--pure-white);
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: var(--transition-smooth);
}
.showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}
.showcase-img-wrapper {
    position: relative;
    overflow: hidden;
}
.showcase-card img {
    transition: var(--transition-smooth);
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.showcase-card:hover img {
    transform: scale(1.05);
}
.card-price-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--primary-burgundy);
    color: var(--pure-white);
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* --- Multi-Cuisine Restaurant Page Overrides --- */
.restaurant-theme {
    background-color: #FFFBF7;
}
.restaurant-hero {
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('images/restaurant-slider-001.png') center/cover no-repeat;
    padding: 140px 0;
    text-align: center;
}
.restaurant-logo-frame {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 3px solid var(--luxury-gold);
    background: var(--primary-burgundy);
    color: var(--luxury-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -80px auto 30px auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 5;
    position: relative;
}

/* --- Reusable Invitation Card --- */
.invitation-card {
    background: var(--pure-white);
    border: 1px solid rgba(128, 51, 51, 0.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    padding: 50px;
    margin-top: 40px;
}

/* --- Interactive Forms & Utilities --- */
.luxury-card-form {
    background: var(--pure-white);
    padding: 40px;
    border-top: 4px solid var(--primary-burgundy);
    box-shadow: 0 15px 40px rgba(0,0,0,0.03);
}
.form-control, .form-select {
    border: 1px solid rgba(0,0,0,0.08);
    background-color: #F9F8F6;
    border-radius: 0;
    padding: 12px 15px;
    font-size: 0.9rem;
}
.form-control:focus, .form-select:focus {
    background-color: var(--pure-white);
    border-color: var(--primary-burgundy);
    box-shadow: none;
}

/* --- Realtime Actions & Toasts --- */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: var(--pure-white) !important;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    z-index: 9999;
}
.floating-whatsapp:hover {
    transform: scale(1.08);
}
.luxury-toast {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: var(--charcoal-dark);
    color: var(--cream-bg);
    padding: 15px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-left: 4px solid var(--luxury-gold);
    z-index: 10000;
    display: none;
}




/* Hero Carousel Customizations */
.hero-carousel-wrapper {
    height: 80vh;
    overflow: hidden;
}

.carousel-item {
    height: 80vh;
}

.carousel-item img {
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7); /* Adds elegance and text contrast */
}

.carousel-caption {
    bottom: 25%;
}

/* Mobile Responsive Typography */
@media (max-width: 768px) {
    .carousel-caption h1 {
        font-size: 2rem !important;
    }
    .carousel-caption p {
        font-size: 1rem !important;
    }
    .hero-carousel-wrapper, .carousel-item {
        height: 50vh;
    }
}

/* Elegant Nav Arrow Styling */
.carousel-control-prev-icon, 
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(197, 160, 57, 0.5); /* Luxury Gold Tint */
    border-radius: 50%;
}
/* END Hero Carousel Customizations */









/* ==========================================================================
   ENHANCED FOOTER EXTENSION STYLES
   ========================================================================== */

/* Menu link anchor interaction properties */
.hover-brand-gold {
    transition: color 0.25s ease-in-out, transform 0.25s ease-in-out;
}
.hover-brand-gold:hover {
    color: var(--brand-gold) !important;
    transform: translateX(3px);
}

/* Micro sizing override for structural icon alignments */
.small-icon {
    font-size: 0.65rem;
    vertical-align: middle;
}

/* Link element underlines inside copyright system */
.hover-underline:hover {
    text-decoration: underline !important;
}

/* ==========================================================================
   FOOTER MENU INTERACTION ARCHITECTURE
   ========================================================================== */

/* Target the anchor tags within your new spaced menu list */
.footer-spaced-menu li a {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}

/* Hover State Transformation */
.footer-spaced-menu li a:hover {
    color: var(--brand-gold) !important;      /* Changes text to brand gold */
    transform: translateX(6px);                /* Smoothly nudges link to the right */
    text-shadow: 0 0 1px rgba(197, 160, 57, 0.2); /* Soft luxury text glow */
}

/* Optional: Subtle rotation effect on the chevron icon when link is hovered */
.footer-spaced-menu li a:hover .small-icon {
    color: var(--brand-gold) !important;
    display: inline-block;
    transform: scale(1.1);
    transition: transform 0.2s ease;
}




/* ==========================================================================
   TYPOGRAPHY & READABILITY ENHANCEMENTS (LINE SPACING)
   ========================================================================== */

/* Apply smooth, elegant line spacing across all standard paragraph elements */
p {
    line-height: 1.7 !important;
    margin-bottom: 1.25rem; /* Generous spacing after paragraphs */
}

/* Apply spacious, distinct formatting to unordered and ordered lists */
ul, ol {
    line-height: 1.65;
}

/* Add custom vertical separation between individual bullet items */
li {
    margin-bottom: 0.5rem; /* Creates comfortable spacing between list items */
}

/* Ensure micro/muted details also receive proportional spacing */
.text-muted, .small, text-white-50 {
    line-height: 1.6;
}


/* ==========================================================================
   BANQUET AMENITIES CARD HOVER MODULE
   ========================================================================== */

/* Clean structural subtle layout border line sync */
.border-flat-accent {
    border-color: rgba(197, 160, 57, 0.15) !important;
}

/* Setup card dynamic elevations for high-end boutique look */
.transition-card {
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 4px;
}

/* Micro interaction transformation state triggers */
.transition-card:hover {
    border-color: var(--brand-burgundy) !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(15, 20, 22, 0.05);
}

/* Micro-animation nudge specific to icon wrappers inside layout fields */
.transition-card:hover .brand-icon-wrapper i {
    transform: scale(1.1);
    transition: transform 0.2s ease-in-out;
}



/* ==========================================================================
   EXQUISITE VENUES LAYOUT MODULE EXTENSIONS
   ========================================================================== */

/* Structural Card Enclosures */
.venue-horizontal-card {
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    background-color: #ffffff;
}

/* Card Shift Interactive Cues */
.venue-horizontal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(15, 20, 22, 0.08) !important;
    border-color: rgba(128, 48, 51, 0.25) !important;
}

/* Enforced Dynamic Sizing Constraints for Fluid Column Heights */
.min-h-350 {
    min-height: 350px;
}
@media (max-width: 991.98px) {
    .min-h-350 {
        min-height: 280px;
    }
}

/* Premium Metallic-Cut Floating Card Badges */
.venue-floating-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--brand-burgundy);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 2px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border-left: 3px solid var(--brand-gold);
}





/* Gallery Item Base State */
.gallery-item {
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 1;
    transform: scale(1);
}

/* Hidden State (Applied by JS) */
.gallery-item.hidden {
    opacity: 0;
    transform: scale(0.95); /* Subtle shrink effect */
    pointer-events: none; /* Prevents clicks while hidden */
    position: absolute;   /* Removes from document flow */
    visibility: hidden;
    display: none !important;
}


.gallery-item:hover {
    transform: scale(1.02);
}



/* Ensure modal backdrop is premium */
.modal-content {
    background: rgba(30, 39, 44, 0.95); /* --brand-charcoal */
    backdrop-filter: blur(15px);
    border: none;
}

/* Image scaling */
#modalImage {
    max-height: 75vh;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
}

/* Elegant Nav Arrows */
.nav-arrow {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--brand-gold);
    color: var(--brand-gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.nav-arrow:hover { background: var(--brand-gold); color: var(--brand-charcoal); }



/* Enhanced Gallery Tabs */
.btn-outline-dark {
    border: 1px solid var(--brand-gold) !important;
    color: var(--brand-charcoal) !important;
    border-radius: 0 !important;
    padding: 8px 24px !important;
    transition: var(--transition-smooth);
}

.btn-outline-dark:hover, .btn-outline-dark.active {
    background: var(--brand-gold) !important;
    color: var(--pure-white) !important;
}

/* Modal Close Button */
.btn-close-custom {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--brand-gold);
    font-size: 2rem;
    z-index: 10;
}

/* Caption Animation */
#modalCaption {
    font-size: 1.25rem !important;
    letter-spacing: 2px;
    text-transform: uppercase;
}









        /* Main Gateway Side-by-Side Flex Framework */
        .gateway-wrapper {
            max-width: 1240px;
            margin: 0 auto;
            padding: 50px 20px;
            width: 100%;
            flex-grow: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .card-container-grid {
            display: flex;
            flex-direction: row; 
            gap: 35px;
            width: 100%;
            justify-content: center;
        }

        .hotel-column {
            flex: 1; 
            min-width: 320px;
            display: flex;
        }

        .hotel-card {
            background: #ffffff;
            border: 1px solid var(--border-light);
            border-radius: 5px;
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            overflow: hidden;
            transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease, border-color 0.45s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.015);
        }

        .hotel-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(35, 34, 32, 0.12);
            border-color: var(--brand-burgundy);
        }
        
        
        
        
        /* Global Directory & Contacts Block Assembly */
        .contact-directory-block {
            border-bottom: 1px solid #f2edd3;
            padding-bottom: 20px;
            margin-bottom: 20px;
            text-align: left;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .directory-line {
            display: flex;
            align-items: flex-start;
            font-size: 0.82rem;
            color: var(--muted-gray);
            line-height: 1.4;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a.directory-line:hover {
            color: var(--brand-burgundy);
        }

        .directory-line i {
            color: var(--brand-gold);
            margin-right: 12px;
            margin-top: 3px;
            width: 14px;
            text-align: center;
            flex-shrink: 0;
        }

        /* Balanced Premium Social Media Icon Decks */
        .social-link-deck {
            display: flex;
            justify-content: center;
            gap: 18px;
            margin-bottom: 5px;
            padding-top: 5px;
        }

        .social-icon-btn {
            color: var(--brand-gold);
            font-size: 1.1rem;
            text-decoration: none;
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.3s ease;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #faf7f2;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(197, 160, 57, 0.15);
        }

        .social-icon-btn:hover {
            transform: scale(1.15);
            color: #ffffff;
            background-color: var(--brand-burgundy);
            border-color: var(--brand-burgundy);
        }

        /* Action Footer Trigger Elements */
        .card-footer {
            padding: 0 30px 35px 30px;
        }

        .btn-action {
            display: block;
            width: 100%;
            padding: 16px;
            text-transform: uppercase;
            font-size: 0.8rem;
            letter-spacing: 2px;
            font-weight: 600;
            text-align: center;
            text-decoration: none;
            transition: all 0.3s ease;
            border-radius: 0;
        }

        .btn-burgundy {
            background-color: var(--brand-burgundy);
            color: #ffffff !important;
            border: 1px solid var(--brand-burgundy);
        }
        .btn-burgundy:hover {
            background-color: #5c2224;
            border-color: #5c2224;
            box-shadow: 0 4px 15px rgba(128, 48, 51, 0.2);
        }
        


        .btn-outline-burgundy {
            background-color: var(--brand-burgundy);
            color: #ffffff !important;
            border: 1px solid var(--brand-burgundy);
        }
        .btn-outline-burgundy:hover {
            background-color: #5c2224;
            border-color: #5c2224;
            box-shadow: 0 4px 15px rgba(128, 48, 51, 0.2);
        }        
        
        
        
        
        

        .btn-outline {
            background-color: transparent;
            color: var(--brand-charcoal) !important;
            border: 1px solid var(--brand-charcoal);
        }
        .btn-outline:hover {
            background-color: var(--brand-charcoal);
            color: #ffffff !important;
        }