
.collection-header {
    padding: 120px 50px 50px; /* Menü payı bırakıldı */
    text-align: center;
}

.collection-header h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.collection-header p {
    color: #888;
    max-width: 600px;
    margin: 0 auto;
}

/* MASONRY (DUVAR) YAPISI */
.masonry-grid {
    column-count: 3; /* Yan yana 3 sütun */
    column-gap: 20px; /* Sütun arası boşluk */
    padding: 20px 50px;
}

.masonry-item {
    break-inside: avoid; /* Görselin sütun arasında bölünmesini engelle */
    margin-bottom: 20px;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.masonry-item:hover {
    transform: translateY(-5px);
    z-index: 10;
}

.masonry-item img {
    width: 100%;
    border-radius: 4px;
    display: block; /* Alt boşluk sorununu çözer */
}

/* Resim üzerindeki bilgi katmanı (Hover ile gelir) */
.item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 4px;
}

.masonry-item:hover .item-overlay {
    opacity: 1;
}

.item-title { font-size: 1.2rem; margin: 0; font-weight: bold; }
.item-artist { font-size: 0.9rem; color: #ccc; margin-top: 5px; }

/* MOBİL UYUM */
@media (max-width: 1024px) {
    .masonry-grid { column-count: 2; }
}

@media (max-width: 600px) {
    .masonry-grid { column-count: 1; padding: 20px; }
    .collection-header { padding-top: 100px; }
}