/* ====== FOTO GALERİ GRID ====== */

.galeri-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.galeri-item {
    width: 100%;
    height: 240px;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid #eee;
    cursor: pointer;
    transition: .3s ease;
}

.galeri-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}

.galeri-item:hover img {
    transform: scale(1.05);
}

/* ====== LIGHTBOX POPUP ====== */

.lightbox {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: .3s;
    z-index: 99999;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox img {
    max-width: 85%;
    max-height: 85%;
    border-radius: 10px;
}

#closeBtn {
    position: absolute;
    top: 40px; 
    right: 60px;
    font-size: 48px;
    color: #fff;
    cursor: pointer;
}

/* ===== RESPONSIVE ===== */

@media(max-width:992px){
    .galeri-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:576px){
    .galeri-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}
/* ======= Breadcrumb ======= */

.cj-breadcrumb {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cj-breadcrumb a {
    color: #888;
    text-decoration: none;
    transition: .2s ease;
    font-weight: 500;
}

.cj-breadcrumb a:hover {
    color: #b30000;
    text-decoration: underline;
}

.cj-breadcrumb span {
    color: #aaa;
}

.cj-breadcrumb .current {
    color: #222;
    font-weight: 600;
}
