body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000; /* Black background */
    color: #fff; /* White text for contrast */
}

header {
    background-color: #000; /* Black header */
    color: #fff;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 2px 5px rgba(255, 255, 255, 0.1); /* Subtle white shadow */
}

header h1 {
    margin: 0;
    font-size: 3em;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #e0f2f7; /* Light blue/cyan for hotel name */
}

header h2 {
    margin: 5px 0 0;
    font-size: 1.5em;
    font-style: italic;
    opacity: 0.9;
    color: #fce4ec; /* Light pink/purple for corner */
}

header h3 {
    margin: 10px 0 0;
    font-size: 2em;
    color: #ffcc80; /* Light orange for "Our Special Menu" */
    text-transform: uppercase;
}


main {
    padding: 20px;
    max-width: 900px;
    margin: 20px auto;
    background-color: #1a1a1a; /* Darker grey for content area */
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2); /* Stronger white shadow */
}

.menu-category {
    margin-bottom: 30px;
    border-bottom: 1px solid #333; /* Darker separator */
    padding-bottom: 20px;
}

.menu-category:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.menu-category h3 {
    background-color: #880e4f; /* Dark magenta/purple for category titles */
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 2em;
    text-align: left; /* Aligned left as in the image */
    letter-spacing: 1px;
    text-transform: uppercase;
}

.menu-items {
    display: flex;
    flex-direction: column;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline; /* Align prices with the base of the text */
    padding: 8px 0;
    border-bottom: 1px dashed #444; /* Lighter dashed separator */
    font-size: 1.1em;
    color: #e0e0e0; /* Off-white for menu items */
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item span:first-child {
    font-weight: normal; /* As seen in the image, item names are not bold */
    flex-grow: 1;
    white-space: nowrap; /* Prevent wrapping for dotted lines */
    position: relative;
    padding-right: 10px; /* Space for dots */
}

.menu-item span:first-child::after {
    content: "..................................."; /* Dotted leader dots */
    flex-shrink: 0;
    overflow: hidden;
    color: #555; /* Color of the dots */
}

.menu-item span:last-child {
    color: #ff9800; /* Vibrant orange for prices */
    font-weight: bold;
    min-width: 400px; /* Wider for "large small" and prices */
    text-align: right;
    padding-left: 10px; /* Space from dots */
    flex-shrink: 0;
}

.menu-item.size-price {
    font-weight: bold;
    color: #ff9800; /* Orange for Large/Small headers */
    padding-bottom: 5px;
    border-bottom: 1px solid #777; /* Slightly thicker separator for header */
    margin-bottom: 10px;
}

.menu-item.size-price span:first-child::after {
    content: none; /* No dots for the header row */
}

.menu-item.size-price .large-small {
    flex: 1; /* Distribute space evenly for Large and Small */
    text-align: center;
    min-width: unset; /* Remove min-width constraint for these */
}


footer {
    text-align: center;
    padding: 20px;
    margin-top: 30px;
    background-color: #000; /* Black footer */
    color: #fff;
    font-size: 0.9em;
    box-shadow: 0 -2px 5px rgba(255, 255, 255, 0.1);
}

footer p {
    margin: 5px 0;
    color: #ffcc80; /* Light orange for order number */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5em;
    }

    header h3 {
        font-size: 1.5em;
    }

    main {
        margin: 10px;
        padding: 15px;
    }

    .menu-category h3 {
        font-size: 1.5em;
        padding: 8px 10px;
    }

    .menu-item {
        font-size: 1em;
    }

    .menu-item span:last-child {
        min-width: 60px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 2em;
    }

    header h3 {
        font-size: 1.2em;
    }

    .menu-category h3 {
        font-size: 1.3em;
        padding: 8px 10px;
    }

    .menu-item span:last-child {
        min-width: 45px;
    }
    
    .menu-item.size-price .large-small {
        font-size: 0.9em; /* Smaller font for small screens */
    }
}