/* Basic Reset & Body Styles */
:root {
    --color-background: #f8f8f8;
    --color-text-main: #333333;
    --color-text-secondary: #888888;
    --color-accent: #C28B47; /* Muted gold/brown from logo */
    --color-link: #A0723A; /* Slightly darker accent for links */
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: var(--color-background);
    color: var(--color-text-main);
	font-size: 18px;
}

/* Container for Centering Content */
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
    text-align: center; /* Center block elements like image and main text */
}

/* Header Styles */
.site-header {
    background-color: #ffffff; /* White background for header */
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.site-logo {
    max-width: 250px;
    height: auto;
    margin-bottom: 10px;
}

.site-title {
    font-size: 2.2em;
    margin: 10px 0 5px;
    color: var(--color-text-main);
}

.site-tagline {
    font-size: 1.2em;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
}

/* Main Content Styles */
.site-main {
    padding: 40px 0;
}

section {
    margin-bottom: 40px;
}

h2 {
    color: var(--color-text-main);
    font-size: 1.8em;
    margin-bottom: 15px;
}

/* Contact Info */
.contact-info p {
    margin: 5px 0;
}

.phone-number {
    font-size: 1.5em;
    font-weight: bold;
    margin: 15px 0;
}

.phone-number a {
    color: var(--color-accent);
    text-decoration: none;
}

.phone-number a:hover {
    text-decoration: underline;
}

.closing-note {
    color: var(--color-text-secondary);
    font-size: 0.9em;
}

/* Menu Button */
.button {
    display: inline-block;
    background-color: var(--color-accent);
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

.button:hover {
    background-color: var(--color-link);
}

/* Opening Hours Table */
.opening-hours table {
    width: 100%;
    max-width: 380px; /* Limit table width */
    margin: 20px auto;
    border-collapse: collapse;
}

.opening-hours td {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    text-align: left; /* Align text left within cells */
}

.opening-hours td:first-child {
    font-weight: bold;
    color: var(--color-text-main);
}

.opening-hours tr:last-child td {
    border-bottom: none;
}

/* Footer Styles */
.site-footer {
    background-color: var(--color-text-main);
    color: #ffffff;
    padding: 20px 0;
    font-size: 0.9em;
    margin-top: 40px;
}

.site-footer p {
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .site-title {
        font-size: 2em;
    }

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

    .phone-number {
        font-size: 1.3em;
    }

    .container {
        padding: 15px;
    }
}
