
        /* --- MAIN COLORS --- */
        :root {
            --bg-dark: #000000;  
            --bg-lighter: #11050A; 
            --plum-dark: #4B0E2A;  
            --terracotta: #C84610; 
            --magenta: #D9005A;    
            --text-light: #FFFFFF;
            --text-muted: #D1D1D1;
        }

        /* --- GLOBAL STYLES --- */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Poppins', sans-serif; background-color: var(--bg-dark); color: var(--text-light); line-height: 1.6; overflow: hidden; }
        body.loaded { overflow: auto; }
        h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 700; }
        a { text-decoration: none; color: var(--text-light); transition: 0.3s ease; }

        /* --- LOADER --- */
        #loader-wrapper {
            position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
            background-color: var(--bg-dark); display: flex; justify-content: center;
            align-items: center; flex-direction: column; z-index: 9999;
            transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
        }
        .spinner {
            width: 60px; height: 60px; border: 4px solid rgba(217, 0, 90, 0.2); 
            border-top-color: var(--magenta); border-radius: 50%;
            animation: spin 1s linear infinite; margin-bottom: 25px;
        }
        .loader-text { font-family: 'Playfair Display', serif; font-size: 24px; letter-spacing: 2px; text-transform: uppercase; animation: pulse 1.5s ease-in-out infinite; }
        .loader-text span { color: var(--magenta); }
        @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
        @keyframes pulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }
        body.loaded #loader-wrapper { opacity: 0; visibility: hidden; }

        /* --- NAVIGATION --- */
        header {
            position: fixed; top: 0; width: 100%; padding: 15px 5%; display: flex;
            justify-content: space-between; align-items: center;
            background: linear-gradient(to bottom, rgba(75, 14, 42, 0.95), rgba(75, 14, 42, 0.7));
            z-index: 1000; transition: all 0.4s ease;
        }
        header.scrolled {
            padding: 10px 5%; box-shadow: 0 4px 15px rgba(0,0,0,0.8);
            background: var(--plum-dark); border-bottom: 1px solid var(--terracotta);
        }
        .logo-container { display: flex; align-items: center; gap: 15px; }
        .logo-img { height: 55px; object-fit: contain; background-color: white; border-radius: 50%; padding: 2px; transition: 0.3s ease; }
        .logo-img:hover { transform: scale(1.05); }
        .logo-text { font-size: 28px; color: var(--text-light); text-transform: uppercase; letter-spacing: 2px; font-family: 'Playfair Display', serif; }
        .logo-text span { color: var(--magenta); }
        nav ul { list-style: none; display: flex; align-items: center; gap: 30px; }
        nav a { font-size: 0.95rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; }
        nav a:hover { color: var(--terracotta); }
        .btn-book-nav { background-color: var(--magenta); color: var(--text-light) !important; padding: 10px 22px; border-radius: 2px; border: 1px solid var(--magenta); font-family: 'Playfair Display', serif; letter-spacing: 1px; cursor: pointer; transition: 0.3s; }
        .btn-book-nav:hover { background-color: transparent; color: var(--magenta) !important; }

        /* --- SUB-PAGE HERO SECTION --- */
        .page-hero {
            height: 40vh; 
            display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('../images/back-image-3.png') center/cover;
            padding: 0 20px; margin-top: 80px; 
        }
        .page-hero h1 { font-size: 3.5rem; letter-spacing: 3px; color: var(--terracotta); text-transform: uppercase; }
        .page-hero p { font-size: 1.1rem; font-weight: 300; color: var(--text-muted); letter-spacing: 1px; }

        /* --- MENU GRID (UPGRADED STYLING) --- */
        #menu-container {
            padding: 100px 10%;
            background-color: var(--bg-lighter); 
        }
        
        .caxton-menu-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr); 
            gap: 50px 40px;
            max-width: 900px; 
            margin: 0 auto;
        }

        .caxton-menu-item {
            text-align: center;
            display: block; 
            text-decoration: none;
            /* New Background and Border Styling */
            background: linear-gradient(145deg, #180610, #2b0b1a);
            padding: 40px 20px;
            border-radius: 8px;
            border: 1px solid rgba(217, 0, 90, 0.2);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            transition: all 0.4s ease;
        }

        /* Beautiful Glow Hover Effect */
        .caxton-menu-item:hover {
            transform: translateY(-10px);
            background: linear-gradient(145deg, #2b0b1a, #4B0E2A);
            border-color: var(--terracotta);
            box-shadow: 0 15px 40px rgba(200, 70, 16, 0.25);
        }

        /* Icon Animation on Hover */
        .caxton-menu-item:hover .menu-icon-svg rect {
            fill: var(--magenta); 
            transition: fill 0.3s ease;
        }

        .menu-icon {
            margin-bottom: 25px;
        }

        .menu-title {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 15px;
            transition: color 0.3s ease;
        }

        .caxton-menu-item:hover .menu-title {
            color: var(--terracotta);
        }

        .menu-timings {
            font-family: 'Poppins', sans-serif;
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .timing-bold {
            color: var(--text-light);
            font-weight: 500;
        }

         /* --- FOOTER --- */
        footer {
            background: var(--plum-dark); 
            padding: 70px 10% 20px;
            border-top: 2px solid var(--magenta);
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-col h4 {
            color: var(--text-light);
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            margin-bottom: 25px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .footer-col p {
            color: var(--text-light);
            font-size: 0.95rem;
            font-weight: 300;
            margin-bottom: 10px;
            line-height: 1.6;
        }

        .footer-logo-img {
            max-width: 180px;
            margin-bottom: 20px;
            display: block;
            background: white;
            border-radius: 50%;
            padding: 5px;
        }

        .tripadvisor-badge {
            background-color: white;
            color: #000;
            padding: 10px 15px;
            display: inline-block;
            border-radius: 2px;
            font-weight: 600;
            font-size: 0.85rem;
        }
        .tripadvisor-badge span {
            display: block;
            color: #00aa6c; 
            font-size: 1.2rem;
            margin-top: 5px;
        }

        .social-icons {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }

        .social-circle {
            width: 35px;
            height: 35px;
            background-color: rgba(0,0,0,0.4);
            color: var(--text-light);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 0.9rem;
            transition: 0.3s;
        }

        .social-circle:hover {
            background-color: var(--terracotta);
        }

        .contact-strong {
            font-weight: 600;
            color: var(--terracotta);
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul li a {
            color: var(--text-light);
            font-size: 0.95rem;
            font-weight: 300;
            transition: 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-col ul li a::before {
            content: '›';
            color: var(--terracotta);
            font-size: 1.2rem;
            font-weight: bold;
        }

        .footer-col ul li a:hover {
            color: var(--terracotta);
            transform: translateX(5px);
        }

        .footer-bottom {
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-muted);
            font-size: 0.85rem;
            text-align: center;
        }
		
        /* --- MODAL --- */
        .modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.85); justify-content: center; align-items: center; }
        .modal-content { background-color: var(--bg-lighter); border-top: 4px solid var(--magenta); padding: 40px; border-radius: 4px; width: 90%; max-width: 500px; position: relative; }
        .close-btn { position: absolute; top: 15px; right: 20px; color: var(--text-muted); font-size: 28px; cursor: pointer; }
        .close-btn:hover { color: var(--magenta); }
        .modal-content h2 { color: var(--terracotta); margin-bottom: 20px; font-family: 'Playfair Display', serif; text-align: center; }
        .modal-form input, .modal-form select { width: 100%; padding: 12px; margin-bottom: 15px; background-color: var(--bg-dark); border: 1px solid #333; color: white; border-radius: 2px; }
        .modal-form .disclaimer { font-size: 0.8rem; color: var(--terracotta); margin-top: -10px; margin-bottom: 15px; display: block; }
        .btn-solid { background-color: var(--magenta); border: none; padding: 14px; color: white; text-transform: uppercase; font-weight: bold; cursor: pointer; transition: 0.3s; width: 100%; margin-top: 10px;}
        .btn-solid:hover { background-color: var(--terracotta); }

        @media (max-width: 900px) {
            header { flex-direction: column; padding: 15px; background: var(--plum-dark); }
            nav ul { margin-top: 15px; flex-wrap: wrap; justify-content: center; gap: 15px;}
            .page-hero h1 { font-size: 2.5rem; }
        }

        @media (max-width: 600px) {
            .caxton-menu-grid { grid-template-columns: 1fr; gap: 40px; }
        }