/* --- CORE CSS --- */
        :root {
            --bg-dark: #0a0a0a; --bg-card: #141414; --text-main: #ffffff;
            --text-muted: #a0a0a0; --neon-purple: #bd00ff; --neon-pink: #ff007f;
            --gradient-text: linear-gradient(to right, #bd00ff, #ff007f);
            --glass: rgba(255, 255, 255, 0.05); --glass-strong: rgba(5, 5, 5, 0.918);
            --border: 1px solid rgba(255, 255, 255, 0.1);
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { background-color: var(--bg-dark); color: var(--text-main); font-family: 'Jost', sans-serif; overflow-x: hidden; }
        
        /* NAVBAR CSS */
        .nav-wrapper { position: fixed; top: 0; left: 0; right: 0; display: flex; justify-content: center; z-index: 1000; transition: 0.4s; padding-top: 15px; }
        .nav-hidden { transform: translateY(-150%); }
        nav { background: rgba(10, 10, 10, 0.699); backdrop-filter: blur(18px); padding: 1px 25px; border-radius: 50px; border: var(--border); display: flex; align-items: center; justify-content: space-between; box-shadow: 0 5px 20px rgba(0,0,0,0.5); width: 95%; max-width: 1200px; height: 60px; }
        .logo { font-family: 'Italiana', serif; font-size: 1.4rem; background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: bold; letter-spacing: 1px; text-decoration: none; flex-shrink: 0; }
        
        /* Desktop Links */
        .nav-links { display: flex; gap: 30px; align-items: center; }
        .nav-links a { color: var(--text-main); text-decoration: none; font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase; transition: 0.3s; }
        .nav-links a:hover { color: var(--neon-pink); }
        
        /* Desktop Buttons */
        .nav-right { display: flex; gap: 15px; align-items: center; flex-shrink: 0; }
       .btn-login { 
            background: transparent; color: var(--text-main); border: 1px solid var(--neon-purple); 
            padding: 6px 25px; border-radius: 30px; text-decoration: none; font-size: 0.9rem; 
            transition: 0.3s; font-family: 'Jost', sans-serif; display: flex; align-items: center; gap: 8px; white-space: nowrap;
        }
        .btn-login:hover { background: var(--glass); color: var(--neon-pink); }
        
        .btn-book { 
            background: var(--gradient-text); color: white; padding: 7px 28px; border-radius: 30px; 
            text-decoration: none; font-weight: 600; font-size: 0.9rem; border: none; cursor: pointer; 
            box-shadow: 0 0 20px rgba(189, 0, 255, 0.3); transition: 0.3s; font-family: 'Jost', sans-serif; white-space: nowrap;
        }
        .btn-book:hover { box-shadow: 0 0 30px rgba(189, 0, 255, 0.6); transform: translateY(-2px); }
        
        /* Mobile Hidden */
        .menu-toggle { display: none; }
        .close-menu { display: none; }
        .mobile-only-btn { display: none !important; }
        .menu-toggle:hover { border-color: var(--neon-pink); box-shadow: 0 0 10px rgba(255, 0, 127, 0.4); }

        /* PAGE HERO */
        .page-header { height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; background: url('https://images.unsplash.com/photo-1522337660859-02fbefca4702?q=80&w=1500') center/cover no-repeat; position: relative; margin-bottom: 60px; }
        .page-header::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.3), #0a0a0a); }
        .header-content { position: relative; z-index: 2; }
        .header-content h1 { font-family: 'Italiana', serif; font-size: 4rem; margin-bottom: 10px; }
        .header-content h1 span { color: var(--neon-pink); }
        .header-content p { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

        /* GALLERY */
        .gallery-container { padding: 0 5%; padding-bottom: 100px; }
        .masonry-grid { column-count: 4; column-gap: 20px; }
        .masonry-item { break-inside: avoid; margin-bottom: 20px; border-radius: 15px; overflow: hidden; position: relative; border: var(--border); cursor: pointer; }
        .masonry-item img { width: 100%; display: block; transition: transform 0.5s ease; }
        .masonry-item:hover img { transform: scale(1.1); }
        .overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, black, transparent); padding: 20px; opacity: 0; transition: 0.3s; }
        .masonry-item:hover .overlay { opacity: 1; }
        .overlay h4 { font-family: 'Italiana'; color: white; font-size: 1.1rem; }

        /* FOOTER */
        footer { border-top: 1px solid rgba(255,255,255,0.1); padding: 80px 10% 40px; background: #050505; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; }
        .footer-brand h2 { font-family: 'Italiana', serif; margin-bottom: 25px; font-size: 2.5rem; }
        .footer-brand p { color: #999; line-height: 1.8; margin-bottom: 30px; font-size: 0.95rem; text-align: justify; }
        .social-icons { display: flex; gap: 15px; }
        .social-icons a { width: 45px; height: 45px; background: var(--glass); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.1rem; transition: 0.3s; border: var(--border); text-decoration: none; }
        .social-icons a:hover { background: var(--neon-pink); transform: translateY(-5px); }
        .footer-links ul { list-style: none; }
        .footer-links ul li { margin-bottom: 15px; }
        .footer-links ul li a { color: #888; text-decoration: none; transition: 0.3s; font-size: 1rem; }
        .footer-links ul li a:hover { color: var(--neon-pink); padding-left: 5px; }
        .footer-links h3, .footer-contact h3 { font-family: 'Italiana'; margin-bottom: 25px; color: white; font-size: 1.4rem; }
        .contact-row { display: flex; gap: 15px; margin-bottom: 18px; color: #888; align-items: center; }
        .copyright { grid-column: 1 / -1; text-align: center; margin-top: 60px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.05); color: #555; font-size: 0.8rem; }

        /* --- MOBILE RESPONSIVE CSS --- */
        @media (max-width: 900px) {
            /* 1. Menu Toggle (Hamburger) */
            .menu-toggle { 
                display: flex; width: 38px; height: 38px; 
                background: rgba(255, 255, 255, 0.08); 
                border: 1px solid rgba(255, 255, 255, 0.2); 
                border-radius: 50%; align-items: center; justify-content: center;
                cursor: pointer; z-index: 1001; transition: 0.3s;
            }
            /* HIDE TOGGLE WHEN MENU IS OPEN */
            .menu-toggle.hide { opacity: 0; pointer-events: none; }

            .nav-right { display: none; } /* Hide Desktop Buttons */
            
            /* 2. Mobile Menu (Slide Out) */
             .nav-links { 
                position: fixed; top: 0; right: -300px; width: 220px; height: 80vh; 
                background: var(--glass-strong); backdrop-filter: blur(50px); 
                flex-direction: column; justify-content: flex-start; align-items: center; 
                padding-top: 40px; /* EXTRA PADDING so content is below close button */
                gap: 15px; transition: 0.4s ease; z-index: 999; 
                border-left: 1px solid rgba(255,255,255,0.1); 
                box-shadow: -15px 0 40px rgba(0,0,0,0.9);
                border-radius: 20px;
            }
            .nav-links.active { right: 0; }
            .nav-links a { 
                font-family: 'Jost', sans-serif; font-size: 1.1rem; color: #ccc; 
                border-bottom: none; width: auto; text-align: center; padding: 5px 0; 
            }
            
            /* 3. Close Button (Top Right Inside Menu) */
             .close-menu { display: flex; position: absolute; top: 20px; right: 20px; width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,0.1); align-items: center; justify-content: center; font-size: 0.9rem; color: white; cursor: pointer; transition: 0.3s; border: 1px solid rgba(255,255,255,0.2); }


            .close-menu:hover { border-color: var(--neon-pink); background: var(--neon-pink); transform: rotate(90deg); }

            
            
            /* 4. Mobile Buttons (Wider & Nicer) */
            .mobile-only-btn { 
                display: flex !important; width: 200px; justify-content: center; 
                margin: 8px 0; padding: 12px 0; font-size: 1rem;
            }
            .nav-links .btn-login { border: 1px solid var(--neon-purple); color: white;  padding: 5px 15px;}
            .nav-links .btn-book { background: var(--gradient-text); border: none; color: white;  padding: 5px 20px;}

            
            .masonry-grid { column-count: 2; padding: 0 10px; }
            .page-header h1 { font-size: 3rem; }
            footer { grid-template-columns: 1fr; text-align: center; padding: 50px 20px 30px; }
            .social-icons, .contact-row { justify-content: center; }
        }
        @media (max-width: 480px) {
            .masonry-grid { column-count: 1; }
        }
