/* Shared Guildhall room interior art — TitleBookOverlay / candlelit-tome quality bar */

.gh-room-stage {
    position: relative;
    width: 100%;
    min-height: 420px;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid #3a3326;
    box-shadow:
        0 14px 40px rgba(0, 0, 0, 0.55),
        inset 0 0 0 1px rgba(214, 176, 102, 0.12);
    background: #0e0f12;
}

.gh-room-svg {
    width: 100%;
    height: auto;
    display: block;
    min-height: 420px;
}

.gh-room-vignette {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 50% 42% at 50% 55%, rgba(242, 180, 80, 0.14) 0%, transparent 58%),
        radial-gradient(ellipse 120% 100% at 50% 50%, transparent 35%, rgba(0, 0, 0, 0.35) 72%, rgba(0, 0, 0, 0.65) 100%);
    mix-blend-mode: screen;
    animation: gh-candle-wash 5.5s ease-in-out infinite;
}

.gh-room-filigree {
    position: absolute;
    inset: 8px;
    pointer-events: none;
    border: 1.5px solid rgba(214, 176, 102, 0.35);
    border-radius: 6px;
    box-shadow: inset 0 0 0 1px rgba(20, 14, 8, 0.45);
}

.gh-room-filigree::before,
.gh-room-filigree::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border: 1.5px solid rgba(236, 200, 115, 0.7);
    border-radius: 50%;
}

.gh-room-filigree::before { top: -5px; left: -5px; }
.gh-room-filigree::after { bottom: -5px; right: -5px; }

.gh-hotspot {
    cursor: pointer;
    transition: filter 0.2s ease;
}

.gh-hotspot:hover,
.gh-hotspot:focus-visible {
    filter: brightness(1.15) drop-shadow(0 0 6px rgba(236, 200, 115, 0.45));
}

.gh-hotspot-hit {
    fill: rgba(236, 200, 115, 0);
    stroke: rgba(236, 200, 115, 0);
    stroke-width: 1.5;
    transition: fill 0.22s ease, stroke 0.22s ease;
}

.gh-hotspot:hover .gh-hotspot-hit,
.gh-hotspot:focus-visible .gh-hotspot-hit {
    fill: rgba(236, 200, 115, 0.12);
    stroke: rgba(236, 200, 115, 0.4);
}

.gh-hotspot-label {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform: translateY(4px);
    transform-box: fill-box;
}

.gh-hotspot:hover .gh-hotspot-label,
.gh-hotspot:focus-visible .gh-hotspot-label {
    opacity: 1;
    transform: translateY(0);
}

.gh-hotspot-label-bg {
    fill: rgba(13, 11, 9, 0.92);
    stroke: rgba(214, 176, 102, 0.65);
    stroke-width: 0.8;
}

.gh-hotspot-label-text {
    fill: #ecc873;
    font-family: Georgia, "Palatino Linotype", serif;
    font-size: 11px;
    letter-spacing: 0.04em;
    dominant-baseline: central;
}

.gh-room-panel {
    margin-top: var(--sp-3);
    padding: var(--sp-3) var(--sp-4);
    background: linear-gradient(180deg, rgba(35, 40, 48, 0.94), rgba(20, 23, 28, 0.96));
    border: 1px solid #3a3326;
    border-left: 3px solid var(--gold);
    border-radius: var(--r-md);
}

.gh-room-panel-title {
    font-family: var(--font-display);
    color: var(--gold-bright);
    font-size: var(--ts-sm);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: var(--sp-2);
}

.gh-recap-line {
    font-style: italic;
    color: var(--parch-dim);
    font-size: var(--ts-sm);
    line-height: 1.5;
}

@keyframes gh-candle-wash {
    0%, 100% { opacity: 0.88; }
    40% { opacity: 1; }
    70% { opacity: 0.92; }
}

@media (prefers-reduced-motion: reduce) {
    .gh-room-vignette { animation: none !important; }
}
