* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: 'Georgia', serif;
    color: #2b2b2b;
    background: #fdf8f2;
    line-height: 1.6;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    background: #7a2e2e;
    color: #fff;
}

.site-header .logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.site-header nav a {
    color: #fff;
    margin-left: 1.5rem;
    text-decoration: none;
    font-weight: 500;
}

.site-header nav a:hover { text-decoration: underline; }

main {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}

.hero {
    text-align: center;
    padding: 3rem 1rem;
}

.hero h1 { font-size: 2.2rem; margin-bottom: 0.5rem; }

.btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.7rem 1.5rem;
    background: #7a2e2e;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}

.menu-list { list-style: none; padding: 0; }

.menu-item {
    border-bottom: 1px solid #ddd;
    padding: 0.8rem 0;
    position: relative;
}

.item-name { font-weight: bold; font-size: 1.1rem; }
.item-price { float: right; color: #7a2e2e; font-weight: bold; }
.item-desc { color: #666; margin: 0.3rem 0 0; }

.reservation-form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
}

.reservation-form label { margin-top: 1rem; font-weight: bold; }
.reservation-form input,
.reservation-form textarea {
    padding: 0.5rem;
    margin-top: 0.3rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
}

.reservation-form button { margin-top: 1.5rem; }

.flash-messages { list-style: none; padding: 0; }
.flash-success { color: #2e7a2e; }
.flash-error { color: #a02e2e; }

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.admin-table th, .admin-table td {
    text-align: left;
    padding: 0.6rem;
    border-bottom: 1px solid #ddd;
}

.admin-actions a, .admin-actions .link-btn {
    margin-right: 0.8rem;
}

.link-btn {
    background: none;
    border: none;
    color: #a02e2e;
    cursor: pointer;
    padding: 0;
    font: inherit;
    text-decoration: underline;
}

.site-footer {
    text-align: center;
    padding: 1.5rem;
    color: #888;
    font-size: 0.9rem;
}
