/* Lightbox Venue — minimal CSS */
.lb-venue {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .96);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .35s ease;
    -webkit-tap-highlight-color: transparent;
}
.lb-venue.is-open {
    display: flex;
    opacity: 1;
}
.lb-venue .lb-stage {
    max-width: 92vw;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
}
.lb-venue .lb-img {
    max-width: 92vw;
    max-height: 82vh;
    object-fit: contain;
    pointer-events: auto;
    box-shadow: 0 6px 60px rgba(0, 0, 0, .5);
    animation: lbVenueIn .35s ease;
}
.lb-venue .lb-caption {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: .9rem;
    color: rgba(255, 255, 255, .55);
    margin-top: 14px;
    font-style: italic;
    text-align: center;
    max-width: 80vw;
    pointer-events: auto;
}
.lb-venue .lb-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, .65);
    font-size: 2.4rem;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    font-weight: 200;
    padding: 6px 10px;
    transition: color .25s;
}
.lb-venue .lb-close:hover,
.lb-venue .lb-close:focus-visible {
    color: #fff;
    outline: none;
}
.lb-venue .lb-prev,
.lb-venue .lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, .55);
    cursor: pointer;
    z-index: 10;
    padding: 14px;
    transition: color .25s;
}
.lb-venue .lb-prev:hover,
.lb-venue .lb-next:hover,
.lb-venue .lb-prev:focus-visible,
.lb-venue .lb-next:focus-visible {
    color: #c8913a;
    outline: none;
}
.lb-venue .lb-prev { left: 18px; }
.lb-venue .lb-next { right: 18px; }
.lb-venue .lb-counter {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: .72rem;
    letter-spacing: .15em;
    color: rgba(255, 255, 255, .35);
    font-family: 'DM Sans', sans-serif;
}
@keyframes lbVenueIn {
    from { opacity: 0; transform: scale(.97); }
    to { opacity: 1; transform: scale(1); }
}
@media (max-width: 680px) {
    .lb-venue .lb-prev,
    .lb-venue .lb-next { padding: 8px; }
    .lb-venue .lb-prev { left: 4px; }
    .lb-venue .lb-next { right: 4px; }
    .lb-venue .lb-close { top: 14px; right: 14px; font-size: 2rem; }
}
/* Visual cue: gallery images become clickable */
.gallery-grid img {
    cursor: zoom-in;
}
.gallery-grid img:focus-visible {
    outline: 2px solid #c8913a;
    outline-offset: 2px;
}
