/* GALÉRIA */
.gallery{
display:flex;
flex-wrap:wrap;
gap:15px;
}

.gallery img{
width:200px;
height:150px;
object-fit:cover;
border-radius:10px;
cursor:pointer;
transition:.3s;
}

.gallery img:hover{
transform:scale(1.05);
opacity:.85;
}

/* MODAL */
.img-modal{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.95);
display:flex;
align-items:center;
justify-content:center;
z-index:9999;
opacity:0;
pointer-events:none;
transition:.3s;
flex-direction:column;
}

.img-modal.active{
opacity:1;
pointer-events:auto;
}

/* KÉP */
.img-modal img{
max-width:90%;
max-height:80%;
border-radius:10px;
transition:.2s;
}

/* NAV */
.img-modal .nav{
position:absolute;
top:50%;
width:100%;
display:flex;
justify-content:space-between;
padding:0 30px;
transform:translateY(-50%);
}

.img-modal .arrow{
font-size:40px;
color:#fff;
cursor:pointer;
user-select:none;
transition:.2s;
}

.img-modal .arrow:hover{
color:#ff6a00;
}

/* CLOSE */
.img-modal .close{
position:absolute;
top:20px;
right:30px;
font-size:35px;
color:#fff;
cursor:pointer;
}

/* CAPTION */
.img-modal .caption{
margin-top:15px;
color:#ccc;
font-size:16px;
text-align:center;
}

/* ZOOM cursor */
.img-modal img.zoomed{
cursor:zoom-out;
}