/* Customised venue interface mockups */

.venue-ui {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
}

.venue-ui-chrome {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1rem;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

.venue-ui-dots {
    display: flex;
    gap: 0.35rem;
}

.venue-ui-dots span {
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--line);
}

.venue-ui-body {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(200px, 0.7fr);
    min-height: 22rem;
}

.venue-ui-map {
    padding: 1.25rem 1.35rem 1.5rem;
    border-right: 1px solid var(--line);
}

.venue-ui-map h3 {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
}

.venue-ui-map .venue-meta {
    margin: 0 0 1.1rem;
    font-size: 0.85rem;
    color: var(--ink-soft);
}

.venue-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.1rem;
    margin: 0 0 1rem;
    font-size: 0.75rem;
    color: var(--ink-soft);
}

.venue-legend i,
.venue-legend .swatch {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 2px;
    margin-right: 0.35rem;
    vertical-align: -1px;
    border: 1px solid var(--line);
}

.swatch-free { background: var(--card); }
.swatch-taken { background: #d8d3cb; }
.swatch-sel { background: var(--pink); border-color: var(--pink); }

.venue-ui-side {
    padding: 1.25rem 1.2rem;
    background: var(--paper);
}

.venue-ui-side h4 {
    margin: 0 0 0.75rem;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

.venue-ui-side dl {
    margin: 0 0 1.15rem;
}

.venue-ui-side .home-slip-row {
    grid-template-columns: 6.5rem 1fr;
}

.venue-ui-side .btn {
    width: 100%;
    justify-content: center;
}

.venue-ui-note {
    margin: 0.9rem 0 0;
    font-size: 0.8rem;
    color: var(--ink-soft);
}

/* Cinema */
.cinema-screen {
    text-align: center;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-soft);
    border-bottom: 3px solid var(--ink);
    padding: 0 1rem 0.45rem;
    margin: 0 8% 1.1rem;
    font-weight: 600;
}

.cinema-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.28rem;
    margin-bottom: 0.28rem;
}

.cinema-label {
    width: 1.1rem;
    font-family: var(--mono);
    font-size: 0.68rem;
    color: var(--ink-soft);
    text-align: center;
}

.seat {
    width: 18px;
    height: 16px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 2px 2px 4px 4px;
    background: var(--card);
    cursor: pointer;
}

.seat:hover:not(.is-taken) {
    border-color: var(--pink);
}

.seat.is-taken {
    background: #d8d3cb;
    cursor: default;
}

.seat.is-selected {
    background: var(--pink);
    border-color: var(--pink);
}

.seat-aisle {
    width: 12px;
    height: 16px;
}

/* Restaurant */
.resto-floor {
    position: relative;
    min-height: 18rem;
    background:
        linear-gradient(90deg, rgba(22, 20, 18, 0.04) 40px, transparent 40px),
        var(--paper);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 1.25rem 1rem 1rem;
}

.resto-wall {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-soft);
    text-align: center;
    margin-bottom: 0.85rem;
}

.resto-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem 0.75rem;
    justify-items: center;
}

.table-spot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
    color: inherit;
}

.table-spot .tbl {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    background: var(--card);
    font-family: var(--mono);
    font-size: 0.68rem;
    font-weight: 500;
}

.table-spot.round .tbl {
    width: 52px;
    height: 52px;
    border-radius: 50%;
}

.table-spot.rect .tbl {
    width: 64px;
    height: 40px;
    border-radius: 4px;
}

.table-spot.booth .tbl {
    width: 72px;
    height: 36px;
    border-radius: 12px 12px 4px 4px;
}

.table-spot small {
    font-size: 0.68rem;
    color: var(--ink-soft);
}

.table-spot.is-taken .tbl {
    background: #d8d3cb;
}

.table-spot.is-selected .tbl {
    background: var(--pink);
    border-color: var(--pink);
    color: #fff;
}

.table-spot:hover:not(.is-taken) .tbl {
    border-color: var(--pink);
}

/* Golf club banquet */
.golf-room {
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 0.85rem;
    background: var(--paper);
}

.golf-bar {
    text-align: center;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-soft);
    border: 1px dashed var(--line);
    padding: 0.35rem;
    margin-bottom: 0.75rem;
}

.golf-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.golf-table {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    background: none;
    border: 0;
    cursor: pointer;
    color: inherit;
    padding: 0;
}

.golf-table .disc {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 500;
}

.golf-table.is-taken .disc {
    background: #d8d3cb;
}

.golf-table.is-selected .disc {
    background: var(--pink);
    border-color: var(--pink);
    color: #fff;
}

.golf-table:hover:not(.is-taken) .disc {
    border-color: var(--pink);
}

.golf-table small {
    font-size: 0.68rem;
    color: var(--ink-soft);
}

.golf-dance {
    grid-column: 1 / -1;
    border: 1px dashed var(--line);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-soft);
    min-height: 58px;
}

.venue-section-label {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-soft);
    text-align: center;
    margin: 1rem 0 0.55rem;
    font-weight: 600;
}

.theatre-map,
.school-map,
.arena-bowl {
    overflow-x: auto;
    padding-bottom: 0.35rem;
}

.arena-stage,
.theatre-stage,
.school-stage {
    text-align: center;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-soft);
    border-bottom: 3px solid var(--ink);
    padding: 0 1rem 0.45rem;
    margin: 0 12% 0.9rem;
    font-weight: 600;
}

.arena-rings {
    display: grid;
    gap: 0.45rem;
    margin-bottom: 0.85rem;
}

.arena-ring {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.arena-block {
    min-width: 4.4rem;
    padding: 0.45rem 0.5rem;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--card);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--ink);
}

.arena-ring-floor .arena-block {
    min-width: 8rem;
}

.arena-block:hover:not(.is-taken) {
    border-color: var(--pink);
}

.arena-block.is-taken {
    background: #d8d3cb;
    cursor: default;
}

.arena-block.is-selected {
    background: var(--pink);
    border-color: var(--pink);
    color: #fff;
}

.arena-strip {
    border-top: 1px solid var(--line);
    padding-top: 0.75rem;
}

.arena-strip-label {
    font-size: 0.75rem;
    color: var(--ink-soft);
    margin: 0 0 0.5rem;
}

@media (max-width: 900px) {
    .venue-ui-body {
        grid-template-columns: 1fr;
    }

    .venue-ui-map {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .golf-grid,
    .resto-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
