/* Reset some default margins and paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background-color: #f5f2ed;
    color: #333;
    padding: 20px;
}

/* Header image */
.header-image {
    text-align: center;
    margin-bottom: 20px;
}

.responsive {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Main heading */
h1 {
    text-align: center;
    color: #6b3e26; /* Coffee brown */
    margin-bottom: 20px;
}

/* Paragraphs */
p {
    margin-bottom: 15px;
}

/* Table styling */
.menu-table table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    background-color: #fff8f0;
    border: 1px solid #d1bfa7;
}

.menu-table caption {
    caption-side: top;
    font-weight: bold;
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #6b3e26;
}

.menu-table th,
.menu-table td {
    border: 1px solid #d1bfa7;
    padding: 10px;
    text-align: left;
}

.menu-table th {
    background-color: #e3d5c1;
    color: #6b3e26;
}

.menu-table td.specialty {
    font-weight: bold;
    color: #5a2e0c;
}

.menu-table td.price {
    text-align: right;
    color: #8b4e26;
}

/* Footer styling */
footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 10px;
    border-top: 1px solid #d1bfa7;
    font-size: 0.9em;
}

footer a {
    color: #6b3e26;
    text-decoration: none;
    margin: 0 5px;
}

footer a:hover {
    text-decoration: underline;
}
