/* Big-type, dark, single-column layout meant for a phone or a tablet
   mounted near the taps — see tap.php. Deliberately not a re-theme of
   view.css: this page has one job (what's pouring, in giant type) and no
   grid/multi-column layout to fit.

   Same token roles as every other page now: --paper/--paper-lift surfaces,
   --ink/--ink-soft text, --moss/--moss-lift/--pine-lift/--rust-lift accents.
   There is no separate "ink page" any more — the whole app prints on dark
   stock, so this file no longer inverts. */

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

body {
    font-family: var(--font-body);
    background: var(--paper);
    color: var(--ink);
    min-height: 100vh;
}

.tap-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 24px 20px 60px;
}

.tap-header {
    text-align: center;
    margin-bottom: 24px;
}

.tap-brandmark {
    max-width: 300px;
    margin: 0 auto 8px;
}

.tap-on-tap-label {
    margin-bottom: 10px;
}

.tap-back-link {
    color: var(--ink-soft);
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 600;
}

.tap-back-link:hover {
    color: var(--moss);
}

.tap-error,
.tap-empty {
    text-align: center;
    color: var(--ink-soft);
    font-size: 1.2em;
    padding: 60px 20px;
}

.tap-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tap-card {
    background-color: var(--paper-lift);
    padding: 28px 24px;
    margin-bottom: 4px;
}

.tap-name {
    font-family: var(--font-display);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-size: 1.8em;
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: 8px;
    word-break: break-word;
}

.tap-slot {
    display: inline-block;
    background: var(--moss-lift);
    color: var(--ink-deep);
    font-size: 1em;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    margin-bottom: 16px;
}

.tap-specs {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
}

.tap-spec {
    font-family: var(--font-data);
    font-variant-numeric: tabular-nums;
    font-size: 1.3em;
    font-weight: 700;
    color: var(--ink-soft);
}

.tap-fullness-bar {
    background: var(--paper);
    border-radius: var(--radius);
    height: 22px;
    overflow: hidden;
    margin-bottom: 8px;
}

.tap-fullness-fill {
    height: 100%;
}

.tap-fullness-fill.full {
    width: 100%;
    background: var(--pine-lift);
}

.tap-fullness-fill.three-quarters {
    width: 75%;
    background: var(--pine-lift);
}

.tap-fullness-fill.half {
    width: 50%;
    background: var(--moss-lift);
}

.tap-fullness-fill.quarter {
    width: 25%;
    background: var(--rust-lift);
}

.tap-fullness-fill.empty {
    width: 3%;
    background: var(--ink-soft);
}

.tap-fullness-label {
    font-size: 1em;
    font-weight: 700;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (min-width: 700px) {
    .tap-name {
        font-size: 2.2em;
    }
}
