 body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 10px;
            background-color: #2a1e2d;
            color: #d3d3d3;
            text-align: center;
        }

        .greeting-container {
            margin-bottom: 10px;
        }

        .greeting-line1, .greeting-line2 {
            font-size: 2em;
            font-weight: bold;
            color: #d3d3d3;
            display: inline-block;
            overflow: hidden;
            white-space: nowrap;
            text-shadow: 2px 2px 4px rgba(255, 98, 0, 0.5);
        }

        .greeting-line1 {
            animation: typing 2s steps(20, end);
        }

        .greeting-line2 {
            position: relative;
            animation: typing 2.5s steps(40, end) 2s forwards;
            opacity: 0;
            animation-fill-mode: forwards;
        }

        .greeting-line2::after {
            content: '?';
            position: absolute;
            right: -20px;
            color: #d3d3d3;
            animation: blink-caret 0.75s step-end infinite 2s;
        }

        @keyframes typing {
            from { width: 0; opacity: 1; }
            to { width: 100%; opacity: 1; }
        }

        @keyframes blink-caret {
            from, to { opacity: 0; }
            50% { opacity: 1; }
        }

        .restaurant-container {
            display: flex;
            flex-direction: row;
            justify-content: center;
            gap: 10px;
            max-width: 1050px;
            margin: 0 auto;
        }

        .restaurant-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 500px;
            flex-shrink: 0;
            position: relative;
        }

        .restaurant-logo {
            width: 150px;
            height: 150px;
            position: absolute;
            top: 50px;
            z-index: 2; /* Behind the overlay text but above the image */
        }

        .restaurant-card {
            position: relative;
            width: 100%;
            height: 250px;
            border-radius: 10px;
            overflow: hidden;
            text-align: center;
            color: white;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .restaurant-card:hover {
            transform: scale(1.03);
            box-shadow: 0 0 15px rgba(255, 98, 0, 0.7);
        }

        .restaurant-card:hover .overlay {
            background: rgba(0, 0, 0, 0.3);
        }

        .restaurant-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1; /* Bottom layer */
        }

        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 3; /* Above the logo and image */
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
            transition: background 0.3s ease;
        }

        .gradient-line {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, transparent, #ff6200, #d4c2a7, transparent);
            z-index: 4; /* Topmost layer */
        }

        .restaurant-name {
            font-size: 2.5em;
            font-weight: bold;
            margin: 0;
            text-transform: uppercase;
        }

        .restaurant-tagline {
            font-size: 1.2em;
            margin: 10px 0;
        }

        .restaurant-link {
            position: relative;
            padding: 10px 30px 10px 20px;
            text-decoration: none;
            border-radius: 5px;
            color: white;
            font-weight: bold;
            text-transform: uppercase;
            margin-top: 10px;
            transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
        }

        .restaurant-link::after {
            content: '➡️';
            position: absolute;
            right: 10px;
            font-size: 0.9em;
            transition: transform 0.3s ease;
        }

        .restaurant-link:hover::after {
            transform: translateX(5px);
        }

        .restaurant-link.shangrila {
            background-color: #ff6200;
        }

        .restaurant-link.shangrila:hover {
            background-color: #cc4e00;
            transform: scale(1.05);
        }

        .restaurant-link.tandoor {
            background-color: #d4c2a7;
            color: #333;
        }

        .restaurant-link.tandoor:hover {
            background-color: #b8a589;
            color: #222;
            transform: scale(1.05);
        }

        .info-section {
            width: 100%;
            text-align: left;
            padding: 20px 0;
            font-size: 0.9em;
        }

        .info-section h3 {
            color: #d3d3d3;
            font-size: 1.1em;
            margin: 10px 0;
        }

        .info-section p {
            margin: 5px 0;
            color: #b0b0b0;
        }

        .info-section a {
            color: #b0b0b0;
            text-decoration: none;
        }

        .info-section .map-link {
            display: inline-block;
            padding: 5px 10px;
            border: 1px solid #ff6200;
            color: #ff6200;
            text-decoration: none;
            border-radius: 5px;
            margin-left: 10px;
            font-size: 0.8em;
            text-transform: uppercase;
        }

        .info-section .opening-days {
            color: #ff6200;
            font-weight: bold;
        }

        @media (max-width: 1100px) {
            .restaurant-container {
                flex-direction: column;
                align-items: center;
            }

            .restaurant-wrapper {
                width: 90%;
            }

            .greeting-line1, .greeting-line2 {
                font-size: 1.5em;
            }

            .restaurant-logo {
                width: 120px;
                height: 120px;
                top: 40px;
            }

            .restaurant-card {
                height: 200px;
            }

            .restaurant-name {
                font-size: 2em;
            }

            .restaurant-tagline {
                font-size: 1em;
            }
        }

        @media (max-width: 600px) {
            .greeting-line1, .greeting-line2 {
                font-size: 1.2em;
            }

            .restaurant-logo {
                width: 100px;
                height: 100px;
                top: 30px;
            }

            .restaurant-card {
                height: 150px;
            }

            .restaurant-name {
                font-size: 1.5em;
            }

            .restaurant-tagline {
                font-size: 0.9em;
            }

            .restaurant-link {
                padding: 8px 25px 8px 15px;
                font-size: 0.9em;
            }
        }