/* ===== Reset ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg: #0e0e0e;
    --bg-card: #171717;
    --bg-dark: #0a0a0a;
    --text: #f5f0e8;
    --text-muted: #9c9585;
    --accent: #d4a853;
    --accent-dark: #b08a3a;
    --green: #4a8c5c;
    --red: #c45c4a;
    --border: #2a2620;
    --radius: 8px;
}

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

.container { max-width: 900px; margin: 0 auto; padding: 0 20px; }

/* ===== Header ===== */
.header {
    padding: 48px 0 32px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}
.restaurant-name {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 4px;
}
.restaurant-tagline {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 12px;
}
.restaurant-info {
    display: flex;
    justify-content: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===== Menu Navigation ===== */
.menu-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(14, 14, 14, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
}
.menu-nav-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 2px;
}
.menu-nav-scroll::-webkit-scrollbar { display: none; }

.menu-tab {
    padding: 8px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    color: var(--text-muted);
    font-size: 0.85rem;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
    font-family: inherit;
}
.menu-tab:hover { color: var(--text); border-color: var(--text-muted); }
.menu-tab.active {
    background: var(--accent);
    color: #0e0e0e;
    border-color: var(--accent);
    font-weight: 600;
}

/* ===== Menu Sections ===== */
.menu { padding: 40px 0 80px; }

.menu-section { margin-bottom: 48px; }
.menu-section.hidden { display: none; }

.section-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

/* ===== Menu Items ===== */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.menu-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.2s, transform 0.15s;
}
.menu-item:hover {
    border-color: var(--accent);
    transform: translateY(-1px);
}

.menu-item-image {
    width: 100%;
    height: 140px;
}

.menu-item-content {
    padding: 16px;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 6px;
    gap: 12px;
}

.menu-item-header h3 {
    font-size: 1rem;
    font-weight: 600;
}

.menu-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
    white-space: nowrap;
}

.menu-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

.menu-tags {
    display: flex;
    gap: 6px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.tag {
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.tag-popular { background: rgba(212, 168, 83, 0.15); color: var(--accent); }
.tag-veg { background: rgba(74, 140, 92, 0.15); color: var(--green); }
.tag-gf { background: rgba(196, 92, 74, 0.1); color: #d4856a; }

/* Compact items (drinks) */
.menu-item.compact .menu-item-content { padding: 14px 16px; }

/* ===== Footer ===== */
.footer {
    border-top: 1px solid var(--border);
    padding: 24px 0;
    text-align: center;
}
.footer p { color: var(--text-muted); font-size: 0.8rem; margin-bottom: 4px; }
.footer-credit a { color: var(--accent); }

/* ===== Mobile ===== */
@media (max-width: 600px) {
    .header { padding: 32px 0 24px; }
    .restaurant-name { font-size: 1.6rem; }
    .menu-grid { grid-template-columns: 1fr; }
    .menu-item-image { height: 120px; }
}
