/* AYA Concerts – Gallery grid + lightbox */
.aya-gallery-wrap {
    margin: 2em 0;
}

.aya-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1em;
}

.aya-gallery-item {
    display: block;
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: none;
    padding: 0;
    background: #f0f0f0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.aya-gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.aya-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.aya-gallery-empty {
    color: #666;
    font-style: italic;
}

/* Lightbox */
.aya-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.aya-lightbox.is-open {
    display: flex;
}

.aya-lightbox__img {
    max-width: 92vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 4px;
    user-select: none;
}

.aya-lightbox__close {
    position: absolute;
    top: 1em;
    right: 1em;
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1.75em;
    line-height: 1;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.15s;
}

.aya-lightbox__close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.aya-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1.5em;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.15s;
}

.aya-lightbox__nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.aya-lightbox__prev {
    left: 1em;
}

.aya-lightbox__next {
    right: 1em;
}

.aya-lightbox__counter {
    position: absolute;
    bottom: 1.5em;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9em;
}
