        :root {
            --pink: #FFCEF3;
            --black: #000000;
            --white: #FFFFFF;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            background-color: var(--white);
            color: var(--white);
            overflow-x: hidden;
            scroll-behavior: smooth;
            transition: background-color 0.5s ease;
        }

        /* 🏁 HEADER SYSTEM */
        header {
            transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: transparent;
            pointer-events: auto;
        }

        header.hidden-nav {
            opacity: 0;
            transform: translateY(-30px);
            pointer-events: none;
        }

        /* 🎬 HERO SECTION */
        .hero {
            height: 100vh;
            width: 100%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: black;
        }

        .hero-video {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            object-fit: cover;
            opacity: 0.6;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
        }

        /* Text Reveals */
        .letter {
            display: inline-block;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        
        .letter.animate { opacity: 1; transform: translateY(0); }

        .cursive-subtitle {
            font-style: italic;
            font-weight: 300;
            opacity: 0;
            transform: translateY(20px);
            transition: all 1.5s ease 1.2s;
        }
        .cursive-subtitle.visible { opacity: 1; transform: translateY(0); }

        /* 🏠 HOME PAGE ELEMENTS */
        .reveal-section {
            opacity: 0;
            transform: translateY(60px);
            transition: all 1.2s cubic-bezier(0.25, 1, 0.5, 1);
        }
        .reveal-section.visible { opacity: 1; transform: translateY(0); }

        /* 🎨 UI COMPONENTS */
        .btn-pink {
            background: var(--pink);
            color: var(--black);
            padding: 16px 42px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.4s ease;
            font-size: 0.75rem;
            display: inline-block;
        }
        .btn-pink:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(255, 206, 243, 0.3);
        }

        .btn-border-pink {
            border: 1px solid var(--pink);
            padding: 14px 40px;
            color: var(--white);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.75rem;
            transition: all 0.3s;
        }
        .btn-border-pink:hover {
            background: var(--pink);
            color: black;
        }

        /* 💬 SOCIAL & CHATBOT STICKY BAR */
        .home-only-widgets {
            position: fixed;
            top: 40px;
            right: 40px;
            z-index: 1100;
            display: flex;
            flex-direction: column;
            gap: 20px;
            transition: opacity 0.5s;
        }

        .social-icon svg {
            width: 20px;
            height: 20px;
            fill: white;
            transition: all 0.3s;
            cursor: pointer;
        }
        .social-icon:hover svg {
            fill: var(--pink);
            filter: drop-shadow(0 0 8px var(--pink));
        }

        #chatbot-trigger {
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform 0.3s;
        }
        #chatbot-trigger:hover { transform: scale(1.1); }

        /* 🥂 EAT & DRINK GRID */
        .eat-card {
            background: #111;
            border: 1px solid transparent;
            transition: all 0.6s;
            overflow: hidden;
        }
        .eat-card:hover {
            border-color: var(--pink);
            transform: translateY(-10px);
        }

        .filter-btn {
            padding: 10px 25px;
            border-bottom: 2px solid transparent;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.3s;
            color: #666;
        }
        .filter-btn.active {
            color: var(--pink);
            border-color: var(--pink);
        }

        /* MULTI-PAGE VIEW SYSTEM */
        .page-view { display: none; }
        .page-view.active { display: block; }

        /* SUBPAGE COLOR OVERRIDE */
        .subpage-theme {
            background-color: var(--white) !important;
            color: var(--black) !important;
        }

        /* MODAL */
        #quick-view-modal {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.95);
            z-index: 5000;
            display: none;
            padding: 40px;
        }
        .social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 999px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 18px;
    height: 18px;
    fill: #1E3A8A; /* blue */
}

.social-icon:hover {
    transform: translateY(-4px);
    background: #1E3A8A;
}

.social-icon:hover svg {
    fill: white;
}

#chatbot-trigger {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: 0.3s ease;
}

#chatbot-trigger:hover {
    transform: scale(1.05);
}

.reveal-section {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1.2s cubic-bezier(.16,1,.3,1);
}

.reveal-section.active {
    opacity: 1;
    transform: translateY(0);
}
    