/* =============================================
   SURYA BANQUET HALL — LIGHTBOX PREV/NEXT NAV
   Awwwards-level gallery lightbox navigation
   ============================================= */

/* ── Prev / Next Arrows ── */
.sbh-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10;
}

.sbh-lightbox-nav:hover {
    background: #ffb039;
    border-color: #ffb039;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 24px rgba(255, 176, 57, 0.35);
}

.sbh-lightbox-prev {
    left: -70px;
}

.sbh-lightbox-next {
    right: -70px;
}

.sbh-lightbox-nav svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    pointer-events: none;
}

/* ── Counter badge ── */
.sbh-lightbox-counter {
    position: absolute;
    bottom: -44px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.45);
}

.sbh-lightbox-counter span {
    color: #ffb039;
    font-weight: 700;
}

/* ── Img slide transition ── */
#sbhLightboxImg {
    transition: opacity 0.3s ease;
}

#sbhLightboxImg.sbh-lb-fade {
    opacity: 0;
}

/* ── Responsive: move arrows inside on small screens ── */
@media (max-width: 900px) {
    .sbh-lightbox-prev {
        left: 8px;
    }

    .sbh-lightbox-next {
        right: 8px;
    }

    .sbh-lightbox-nav {
        width: 40px;
        height: 40px;
        background: rgba(13, 19, 26, 0.7);
        border-color: rgba(255, 255, 255, 0.08);
    }

    .sbh-lightbox-nav svg {
        width: 16px;
        height: 16px;
    }

    .sbh-lightbox-counter {
        bottom: -36px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .sbh-lightbox-nav {
        width: 36px;
        height: 36px;
    }
}
