/* ================= IMAGE ZOOM MODAL (Global) ================= */
#photo-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.95);
    justify-content: center;
    align-items: center;
    cursor: default;
    touch-action: none;
}

#photo-modal-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
}

#photo-modal-close {
    position: absolute;
    top: 2rem;
    right: 3rem;
    color: #fff;
    font-size: 3.5rem;
    cursor: pointer;
    font-family: Arial, sans-serif;
    opacity: 0.7;
    transition: 0.3s;
}

#photo-modal-close:hover {
    opacity: 1;
}

/* Class to trigger zoom on any image */
.zoomable-img {
    cursor: zoom-in;
}
