@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Rajdhani:wght@500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    /* Vertex Theme Tokens (Refined to Royal Blue & Crimson) */
    --v-blue: #0066ff;
    --v-blue-glow: rgba(0, 102, 255, 0.6);
    --v-red: #ff003c;
    --v-red-glow: rgba(255, 0, 60, 0.6);
    --v-bg: #020204;
    --v-card-bg: rgba(20, 20, 35, 0.5);
    --v-border: rgba(0, 102, 255, 0.3);
    --v-text: #ffffff;
    --v-text-dim: rgba(255, 255, 255, 0.6);
    
    /* Cozyan Theme Tokens */
    --c-beige: #f5ebe0;
    --c-cream: #fffdfa;
    --c-brown: #6d4c41;
    --c-green: #4caf50;
    --c-bg: #fdfaf7;
    --c-text: #2d241e;
    --c-text-dim: #6d4c4199;

    /* Common */
    --transition-base: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    --glass: blur(10px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

        body {
            font-family: 'Inter', sans-serif;
            background: var(--v-bg);
            color: var(--v-text);
            overflow-x: hidden;
            line-height: 1.6;
            width: 100%;
            scroll-behavior: smooth;
            /* Force hide scrollbar for all browsers */
            -ms-overflow-style: none;  /* IE and Edge */
            scrollbar-width: none;  /* Firefox */
        }

        body::-webkit-scrollbar {
            display: none !important; /* Chrome, Safari and Opera */
            width: 0 !important;
            height: 0 !important;
        }

        html {
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        html::-webkit-scrollbar {
            display: none !important;
        }

        /* ── SMART WHATSAPP BUBBLE ── */
        .wa-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #25d366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
            z-index: 9999;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            animation: waPulse 2s infinite;
        }
        .wa-float:hover {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
        }
        .wa-float i { width: 30px; height: 30px; }

        @keyframes waPulse {
            0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
            70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
            100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
        }

        /* ── LIVE STATUS CHIP ── */
        .live-chip {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(0, 102, 255, 0.15);
            border: 1px solid var(--v-blue);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 800;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-family: 'Rajdhani';
            backdrop-filter: blur(15px);
            box-shadow: 0 0 20px rgba(0, 102, 255, 0.2);
            z-index: 100;
            position: relative;
        }
        .live-dot {
            width: 8px;
            height: 8px;
            background: #00ff88;
            border-radius: 50%;
            position: relative;
        }
        .live-dot::after {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            border: 2px solid #00ff88;
            animation: liveRipple 1.5s infinite;
        }
        @keyframes liveRipple {
            0% { transform: scale(1); opacity: 1; }
            100% { transform: scale(2.5); opacity: 0; }
        }

        @media (max-width: 768px) {
            .wa-float { bottom: 120px; right: 20px; width: 50px; height: 50px; }
        }

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

h1, h2, h3, h4, .font-gaming {
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

/* --- LOADER --- */
#loader {
    position: fixed;
    inset: 0;
    background: var(--v-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}



.loader-content {
    text-align: center;
}

.loader-line {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.loader-progress {
    position: absolute;
    height: 100%;
    width: 0%;
    background: var(--v-blue);
    box-shadow: 0 0 10px var(--v-blue);
}

/* --- NAVIGATION --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.5);
    backdrop-filter: var(--glass);
    border-bottom: 1px solid var(--v-border);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--v-text-dim);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--v-blue);
    text-shadow: 0 0 10px var(--v-blue-glow);
}

.nav-cta {
    background: var(--v-blue);
    color: var(--v-bg);
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Rajdhani';
    box-shadow: 0 0 15px var(--v-blue-glow);
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 16px 35px;
    border-radius: 4px;
    font-family: 'Rajdhani';
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-base);
    border: 2px solid transparent; /* Added border to match outline size */
    position: relative;
    overflow: hidden;
    height: 58px; /* Fixed height for consistency */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: var(--v-blue);
    color: var(--v-bg);
}

.btn-primary:hover {
    box-shadow: 0 0 30px var(--v-blue-glow);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--v-blue); /* Thicker border for better visibility */
    color: var(--v-blue);
}

.btn-outline:hover {
    background: rgba(0, 102, 255, 0.1); /* Subtle background instead of solid */
    color: var(--v-blue);
    box-shadow: 0 0 20px var(--v-blue-glow);
}

/* --- FLOATING ELEMENTS --- */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 30px;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: var(--transition-base);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* --- FOOTER --- */
footer {
    padding: 60px 5%;
    background: #000;
    border-top: 1px solid var(--v-border);
    text-align: center;
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-social a {
    color: var(--v-text-dim);
    transition: 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    color: var(--v-blue);
    transform: translateY(-3px);
}

.footer-query-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Rajdhani';
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
}

.footer-query-link:hover {
    text-shadow: 0 0 10px var(--v-blue-glow);
}

.footer-credit {
    font-size: 12px;
    color: var(--v-text-dim);
    margin-top: 20px;
}

.footer-credit a {
    color: var(--v-blue);
    font-weight: 700;
}

/* --- UTILS --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.text-glow-blue { text-shadow: 0 0 10px var(--v-blue-glow); }
.text-glow-red { text-shadow: 0 0 10px var(--v-red-glow); }



@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    nav {
        padding: 12px 4%;
    }
    .nav-actions {
        margin-left: auto;
        margin-right: 10px;
    }
    .nav-cta {
        padding: 8px 18px;
        font-size: 11px;
    }
    .menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        padding: 12px;
        margin-right: -10px;
        z-index: 1005;
        position: relative;
    }
}

/* --- REDUCED MOTION --- */
@media (prefers-reduced-motion: reduce) {
    *, ::before, ::after {
        animation-delay: -1ms !important;
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        background-attachment: initial !important;
        scroll-behavior: auto !important;
        transition-duration: 0s !important;
        transition-delay: 0s !important;
    }
    }
}

