/* TEMA 01 - DARK & YELLOW */
:root {
    --bg-color: #1a1a1a;
    --primary-color: #FFC107;
    --text-white: #ffffff;
    --text-gray: #b3b3b3;
}

body {
    background-color: var(--bg-color);
    color: var(--text-white);
}

.header {
    text-align: center;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.category-title {
    color: #000;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    padding: 6px 15px;
    margin: 25px 0 15px 0;
    text-transform: uppercase;
}

.menu-item {
    margin-bottom: 18px;
}

.item-header {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
}

.item-price {
    color: var(--primary-color);
}

.item-description {
    color: var(--text-gray);
    font-size: 0.85rem;
    text-transform: uppercase;
}