/* Import base styles */
@import url('content.css');

.artists-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 0;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.artist-row {
    display: flex;
    gap: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artist-row:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.artist-image-container {
    flex: 0 0 300px;
    height: 300px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.artist-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.artist-row:hover .artist-image {
    transform: scale(1.05);
}

.artist-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    color: white;
}

.artist-name {
    font-size: 2rem;
    font-weight: bold;
    margin: 0 0 1rem 0;
    color: white;
}

.artist-genre {
    font-size: 1.2rem;
    color: #cccccc;
    margin: 0 0 1.5rem 0;
}

.artist-social {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icon {
    width: 37px;
    height: 37px;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.social-icon[src*="Apple.png"] {
    width: 38px;
    height: 38px;
}

.social-icon[src*="Spotify.png"] {
    width: 43px;
    height: 43px;
}

.social-icon[src*="Youtube.png"] {
    width: 40px;
    height: 40px;
}

.social-icon:hover {
    opacity: 1;
    transform: scale(1.1);
}

.social-icon[src*="Play-blue.png"] {
    width: 49px;
    height: 49px;
}

a {
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .artist-row {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .artist-image-container {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }

    .artist-info {
        padding: 0.5rem;
    }

    .artist-name {
        font-size: 1.75rem;
    }

    .artist-genre {
        font-size: 1.1rem;
    }

    .artist-social {
        margin-top: 0px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .social-icon {
        width: 34px;
        height: 34px;
    }

    .social-icon[src*="Apple.png"] {
        width: 35px;
        height: 35px;
    }
    
    .social-icon[src*="Spotify.png"] {
        width: 40px;
        height: 40px;
    }
    
    .social-icon[src*="Youtube.png"] {
        width: 37px;
        height: 37px;
    }
    
    .social-icon[src*="Play-blue.png"] {
        width: 46px;
        height: 46px;
    }
}

@media (max-width: 480px) {
    .artists-list {
        padding: 1rem 0.5rem;
    }

    .artist-image-container {
        aspect-ratio: 4/3;
    }

    .artist-name {
        font-size: 1.5rem;
    }

    .artist-genre {
        font-size: 1rem;
    }

    .social-icon {
        width: 31px;
        height: 31px;
    }

    .social-icon[src*="Apple.png"] {
        width: 32px;
        height: 32px;
    }
    
    .social-icon[src*="Spotify.png"] {
        width: 37px;
        height: 37px;
    }
    
    .social-icon[src*="Youtube.png"] {
        width: 34px;
        height: 34px;
    }
    
    .social-icon[src*="Play-blue.png"] {
        width: 43px;
        height: 43px;
    }
}

/* Animation for row appearance */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.artist-row {
    animation: fadeIn 0.5s ease forwards;
}

/* Hover effects for artist info */
.artist-info a:hover .artist-name {
    color: #e0e0e0;
    transform: scale(1.02);
    transition: all 0.3s ease;
}

.artist-info a:hover .artist-genre {
    color: #ffffff;
    transition: color 0.3s ease;
}