/**
 * Aharguna Gallery - Lightbox Styles
 */
.ag-lightbox {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 8, 7, 0.95);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.ag-lightbox.active {
    display: flex;
}

.ag-lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ag-lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    transition: transform 0.3s ease;
}

.ag-lightbox-caption {
    color: #DFBA73;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    margin-top: 16px;
    text-align: center;
    max-width: 800px;
}

.ag-lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    color: #F7F3EB;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    transition: color 0.2s;
    z-index: 10;
}

.ag-lightbox-close:hover {
    color: #C5A059;
}

.ag-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(30, 25, 22, 0.7);
    border: 1px solid #C5A059;
    color: #FFFFFF;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.2s;
}

.ag-lightbox-nav:hover {
    background: #C5A059;
    color: #12100E;
}

.ag-lightbox-prev { left: 24px; }
.ag-lightbox-next { right: 24px; }
