
        /* --- 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: color 0.3s ease, background-color 0.3s ease;
        }

        /* --- ANIMATED 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(--brown);
        }

        @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);
        }

        /* Combined Image + Text Logo */
        .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: transform 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;
            font-weight: 700;
        }

        .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;
        }

        /* --- HERO SECTION --- */
        .hero {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8)), url('../images/back-image-3.png') center/cover;
            padding: 0 20px;
        }

        .hero-content {
            margin-top: 30vh; 
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
        }

        .hero h1 {
            font-size: 3.2rem;
            font-weight: 600;
            letter-spacing: 3px;
            margin-bottom: 15px;
            color: var(--text-light);
            text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
            text-transform: uppercase;
        }

        .hero p {
            font-size: 1.05rem;
            font-weight: 400;
            letter-spacing: 0.5px;
            max-width: 650px;
            margin-bottom: 35px;
            color: var(--text-light); 
            text-shadow: 1px 1px 5px rgba(0,0,0,0.9);
            line-height: 1.8;
        }

        /* --- HERO BUTTONS ROW--- */
        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap; 
        }

        .btn-solid {
            background-color: var(--magenta);
            border: 2px solid var(--magenta);
            padding: 14px 32px;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-light);
            border-radius: 2px;
            font-family: 'Playfair Display', serif;
            cursor: pointer;
            transition: 0.3s;
            box-shadow: 0 4px 15px rgba(0,0,0,0.5);
            min-width: 180px; /* Makes both buttons identical in size */
        }

        .btn-solid:hover {
            background: rgba(0,0,0,0.5);
            color: var(--magenta);
        }

        /* --- SECTIONS --- */
        section {
            padding: 100px 10%;
        }

        .section-title {
            text-align: center;
            font-size: 2.8rem;
            margin-bottom: 60px;
            color: var(--terracotta); 
            letter-spacing: 1px;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 2px;
            background: var(--magenta);
            margin: 20px auto 0;
        }

        /* --- ABOUT SECTION --- */
        .about-content {
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .about-text {
            flex: 1;
        }

        .about-text h3 {
            font-size: 1.8rem;
            color: var(--magenta);
            margin-bottom: 20px;
            letter-spacing: 0.5px;
        }

        .about-text p {
            color: var(--text-muted);
            margin-bottom: 15px;
            font-size: 1rem;
            font-weight: 300;
            line-height: 1.7;
        }

        .about-image {
            flex: 1;
            height: 450px;
            background: url('../images/back-image-3.png') center/cover;
            border-radius: 2px;
            position: relative;
        }

        .about-image::after {
            content: '';
            position: absolute;
            top: 20px;
            left: -20px;
            right: 20px;
            bottom: -20px;
            border: 1px solid var(--terracotta);
            z-index: -1;
        }

        /* --- GALLERY SECTION */
        #gallery {
            background-color: var(--bg-dark);
            padding: 80px 10%;
        }
        
        .gallery-header {
            margin-bottom: 40px;
        }

        .gallery-subtitle {
            font-size: 0.85rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .gallery-subtitle::after {
            content: '';
            height: 1px;
            background-color: var(--text-muted);
            width: 80px;
        }

        .gallery-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            color: var(--terracotta);
            margin-top: 10px;
        }

        
        /* --- MENU SECTION --- */
        #menu {
            background-color: var(--bg-lighter);
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .menu-card {
            background: var(--bg-dark);
            padding: 40px 30px;
            border-radius: 2px;
            text-align: center;
            border-top: 3px solid var(--magenta);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            transition: transform 0.3s ease, border-color 0.3s ease;
        }

        .menu-card:hover {
            transform: translateY(-10px);
            border-color: var(--terracotta);
        }

        .menu-card h3 {
            color: var(--terracotta);
            margin-bottom: 15px;
            font-size: 1.6rem;
        }

        .menu-card p {
            color: var(--text-muted);
            font-weight: 300;
            font-size: 0.95rem;
        }

        .menu-action {
            text-align: center;
        }

        .btn-secondary {
            border: 1px solid var(--magenta);
            padding: 12px 28px;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--magenta);
            border-radius: 2px;
            font-family: 'Playfair Display', serif;
            display: inline-block;
            transition: 0.3s;
        }

        .btn-secondary:hover {
            background-color: var(--magenta);
            color: var(--text-light);
        }

        /* --- Location SECTION --- */
        #map-section {
            padding: 0; 
        }
        .map-container iframe {
            width: 100%;
            height: 400px;
            border: none;
            display: block;
        }

        /* --- 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;
        }

        /* --- BOOKING 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;
            box-shadow: 0 15px 30px rgba(0,0,0,0.8);
        }

        .close-btn {
            position: absolute;
            top: 15px;
            right: 20px;
            color: var(--text-muted);
            font-size: 28px;
            font-weight: bold;
            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;
            font-family: 'Poppins', sans-serif;
            border-radius: 2px;
        }

        .modal-form input:focus, .modal-form select:focus {
            outline: none;
            border-color: var(--magenta);
        }

        .modal-form .disclaimer {
            font-size: 0.8rem;
            color: var(--terracotta);
            margin-top: -10px;
            margin-bottom: 15px;
            display: block;
        }

        /* --- RESPONSIVE DESIGN --- */
        @media (max-width: 900px) {
            header {
                flex-direction: column;
                padding: 15px;
                background: var(--plum-dark);
            }
            .logo-text { font-size: 24px; }
            nav ul {
                margin-top: 15px;
                gap: 15px;
                flex-wrap: wrap;
                justify-content: center;
            }
            .hero h1 { font-size: 2.2rem; }
            .hero-content { margin-top: 15vh; } 
            
            .hero-buttons {
                flex-direction: column;
                width: 100%;
                max-width: 280px;
                gap: 15px;
            }
            .hero-buttons a { width: 100%; }

            .about-content { flex-direction: column; }
            .about-image { width: 100%; margin-top: 40px; }
            
            .gallery-title { font-size: 2.2rem; }
            
            /* Stacks the gallery collage cleanly on mobile screens */
            .gallery-grid {
                grid-template-columns: 1fr;
                grid-template-rows: auto;
            }
            .gallery-grid .img-wrapper {
                grid-column: 1 / -1 !important;
                grid-row: auto !important;
                height: 300px;
            }
        }