/* Sanatçılar Bölümü */
.artists-section {
    padding: 50px 20px;
    text-align: center;
    background-color: #fff; /* Beyaz arka plan */
}

.artists-section .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333; /* Başlık rengi */
}

/* Grid Yapısı */
.artists-section .artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* Responsive grid */
    gap: 20px;
    justify-content: center;
}

/* Sanatçı Kartı */
.artists-section .artist-card {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1 / 1; /* Kare görünüm */
    cursor: pointer;
    background: #000;
}

.artists-section .artist-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.artists-section .artist-card:hover img {
    filter: brightness(50%); /* Resmi karartır */
}

/* Sanatçı İsmi - Her Zaman Görünür */
.artists-section .artist-card .artist-name {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    font-size: 1rem; /* Release ile aynı font boyutu */
    font-weight: bold;
    color: #fff;
    background: rgba(0, 0, 0, 0.7); /* Siyah arka plan */
    padding: 5px 0;
    z-index: 2;
}

/* Hover Durumunda İsmin Yer Değiştirmesi */
.artists-section .artist-card:hover .artist-name {
    transform: translateY(-50px); /* Sosyal medya ikonlarının üzerine kayar */
}

/* Overlay - Hover Durumunda İkonlar Görünür */
.artists-section .artist-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Siyah şeffaf arka plan */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.artists-section .artist-card:hover .overlay {
    opacity: 1;
}

/* Sosyal Linkler */
.artists-section .artist-card .overlay .social-links {
    display: flex;
    gap: 15px;
}

.artists-section .artist-card .overlay .social-links a {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.artists-section .artist-card .overlay .social-links a:hover {
    color: #1db954; /* Spotify yeşili */
}

/* Instagram Rengi */
.artists-section .artist-card .overlay .social-links a:hover .bi-instagram {
    color: #E1306C; /* Instagram kırmızı-pembe */
}

/* Mobil uyumluluk - Medya sorguları */
@media (max-width: 768px) {
    .artists-section {
        padding: 40px 15px; /* Mobilde daha az padding */
    }

    .artists-section .section-title {
        font-size: 2rem; /* Mobilde başlığı küçült */
    }

    .artists-section .artists-grid {
        gap: 15px; /* Mobilde daha az boşluk */
    }

    .artists-section .artist-card .artist-name {
        font-size: 0.9rem; /* Mobilde daha küçük font */
    }
}
