@font-face {
    font-family: 'BakeryFont';
    src: url('../bakery-font/bakery.otf') format('opentype'),
         url('../bakery-font/bakery.ttf') format('truetype');
}

:root {
    --bg: #1A1D23; /* Deep Navy */
    --fg: #E5D5C0; /* Cream */
    --accent: #D4AF37; /* Gold */
    --font-display: 'BakeryFont', serif;
    --font-ui: 'Plus Jakarta Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg);
    color: var(--fg);
    font-family: var(--font-ui);
    padding: 0 1.5rem;
}

#app {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding-top: 4rem;
}

@media (max-width: 380px) {
    .logo { font-size: 2.5rem; }
    .item-text h3 { font-size: 1.25rem; }
    .cat-title { font-size: 1.25rem; }
}

header {
    text-align: center;
    margin-bottom: 5rem;
}

.logo {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--accent);
    letter-spacing: 0.1em;
}

.tagline {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    opacity: 0.6;
}

.category-section {
    margin-bottom: 4rem;
}

.cat-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.items-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.item-text h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.item-text p {
    font-size: 0.85rem;
    opacity: 0.7;
    line-height: 1.5;
}

.item-price {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--accent);
}
