/* ========================= */
/* LIGHTBOX */
/* ========================= */


.lightbox {

    position: fixed;

    inset: 0;

    display: flex;

    justify-content: center;

    align-items: center;

    background: rgba(25, 24, 22, 0.92);

    opacity: 0;

    visibility: hidden;

    transition: opacity .35s ease;

    z-index: 9999;

    padding: 40px;

}



.lightbox.active {

    opacity: 1;

    visibility: visible;

}



/* ========================= */
/* ZDJĘCIE */
/* ========================= */


.lightbox img {

    max-width: 90vw;

    max-height: 90vh;

    object-fit: contain;

    display: block;

}



/* ========================= */
/* ZAMKNIĘCIE */
/* ========================= */


.lightbox-close {

    position: absolute;

    top: 25px;

    right: 35px;

    width: 45px;

    height: 45px;

    display: flex;

    justify-content: center;

    align-items: center;

    background: transparent;

    border: none;

    color: #F5F2E9;

    font-size: 40px;

    font-weight: 200;

    cursor: pointer;

    line-height: 1;

    transition: opacity .3s ease;

}


.lightbox-close:hover {

    opacity: .6;

}



/* ========================= */
/* KLIKALNE OBRAZY */
/* ========================= */


.artwork img,
.exhibition-image img {

    cursor: zoom-in;

}



/* ========================= */
/* MOBILE */
/* ========================= */


@media(max-width:768px){


    .lightbox {

        padding:20px;

    }


    .lightbox img {

        max-width:95vw;

        max-height:85vh;

    }


    .lightbox-close {

        top:15px;

        right:20px;

        font-size:32px;

    }


}