/* ==========================================================================
   1. CORE DESIGN TOKENS & VARIABLES
   ========================================================================== */
:root {
    --onyx-black: #111111;
    --card-dark: #1E1A18;
    --card-hover: #2C2522;
    --luxury-gold: #C5A880;
    --canvas-cream: #FAF9F6;
    --text-muted: #A0A0A0;
    --text-dark: #4A4A4A;
    --pure-white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--pure-white);
    color: var(--onyx-black);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.gold-text { color: var(--luxury-gold); }

/* ==========================================================================
   2. GLOBAL NAVIGATION HEADER & BRAND LOGO
   ========================================================================== */
.global-navbar {
    position: sticky;
    top: 0;
    background-color: var(--onyx-black);
    padding: 0 40px;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    height: 75px; /* Fixed bar layout depth line */
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.brand-logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 100%;
}

.main-logo {
    height: 46px; /* Optimized bounded vertical cushion footprint */
    width: auto;  /* Locks correct geometric width scale ratio proportions perfectly */
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-logo-container:hover .main-logo {
    transform: scale(1.02);
}

/* ==========================================================================
   3. DESKTOP INTERFACE MENUS & BUTTON COMPONENTS
   ========================================================================== */
.desktop-menu {
    display: flex;
    gap: 35px;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--pure-white);
}

.btn-primary {
    background-color: var(--luxury-gold);
    color: var(--onyx-black);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    display: inline-block;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background-color: #bfa075;
}

/* ==========================================================================
   4. LAYOUT STRUCTURES & UTILITY GRIDS
   ========================================================================== */
.section-padding { padding: 90px 20px; }
.container-boxed { max-width: 1200px; margin: 0 auto; }

/* Landmark Proximity Showcase System */
.landmark-bg { background-color: var(--card-dark); color: var(--pure-white); }
.section-header { text-align: center; margin-bottom: 55px; }
.section-header h2 { font-size: 36px; margin-bottom: 12px; }
.section-header p { font-size: 13px; color: var(--luxury-gold); letter-spacing: 1.5px; text-transform: uppercase; }

