
        :root {
            --primary: #006cce;
            --dark: #404040;
            --accent: #916422;
            --bg: #f5f5f0;
            --text: #676767;
        }

        body {
            font-family: 'Montserrat', Arial, sans-serif;
            margin: 0;
            color: var(--text);
            background-color: var(--bg);
            line-height: 1.6;
        }

        header {
            background: #fff;
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 3px solid var(--primary);
        }

        .logo { width: 150px; height: auto; }

        nav a {
            margin-left: 20px;
            text-decoration: none;
            color: var(--dark);
            font-weight: bold;
            text-transform: uppercase;
            font-size: 0.9rem;
        }

        .hero {
            height: 60vh;
            background-image: url('/assets/HOTEL_FRONT.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.4);
        }

        .hero-text {
            position: relative;
            z-index: 1;
            color: #fff;
            text-align: center;
        }

        .container { padding: 2rem 5%; }

        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .card {
            background: #fff;
            padding: 10px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 4px;
        }

        footer {
            background: var(--dark);
            color: #fff;
            text-align: center;
            padding: 2rem;
            margin-top: 3rem;
        }

        @media (min-width: 768px) {
            .hero-text h1 { font-size: 3rem; }
        }
    