        /* Base styles */
        body {
            margin: 0;
            font-family: 'Roboto', sans-serif;
            background-color: #ffffff;
            color: #1c1c1c;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        h1,
        h2,
        h3 {
            margin: 1rem;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        button {
            cursor: pointer;
        }

        /* Header */
        header {
            background-color: #1c1c1c;
            color: #f5a735;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        header h1 {
            font-size: 1.8rem;
        }

        nav a {
            margin-left: 1.5rem;
            color: #f5a735;
            font-weight: bold;
        }

        /* Hero Section */
        .hero {
            text-align: center;
            padding: 4rem 2rem;
            background-color: #f5a735;
            color: #1c1c1c;
        }

        .hero h2 {
            font-size: 2.5rem;
        }

        .hero p {
            font-size: 1.2rem;
            margin-top: 1rem;
        }

        /* About Section */
        section {
            padding: 3rem 2rem;
        }

        .about {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }

        .about img {
            max-width: 400px;
            width: 100%;
            border-radius: 10px;
        }

        .about-text {
            flex: 1;
        }

        /* Booking/Event Section (menu-style form) */
        .booking {
            background-color: #f5a735;
            color: #1c1c1c;
            padding: 3rem 2rem;
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .booking .menu-wrapper {
            max-width: 500px;
            margin: 0 auto;
        }

        .booking form {
            margin: 0 auto;
            max-width: 500px;
            background: #dddddd;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }

        /* Each direct child of the form becomes a "menu row" (flex layout: label + control) */
        .booking form>.menu-row {
            display: flex;
            align-items: center;
            gap: 1rem;
            width: 100%;
            padding: 0.9rem 1.25rem;
            border-bottom: 1px solid #f0f0f0;
            background: transparent;
            box-sizing: border-box;

        }

        .booking form>.menu-row:hover {
            background: #fafafa;
        }

        .booking .menu-row label {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            min-width: 140px;
            color: #333;
            font-weight: 500;
        }

        .booking .menu-row .icon svg {
            width: 20px;
            height: 20px;
            display: block;
        }

        .booking .menu-row .label-text {
            display: block;
        }

        .booking .menu-row input,
        .booking .menu-row select,
        .booking .menu-row textarea {
            flex: 1 1 auto;
            width: 100%;
            background: transparent;
            padding: 0.125rem 0;
            font-family: inherit;
            font-size: 1rem;
            outline: none;
            border: 0;
        }

        .booking textarea {
            min-height: 90px;
            resize: vertical;
        }

        .booking form>.menu-row:focus-within {
            background: #fffdf8;
        }

        .booking textarea {
            min-height: 100px;
            resize: vertical;
        }

        .booking form>*:focus-within {
            background: #fffdf8;
        }

        .booking button {
            background-color: #1c1c1c;
            color: #f5a735;
            border: none;
            padding: 1rem 1.25rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.6px;
            cursor: pointer;
            width: 100%;
            border-radius: 6px;
        }

        /* Remove bottom border from last row (button) and keep it feeling like a single menu card */
        .booking form>*:last-child {
            border-bottom: 0;
        }

        /* Gallery Section */
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            justify-content: space-between;
        }

        .gallery img {
            width: 100%;
            border-radius: 10px;
        }

        /* Contact Section */
        .contact {
            background-color: #df3c30;
            color: #ffffff;
            padding: 3rem 2rem;
            text-align: center;
        }

        .contact a {
            color: #ffffff;
            font-weight: bold;
        }

        /* Footer */
        footer {
            background-color: #1c1c1c;
            color: #f5a735;
            text-align: center;
            padding: 1rem;
        }

        /* MEDIA QUERIES */
        @media (max-width: 1024px) {

    header {
        padding: 1rem 1.5rem;
    }

    .hero h2 {
        font-size: 2.2rem;
    }

    section {
        padding: 2.5rem 1.5rem;
    }

    .about {
        gap: 1.5rem;
    }
}
