:root {
    --ink: #24170f;
    --cream: #f6ead2;
    --paper: #fff8ea;
    --oak: #6b2e17;
    --brass: #c99a43;
    --green: #26452d;
    --red: #8f2f24;
}

* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.6;
}
a { color: inherit; }
.header {
    position: relative;
    overflow: hidden;
    color: var(--paper);
    padding: 24px 20px 92px;
    text-align: center;
    background:
        linear-gradient(90deg, rgba(36, 23, 15, .82) 0%, rgba(36, 23, 15, .58) 48%, rgba(36, 23, 15, .78) 100%),
        url('/assets/img/hero-the-hung-dragon.webp') center / cover no-repeat,
        url('/assets/img/pub-pattern.svg');
}
.nav {
    max-width: 1100px;
    margin: 0 auto 54px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-decoration: none;
}
.brand img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    filter: drop-shadow(0 10px 18px rgba(0,0,0,.35));
}
.nav-links { display: flex; gap: 18px; flex-wrap: wrap; }
.nav-links a { text-decoration: none; border-bottom: 1px solid transparent; }
.nav-links a:hover { border-bottom-color: var(--brass); }
.hero {
    position: relative;
    z-index: 1;
}
.hero-panel {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 230px 1fr;
    align-items: center;
    gap: 28px;
    text-align: left;
    background: rgba(36, 23, 15, .58);
    border: 1px solid rgba(201, 154, 67, .45);
    border-radius: 26px;
    padding: 26px;
    box-shadow: 0 22px 60px rgba(0,0,0,.28);
    backdrop-filter: blur(3px);
}
.hero-logo {
    width: 100%;
    max-width: 230px;
    height: auto;
    filter: drop-shadow(0 16px 24px rgba(0,0,0,.45));
}
.hero h1 { font-size: clamp(2.8rem, 8vw, 5.7rem); margin: 0; line-height: 1; text-shadow: 0 4px 16px rgba(0,0,0,.4); }
.hero p { max-width: 720px; margin: 22px 0 0; font-size: 1.2rem; }
.badge {
    display: inline-block;
    margin-top: 26px;
    border: 1px solid var(--brass);
    padding: 10px 18px;
    border-radius: 999px;
    color: var(--brass);
    background: rgba(0,0,0,.12);
}
main { max-width: 1100px; margin: -42px auto 0; padding: 0 20px 50px; }
.card {
    background: var(--paper);
    border: 1px solid rgba(107,46,23,.18);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(36, 23, 15, .12);
    padding: 30px;
    margin-bottom: 24px;
}
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.feature { background: #fbf0dc; border-radius: 14px; padding: 20px; }
h2 { margin-top: 0; font-size: 2rem; color: var(--oak); }
h3 { margin-bottom: 8px; color: var(--green); }
.menu-category { margin-top: 28px; }
.menu-item { border-top: 1px dashed rgba(36,23,15,.25); padding: 14px 0; }
.menu-row { display: flex; justify-content: space-between; gap: 16px; align-items: baseline; }
.menu-name { font-weight: 700; font-size: 1.1rem; }
.price { white-space: nowrap; font-weight: 700; color: var(--red); }
.labels { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.label { font-size: .8rem; padding: 2px 8px; border-radius: 999px; background: #efe1c8; }
.cta {
    display: inline-block;
    background: var(--green);
    color: var(--paper);
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 700;
}
.footer { background: var(--ink); color: var(--paper); text-align: center; padding: 28px 20px; }
.admin-body { background: #f5f5f5; font-family: system-ui, -apple-system, Segoe UI, sans-serif; }
.admin-wrap { max-width: 1100px; margin: 30px auto; padding: 0 18px; }
.admin-card { background: white; border-radius: 12px; padding: 22px; box-shadow: 0 10px 30px rgba(0,0,0,.08); margin-bottom: 18px; }
input, textarea, select { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 8px; }
label { display: block; margin: 12px 0 5px; font-weight: 600; }
button, .button { background: #26452d; color: white; border: 0; border-radius: 8px; padding: 10px 14px; text-decoration: none; cursor: pointer; display: inline-block; }
.button.secondary { background: #666; }
.button.danger { background: #9b2525; }
table { width: 100%; border-collapse: collapse; }
th, td { text-align: left; border-bottom: 1px solid #ddd; padding: 10px; vertical-align: top; }
.actions { display: flex; gap: 8px; flex-wrap: wrap; }
.notice { padding: 10px 12px; border-radius: 8px; background: #e8f3e8; margin-bottom: 14px; }
.error { padding: 10px 12px; border-radius: 8px; background: #ffe0e0; margin-bottom: 14px; }

@media (max-width: 760px) {
    .header { padding: 20px 16px 72px; }
    .nav { align-items: flex-start; flex-direction: column; margin-bottom: 34px; }
    .brand img { width: 58px; height: 58px; }
    .hero-panel { grid-template-columns: 1fr; text-align: center; padding: 22px; }
    .hero-logo { max-width: 180px; margin: 0 auto; }
    .hero p { margin-left: auto; margin-right: auto; }
    .grid { grid-template-columns: 1fr; }
    .card { padding: 22px; }
    .menu-row { flex-direction: column; gap: 2px; }
    table, thead, tbody, th, td, tr { display: block; }
    thead { display: none; }
    tr { border-bottom: 1px solid #ddd; padding: 10px 0; }
    td { border: 0; padding: 4px 0; }
}
