/* Basic Reset and Font Imports */
body {
    margin: 0;
    padding: 0;
    font-family: 'Raleway', sans-serif;
    color: #333; /* Dark text color (Charcoal) */
    background-color: #ffffff; /* White background */
    line-height: 1.6;
}

/* Headings and Titles - Elegant Font */
h1, h2 {
    font-family: 'Playfair Display', serif;
    color: #a58800; /* Richer Gold/Brass accent color */
    text-align: center;
    margin-top: 0;
}

h1 {
    font-size: 3.5em; 
    margin-bottom: 0.1em;
}

h2 {
    font-size: 2.2em;
    margin-bottom: 0.8em;
}

/* Header/Hero Section */
.hero {
    background-color: #f7f7f7; /* Light gray background for the header */
    padding: 80px 20px;
    text-align: center;
    border-bottom: 4px solid #a58800;
}

/* Main Content Layout */
main {
    max-width: 700px;
    margin: 40px auto;
    padding: 0 20px;
}

section {
    padding: 30px 0;
    text-align: center;
}

.address {
    font-size: 1.1em;
    margin: 5px 0;
    color: #555; /* Slightly lighter body text */
}

.menu-note {
    font-style: italic;
    color: #777;
    margin-top: 20px;
}

hr {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(165, 136, 0, 0), rgba(165, 136, 0, 0.5), rgba(165, 136, 0, 0));
}

/* --- IMPROVED HOURS STYLING --- */
.hours-list {
    list-style-type: none;
    padding: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 450px; /* Constrain width for cleaner presentation */
}

.hours-list li {
    display: flex; /* Use flex to separate Day and Time */
    justify-content: space-between; /* Push Day to left, Time to right */
    padding: 10px 0;
    font-size: 1.05em;
    border-bottom: 1px solid #eee; /* Subtle separator */
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list li span:first-child {
    font-weight: bold; /* Make the day stand out */
    color: #555;
}

.hours-list .closed {
    color: #cc0000; /* Red color for CLOSED day */
    background-color: #fffafa; /* Very light red background for the closed row */
}

.hours-list .closed span:first-child {
    font-weight: bold;
    color: #cc0000;
}
/* --- END IMPROVED HOURS STYLING --- */


/* Menu Button Styling */
.button {
    display: inline-block;
    padding: 15px 30px;
    margin: 10px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    font-size: 1.1em;
}

.button.primary {
    background-color: #a58800;
    color: #ffffff;
    border: 2px solid #a58800;
}

.button.primary:hover {
    background-color: #bfa000;
    color: #ffffff;
    border-color: #bfa000;
    box-shadow: 0 4px 10px rgba(165, 136, 0, 0.2);
}

/* Footer */
footer {
    background-color: #f7f7f7;
    padding: 20px;
    text-align: center;
    font-size: 0.9em;
    border-top: 4px solid #a58800;
    color: #555;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    h1 {
        font-size: 2.5em;
    }

    .hero {
        padding: 50px 10px;
    }

    .button {
        display: block;
        width: 80%;
        margin: 10px auto;
        padding: 12px 20px;
    }
}
