.artist-slider-section {
padding: 50px 20px;
background: linear-gradient(145deg, #1e1e1e, #111);
text-align: center;
border-radius: 20px;
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}
.artist-slider-section h2 {
font-size: 2.5rem;
font-weight: 800;
margin-bottom: 40px;
color: #ffd700;
text-transform: uppercase;
letter-spacing: 2px;
text-shadow: 0 2px 8px rgba(255, 215, 0, 0.5);
}
.artist-slider {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
gap: 30px;
justify-items: center;
}
.artist-slider .artist {
position: relative;
background: rgba(255, 255, 255, 0.05);
border-radius: 15px;
padding: 10px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.artist-slider .artist:hover {
transform: translateY(-8px) scale(1.05);
box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}
.artist-slider img {
width: 120px;
height: 120px;
border-radius: 50%;
object-fit: cover;
border: 3px solid #ffd700;
box-shadow: 0px 6px 15px rgba(255, 215, 0, 0.4);
transition: transform 0.3s ease;
}
.artist-slider .artist:hover img {
transform: rotate(5deg) scale(1.1);
}
.artist-slider h4 {
font-size: 1.1rem;
margin-top: 12px;
color: #fff;
text-shadow: 0 1px 5px rgba(0, 0, 0, 0.7);
}
.artist-slider a {
color: inherit;
text-decoration: none;
}
.artist-slider a:hover h4 {
color: #ffd700;
}
/* Mobile styles: 2 columns, 2 rows */
@media (max-width: 600px) {
.artist-slider {
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}
}
Home Artists