/* --- CODED LOGO --- */
.coded-logo {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
}

.logo-text {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1;
}

.logo-v {
    filter: drop-shadow(0 0 5px var(--v-blue));
    animation: logoPulse 3s infinite ease-in-out;
    transform: translateY(3px);
}

@keyframes logoPulse {
    0%, 100% { filter: drop-shadow(0 0 5px var(--v-blue)); opacity: 1; transform: scale(1); }
    50% { filter: drop-shadow(0 0 15px var(--v-blue)); opacity: 0.8; transform: scale(1.05); }
}

/* Better Booking UI (Ticketing Style) */
.booking-card-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.selection-card {
    background: rgba(255,255,255,0.03);
    border: 2px solid var(--v-border);
    padding: 30px 20px;
    border-radius: 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    user-select: none;
    position: relative;
    overflow: hidden;
}

.selection-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, var(--v-blue-glow) 0%, transparent 70%);
    opacity: 0;
    transition: 0.4s;
    pointer-events: none;
}

.selection-card:hover {
    border-color: rgba(0, 242, 255, 0.5);
    background: rgba(255,255,255,0.05);
    transform: translateY(-5px);
}

.selection-card:active {
    transform: translateY(-2px) scale(0.96);
}

.selection-card i {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
    color: var(--v-text-dim);
    transition: 0.3s;
}

.selection-card.selected {
    border-color: var(--v-blue);
    background: rgba(0, 242, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.2);
}

.selection-card.selected i {
    color: var(--v-blue);
    filter: drop-shadow(0 0 10px var(--v-blue-glow));
}

.selection-card.selected::after {
    opacity: 0.1;
}

.selection-card h4 {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Resource Cards (Unit Selection) */
.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 25px 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    text-decoration: none;
    color: white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.social-card i, .insta-svg {
    width: 32px;
    height: 32px;
    transition: 0.3s;
    color: var(--v-blue);
}

.social-card span {
    font-family: 'Rajdhani';
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.07);
    border-color: #E1306C;
    box-shadow: 0 10px 25px rgba(225, 48, 108, 0.3);
}

.social-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    opacity: 0;
    transition: 0.4s;
    z-index: -1;
}

.social-card:hover::before {
    opacity: 0.15;
}

.social-card:hover i, .social-card:hover .insta-svg {
    color: #E1306C;
    transform: scale(1.2) rotate(5deg);
}

.social-card:hover span {
    color: white;
    text-shadow: 0 0 10px rgba(225, 48, 108, 0.5);
}

.vibe-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #E1306C;
    color: white;
    font-size: 8px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 10px rgba(225, 48, 108, 0.5);
    opacity: 0.8;
}

.social-card:hover .vibe-tag {
    opacity: 1;
    transform: scale(1.1);
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.resource-card {
    padding: 15px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--v-border);
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    font-family: 'Rajdhani';
    font-weight: 700;
    transition: 0.3s;
}

.resource-card:hover {
    border-color: var(--v-blue);
    background: rgba(255,255,255,0.05);
}

.resource-card.selected {
    background: var(--v-blue);
    color: black;
    border-color: var(--v-blue);
    box-shadow: 0 0 15px var(--v-blue-glow);
}

.resource-card.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    border-color: rgba(255, 0, 60, 0.45) !important;
    background: rgba(255, 0, 60, 0.06) !important;
    box-shadow: 0 0 10px rgba(255, 0, 60, 0.1);
    text-decoration: none;
}

/* --- HIGHLIGHTS MARQUEE --- */
.highlights-bar {
    width: 100%;
    background: var(--v-blue);
    padding: 15px 0;
    overflow: hidden;
    position: relative;
    border-bottom: 2px solid var(--v-blue-glow);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.2);
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 40px;
    color: black;
    font-weight: 800;
    font-family: 'Rajdhani';
    letter-spacing: 2px;
    font-size: 14px;
    text-transform: uppercase;
}