.grid-3-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.landmark-card {
    background-color: #26201D;
    border: 1px solid rgba(197, 168, 128, 0.12);
    padding: 45px 30px;
    border-radius: 6px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.landmark-card:hover { background-color: var(--card-hover); }
.metric-large { font-size: 38px; font-weight: 700; color: var(--luxury-gold); margin-bottom: 5px; }
.landmark-card h3 { font-size: 20px; margin-bottom: 12px; }
.landmark-card p { font-size: 13px; color: #D3D3D3; font-weight: 300; line-height: 1.6; }

/* ==========================================================================
   5. PREMIUM SPLIT-HERO INTERFACE CANVAS
   ========================================================================== */
.hero-section {
    background-color: var(--canvas-cream);
    padding: 110px 20px 90px 20px;
    overflow: hidden;
}

.hero-flex-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-content-left {
    flex: 1;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    background-color: #EAF5F1;
    border: 1px solid rgba(30, 53, 47, 0.15);
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 25px;
}

.location-badge span {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #1E352F;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(38px, 4.8vw, 58px);
    line-height: 1.15;
    color: var(--onyx-black);
    margin-bottom: 20px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.hero-description {
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 35px;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--onyx-black);
    text-decoration: none;
    border: 1px solid var(--onyx-black);
    border-radius: 4px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-secondary:hover {
    background-color: var(--onyx-black);
    color: var(--pure-white);
}

.hero-image-right {
    flex: 1;
    min-width: 320px;
    max-width: 650px;
    position: relative;
}

.hero-frame-bracket {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(197, 168, 128, 0.3); /* Translucent premium luxury gold line overlay */
    bottom: -15px;
    right: -15px;
    border-radius: 8px;
    z-index: 1;
}

.hero-image-container {
    position: relative;
    z-index: 2;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.hero-image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ==========================================================================
   6. INTERACTIVE MOBILE DRAWER MENU COMPONENTS
   ========================================================================== */
.mobile-menu-trigger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    z-index: 1100;
}

.mobile-menu-trigger .bar {
    width: 100%;
    height: 2px;
    background-color: var(--luxury-gold);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-navigation-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background-color: #161312;
    z-index: 2000;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-navigation-drawer.drawer-active {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(197, 168, 128, 0.15);
    padding-bottom: 15px;
}

.drawer-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--luxury-gold);
}

.drawer-close-btn {
    background: transparent;
    border: none;
    font-size: 32px;
    color: var(--pure-white);
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

.drawer-close-btn:hover { color: var(--luxury-gold); }

.mobile-drawer-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.drawer-link {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--pure-white);
    text-decoration: none;
    transition: padding-left 0.3s ease, color 0.3s ease;
}

.drawer-link:hover {
    color: var(--luxury-gold);
    padding-left: 8px;
}

.drawer-cta-btn {
    margin-top: 20px;
    background-color: var(--luxury-gold);
    color: var(--onyx-black);
    text-align: center;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 14px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    transition: background-color 0.2s ease;
}

.drawer-cta-btn:hover { background-color: #bfa075; }

/* ==========================================================================
   7. RESPONSIVE DISPLAY MEDIA BREAKPOINTS ENGINE
   ========================================================================== */
@media (max-width: 992px) {
    .desktop-menu, .desktop-cta {
        display: none !important;
    }
    
    .mobile-menu-trigger {
        display: flex !important;
    }

    .grid-3-col {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-flex-container {
        flex-direction: column-reverse;
        gap: 40px;
    }
    
    .hero-content-left {
        align-items: center;
        text-align: center;
    }
    
    .hero-description {
        max-width: 100%;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-image-right {
        max-width: 100%;
        width: 100%;
    }
    
    /* Slightly lower magnification constraint for tablet viewports */
    img[src*="vardhaman_grand_inn_"]:not(.main-logo):active {
        transform: translate(-50%, -50%) scale(1.35) !important;
        max-width: 92vw !important;
    }
}

@media (max-width: 768px) {
    .global-navbar {
        padding: 0 20px;
        height: 65px;
    }

    .main-logo {
        height: 38px;
    }

    .grid-3-col {
        grid-template-columns: 1fr;
    }

    .section-padding { padding: 60px 15px; }
    .section-header h2 { font-size: 28px; }
    
    .lightbox-close-trigger {
        top: 20px;
        right: 20px;
        font-size: 38px;
    }
	.floating-features-bar { 
        margin: -20px 15px 40px 15px; 
        flex-direction: column; 
        align-items: flex-start; /* Aligns icons to the left */
        gap: 20px;               /* Adds breathing room between items */
        padding: 25px;           /* Proper internal padding */
    }
    
    .feature-item { 
        min-width: 100%;        /* Forces items to occupy full width */
        width: 100%;            /* Ensures they don't collapse */
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 15px 50px 15px;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .hero-btn-main,
    .btn-secondary {
        width: 100%;
    }
    
    /* Full boundary fitting configuration for mobile displays */
    img[src*="vardhaman_grand_inn_"]:not(.main-logo):active {
        transform: translate(-50%, -50%) scale(1.05) !important;
        max-width: 96vw !important;
    }
}

/* ==========================================================================
   8. PREMIUM INTERACTIVE LIGHTBOX & MODAL EFFECTS
   ========================================================================== */
.hero-image-right {
    cursor: pointer; /* Notifies the user the entire element block container is interactive */
}

.lightbox-trigger-img {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Luxury zoom styling properties on hover states */
.hero-image-container {
    position: relative;
}

.lightbox-hint-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 17, 0.4); /* Sophisticated dark velvet mask overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.lightbox-hint-overlay span {
    color: var(--pure-white);
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 18px;
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(4px);
    border-radius: 4px;
}

.hero-image-right:hover .lightbox-hint-overlay {
    opacity: 1;
}

.hero-image-right:hover .lightbox-trigger-img {
    transform: scale(1.03);
}

/* Hidden Modal Backdrop Element Layout State */
.global-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(11, 9, 9, 0.95); /* Deep dark canvas backdrop focus mask */
    z-index: 9999; /* Ensure modal floats completely above global navigation bars */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s ease;
}

/* Active Class trigger matching Javascript listener execution strings */
.global-lightbox-overlay.lightbox-active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.lightbox-content-wrapper {
    max-width: 90%;
    max-height: 85%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); /* Elite springy elastic pop physics styling asset rule */
}

.global-lightbox-overlay.lightbox-active .lightbox-content-wrapper {
    transform: scale(1);
}

.lightbox-zoomed-image {
    max-width: 100%;
    max-height: 100vh;
    object-fit: contain;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.lightbox-close-trigger {
    position: absolute;
    top: 30px;
    right: 40px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 44px;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease, transform 0.2s ease;
    z-index: 10000;
}

.lightbox-close-trigger:hover {
    color: var(--luxury-gold);
    transform: scale(1.1);
}

/* ==========================================================================
   9. GLOBAL AUTOMATED CLICK-TO-ZOOM INVENTORY ENGINE
   ========================================================================== */
/* Targets every layout image matching the client's asset naming loop sequentially */
img[src*="vardhaman_grand_inn_"]:not(.main-logo) {
    cursor: zoom-in;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    position: relative;
    z-index: 5;
}

/* Elegant shadow elevation nudge on standard hover events */
img[src*="vardhaman_grand_inn_"]:not(.main-logo):hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* THE MAGIC TRICK: High-Fidelity lightbox zoom when the mouse/touch click is held active.
   Calculates perfect canvas viewport offsets natively.
*/
img[src*="vardhaman_grand_inn_"]:not(.main-logo):active {
    cursor: zoom-out;
    position: fixed;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) scale(1.6) !important;
    max-width: 85vw !important;
    max-height: 85vh !important;
    width: auto !important;
    height: auto !important;
    z-index: 99999 !important;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.88) !important;
    border-radius: 6px !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

/* Darkens the background behind the active zoomed file block elements */
img[src*="vardhaman_grand_inn_"]:not(.main-logo):active::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(11, 9, 9, 0.97);
    z-index: -1;
}