/* Glassmorphism Effect */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Zapobieganie poziomemu scrollowaniu (usunięcie pustego paska po prawej na urządzeniach mobilnych) */
html, body {
    max-width: 100vw;
    width: 100%;
    overflow-x: hidden !important;
}

[data-aos] {
    pointer-events: none;
}
[data-aos].aos-animate {
    pointer-events: auto;
}

/* Modal Lightbox Styles */
#lightbox {
    display: none;
    position: fixed;
    z-index: 100;
    inset: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(5px);
    cursor: zoom-out;
    padding: 1rem;
    align-items: center;
    justify-content: center;
    touch-action: none; /* Wyłącz domyślne gesty przeglądarki w modalu */
}

#lightbox.active {
    display: flex;
}

#lightbox img {
    max-width: 95%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: transform 0.1s ease-out;
    cursor: grab;
}

