/* MODAL STYLE */
.modern-modal {
    border-radius: 20px;
    border: none;
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

/* Gallery image wrapper */
.gallery-item {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Hover efekt */
.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* Modal background blur */
.modal-backdrop.show {
    opacity: 0.85;
    backdrop-filter: blur(4px);
}