
        :root {
            --primary: #DF1348;
            --secondary: #1a1a1a;
            --light: #f8f5f0;
            --accent: #8b7355;
            --text: #333333;
            --water: #4a86b8;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
            background-color: var(--light);
        }
        
        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header & Navigation */
        header {
            background-color: #DF1348;
            position: fixed;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 5px 0;
        }
        
        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--primary);
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            text-decoration: none;
            color: white;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--primary);
        }

        .menu-toggle {
            display: none;
            cursor: pointer;
            font-size: 24px;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(115, 157, 177, 0.295), rgba(48, 247, 30, 0.116)), url('../img/hero.webp') no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            padding-top: 80px;
        }
        
        .hero-content h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            animation: fadeIn 1.5s;
        }
        
        .hero-content p {
            font-size: 1.5rem;
            margin-bottom: 30px;
            animation: fadeIn 2s;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--primary);
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: 2px solid var(--primary);
        }
        
        .btn:hover {
            background-color: transparent;
            color: white;
            border-color: white;
        }
        
        /* About Section */
        .about {
            background-color: white;
            padding-top: 50px;
            padding-bottom: 50px;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-image {
            flex: 1;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .about-image img {
            width: 100%;
            height: auto; /* preserve natural aspect ratio */
            display: block;
            transition: transform 0.5s;
        }
        
        .about-image img:hover {
            transform: scale(1.01);
        }
        
        /* Services Section */
        .services {
            padding: 100px 0;
            background-color: var(--light);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--secondary);
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-image {
            height: 200px;
            overflow: hidden;
        }
        
        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .service-card:hover .service-image img {
            transform: scale(1.1);
        }
        
        .service-details {
            padding: 20px;
        }
        
        .service-details h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--primary);
        }
        
        .service-details p {
            margin-bottom: 15px;
            color: #666;
        }
        
        /* Gallery Section */
        .gallery {
            padding: 100px 0;
            background-color: white;
        }

                /* Room Standards Section */
                .room-standards {
                    padding: 80px 0;
                    background-color: var(--light);
                }

                .room-standards .room-standards-grid {
                    display: grid;
                    grid-template-columns: 1fr 420px;
                    gap: 40px;
                    align-items: start;
                }

                .standards-list p {
                    margin-bottom: 15px;
                    color: #555;
                }

                .standards-grid {
                    list-style: none;
                    display: grid;
                    grid-template-columns: repeat(2, minmax(0, 1fr));
                    gap: 12px 20px;
                    padding: 0;
                }

                .standard-item {
                    display: flex;
                    align-items: center;
                    gap: 12px;
                    background: white;
                    padding: 12px 14px;
                    border-radius: 8px;
                    box-shadow: 0 6px 18px rgba(0,0,0,0.04);
                    color: var(--secondary);
                    font-weight: 600;
                }

                .standard-item i {
                    width: 36px;
                    height: 36px;
                    background-color: var(--primary);
                    color: white;
                    border-radius: 8px;
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    font-size: 16px;
                }

                .room-sample .room-image {
                    overflow: hidden;
                    border-radius: 10px;
                    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
                }

                .room-sample .room-image img {
                    width: 100%;
                    height: 260px;
                    object-fit: cover;
                    display: block;
                }

                .room-actions {
                    margin-top: 18px;
                    text-align: center;
                }

                .reserve-btn {
                    background-color: var(--primary);
                    color: white;
                    padding: 12px 28px;
                    border-radius: 30px;
                    display: inline-block;
                    text-decoration: none;
                    font-weight: 700;
                    border: 2px solid var(--primary);
                }

                .reserve-btn:hover {
                    background-color: transparent;
                    color: white;
                    border-color: white;
                }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            height: 250px;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(42, 107, 63, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        /* Contact Section */
        .contact {
            padding: 100px 0;
            background-color: white;
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
        }
        
        .contact-info h3 {
            margin-bottom: 20px;
        }
        
        .contact-details {
            margin-bottom: 30px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .contact-item i {
            width: 30px;
            height: 30px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }
        
        .map {
            height: 300px;
            border-radius: 10px;
            overflow: hidden;
        }
        
        .map iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* Footer */
        footer {
            background-color: var(--secondary);
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            color: var(--primary);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--primary);
        }
        
        .footer-column p {
            margin-bottom: 15px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--primary);
        }
        
        .footer-social {
            display: flex;
            gap: 15px;
        }
        
        .footer-social a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            text-align: center;
            line-height: 40px;
            transition: background-color 0.3s;
        }

        /* Screen-reader-only helper */
        .sr-only {
            position: absolute !important;
            width: 1px; height: 1px;
            padding: 0; margin: -1px;
            overflow: hidden; clip: rect(0,0,0,0);
            white-space: nowrap; border: 0;
        }
        
        .footer-social a:hover {
            background-color: var(--primary);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }  
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }
            .about-image img {
            width: 100%;
            height: 100%;
            display: block;
            transition: transform 0.5s;
        }
            .hero-content h1 {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: white;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: left 0.3s;
            }
            
            .nav-links.active {
                left: 0;
                color: var(--secondary);
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
            .nav-links a {
                color: black;
                font-size: 1.2rem;
            }
            .hero-content p {
                font-size: 1.2rem;
            }
            
            .language-selector {
                margin: 15px 0;
            }
            /* room standards responsive */
            .room-standards .room-standards-grid {
                grid-template-columns: 1fr;
            }
            .room-sample .room-image img {
                height: 200px;
            }
        }

        /* Floating language selector */
        .lang-fab {
            position: fixed;
            right: 8px;
            bottom: 8px;
            z-index: 2000;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            pointer-events: auto;
        }

        .lang-fab-button {
            width: 54px;
            height: 54px;
            border-radius: 50%;
            background: var(--primary);
            color: #fff;
            border: none;
            box-shadow: 0 6px 20px rgba(0,0,0,0.2);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
        }

        .lang-fab-button:focus {
            outline: 3px solid rgba(223,19,72,0.25);
        }

        /* position panel so it expands to the left of the FAB */
        .lang-fab-panel {
            position: absolute;
            right: 64px; /* place left of the 54px button plus gap */
            bottom: 0;
            width: 80px;
            max-height: 0;
            overflow: hidden;
            background: white;
            border-radius: 10px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
            transition: transform 0.22s ease, opacity 0.22s ease, max-height 0.3s ease;
            opacity: 0;
            transform-origin: center right;
            transform: translateX(8px) scale(0.98);
        }

        .lang-fab-panel.open {
            max-height: 420px;
            opacity: 1;
            transform: translateX(0) scale(1);
        }

        .lang-fab-panel ul {
            list-style: none;
            padding: 8px;
            margin: 0;
            display: grid;
            grid-template-columns: 1fr;
            gap: 6px;
        }

        .lang-fab-panel ul li a {
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            color: var(--secondary);
            padding: 6px 8px;
            border-radius: 6px;
            font-weight: 700;
            font-size: 13px;
        }

        .lang-fab-panel ul li a img { display: inline-block; vertical-align: middle; }

        .lang-fab-panel ul li a:hover {
            background: rgba(223,19,72,0.08);
            color: var(--primary);
        }

        /* make list scrollable when open */
        .lang-fab-panel.open ul {
            display: block;
            max-height: 360px;
            overflow-y: auto;
            padding-right: 6px;
        }

        /* Smaller on mobile */
        @media (max-width: 480px) {
            .lang-fab { right: 6px; bottom: 6px; }
            .lang-fab-button { width: 48px; height: 48px; }
            .lang-fab-panel { right: 56px; width: 140px; }
        }