.highlight-item i {
    width: 20px;
    height: 20px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.highlights-bar::before, .highlights-bar::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.highlights-bar::before {
    left: 0;
    background: linear-gradient(to right, var(--v-blue), transparent);
}

/* --- MOBILE BOTTOM DOCK --- */
.mobile-nav {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    display: none;
    justify-content: space-around;
    align-items: center;
    padding: 12px 10px;
    z-index: 5000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px var(--v-blue-glow);
}

@media (max-width: 768px) {
    .mobile-nav {
        display: flex;
    }
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: var(--v-text-dim);
    text-decoration: none;
    transition: 0.3s;
    flex: 1;
}

.mobile-nav-item i {
    width: 20px;
    height: 20px;
}

.mobile-nav-item span {
    font-family: 'Rajdhani';
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-nav-item.active {
    color: var(--v-blue);
    text-shadow: 0 0 10px var(--v-blue-glow);
}

/* Ensure hamburger is visible and clickable */
.menu-toggle {
    color: white !important;
    font-size: 24px;
    padding: 10px;
    margin-left: 10px;
}

/* --- INTEGRATED MOBILE HEADER --- */
@media (max-width: 768px) {
    nav {
        height: auto !important;
        flex-wrap: wrap;
        padding: 12px 5% !important;
        gap: 5px;
        background: rgba(5, 5, 5, 0.9) !important;
    }

    .mobile-brand-switcher {
        display: flex;
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        max-width: none;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 10px;
        order: 10; /* Put it at the bottom of the flex container */
    }
    
    .logo { order: 1; }
    .nav-actions { order: 2; margin-left: auto; }
    .menu-toggle { order: 3; }
}

.mobile-brand-switcher {
    display: none;
    padding: 3px;
    border-radius: 8px;
    z-index: 1005;
    box-shadow: none;
}

.switcher-item {
    flex: 1;
    text-align: center;
    padding: 8px 0;
    font-family: 'Rajdhani';
    font-size: 11px;
    font-weight: 800;
    color: var(--v-text-dim);
    text-decoration: none;
    border-radius: 50px;
    transition: 0.3s;
    letter-spacing: 1px;
}

.switcher-item.active {
    background: var(--v-blue);
    color: var(--v-bg);
    box-shadow: 0 0 10px var(--v-blue-glow);
}

.cozyan-theme .switcher-item.active {
    background: var(--c-brown);
    color: white;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 1001;
    color: white;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 2000;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    opacity: 0;
}

.mobile-menu-overlay.active {
    display: flex;
}

.close-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.close-menu:hover {
    color: var(--v-blue);
    transform: rotate(90deg);
}

.mobile-menu-links {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu-links a {
    font-family: 'Rajdhani';
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 5px;
    transition: 0.3s;
    opacity: 0;
    transform: translateY(20px);
}

.mobile-menu-links a:hover {
    color: var(--v-blue);
    text-shadow: 0 0 20px var(--v-blue-glow);
}

.mobile-menu-links a.active {
    color: var(--v-blue);
}

.mobile-menu-footer {
    position: absolute;
    bottom: 50px;
    text-align: center;
    opacity: 0;
}

/* --- CLEAN MOBILE UI ENHANCEMENTS --- */
@media (max-width: 900px) {
    body {
        padding-bottom: 120px !important; /* Space for the bottom nav dock */
    }

    /* Simplify Mood Grid (Cozyan) */
    .mood-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        grid-auto-rows: auto !important;
    }

    .mood-item {
        grid-column: auto !important;
        grid-row: auto !important;
        height: 350px !important; /* Consistent height for clean look */
    }

    /* Hero Spacing */
    .hero, .cozy-hero {
        padding: 120px 20px 60px !important;
    }

    .hero-title, .cozy-hero h1 {
        font-size: clamp(3rem, 10vw, 4.5rem) !important;
    }

    /* Remove Congested Floating Bars */
    .cozyan-floating-bar, .mobile-bottom-bar {
        display: none !important;
    }

    /* Improve section headers */
    .section-header h2 {
        font-size: 2.5rem !important;
    }

    /* Neater Buttons in Content */
    .hero-btns, .cozy-hero-content .fade-up {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        align-items: center;
    }

    .btn {
        width: 100% !important;
        max-width: 300px;
        justify-content: center;
    }
}

/* --- VIEW DIGITAL MENU BUTTON (Inline) --- */
.btn-digital-menu {
    background: #2c1810;
    color: #ffffff;
    border-radius: 50px;
    padding: 16px 32px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(44, 24, 16, 0.2);
}

.btn-digital-menu:hover {
    background: #3e2723;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(44, 24, 16, 0.3);
}

/* --- MENU MODAL --- */
.menu-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.98);
    z-index: 6000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
}

.menu-modal img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 12px;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.close-modal {
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
    font-size: 50px;
    cursor: pointer;
    z-index: 6001;
    line-height: 1;
}
