/* GLightbox - BIGGER NAV BUTTONS */
.gl-lightbox {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.gl-lightbox.open {
    opacity: 1;
    visibility: visible;
}

.gl-lightbox img {
    max-width: 90vw;
    max-height: 80vh;
    border: 10px solid white;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

/* BIG NAV BUTTONS */
.gl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(5px);
    color: white;
    font-size: 36px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    z-index: 10000;
}

.gl-prev { left: 20px; }
.gl-next { right: 20px; }

.gl-nav:hover {
    background: rgba(255,255,255,0.4);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Mobile: Even bigger */
@media (max-width: 768px) {
    .gl-nav {
        width: 50px;
        height: 50px;
        font-size: 30px;
    }
    .gl-prev { left: 10px; }
    .gl-next { right: 10px; }
}

/* Close button */
.gl-close {
    position: absolute;
    top: 20px; right: 20px;
    width: 50px; height: 50px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    color: white;
    font-size: 28px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.gl-close:hover {
    background: rgba(220, 20, 60, 0.8);
    transform: scale(1.1);
}

/* Caption with details */
.gl-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    max-width: 85%;
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.6;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.gl-caption strong {
    color: #64b5f6;
}