/* Képnézegető (template-parts/lightbox.php) */

.lightbox {
    box-sizing: border-box;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);

    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.lightbox[data-visibility="true"] {
    display: flex;
}

.lightbox-close {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;

    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 999;

    opacity: 0.3;
    transition: ease-in-out .5s all;
}

.lightbox-close:hover {
    opacity: 0.6;
    transition: ease-in-out .5s all;
}

.lightbox-close i {
    font-size: 2rem;
    color: white;
}

.lightbox-image {
    width: auto;
    height: auto;

    max-width: 90%;
    max-height: 90%;
}