/* artist.css */
/* Inherit base styles from content.css */
@import url('content.css');

/* Artist-specific styles */
.artist-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.artist-header {
    text-align: center;
    color: white;
    margin-bottom: 20px;  /* Increased spacing */
}

.artist-csr {
    font-size: 26px;
    font-weight: bold;
    margin: 10px 0 10px 0;
    /* background: linear-gradient(to bottom, 
        #FF6666 50%, 
        #0000ff 40%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; */
}

.artist-featuring {
    font-size: 20px;
    color: #999999;
    margin: 0;
    margin-bottom: 10px;
}

.artist-name {
    font-size: 30px;
    font-weight: bold;
    margin: 0;
    margin-bottom: 10px;
}

.artist-song {
    font-size: 24px;
    color: #cccccc;
    margin: 0;
    margin-bottom: 15px;
}

.artist-genre {
    font-size: 18px;
    color: #999999;
    margin: 0;
    margin-bottom: 15px; 
}

.artist-year {
    font-size: 18px;
    color: #999999;
    margin: 0;
    margin-bottom: 20px;
}

.artist-image {
    width: 100%;
    max-width: 500px;
    margin: 30px auto;
    display: block;
}

.profile-width {
    max-width: 500px;
    margin: 0 auto 20px;
}

/* Audio player styles */
.audio-player {
    max-width: 400px;
    margin: 20px auto;
    background-color: rgba(30, 144, 255, 0.1);
    border-radius: 8px;
    padding: 10px;
}

.audio-player audio {
    width: 100%;
}

/* Button styles */
.streaming-services {
    text-align: center;
    margin: 15px 0;
}

.service-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin: 5px;
    cursor: pointer;
    min-width: 25%;
}

.spotify-button {
    background-color: #1DB954;
}

.spotify-button:hover {
    background-color: #1ed760;
    box-shadow: 0 0 10px rgba(29, 185, 84, 0.7);
    transform: translateY(-2px);
}

.youtube-button {
    background-color: #FF0000;
}

.youtube-button:hover {
    background-color: #FF4D4D;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
    transform: translateY(-2px);
}

.apple-button {
    background-color: #FB2D6C;
}

.apple-button:hover {
    background-color: #FF5B8D;
    box-shadow: 0 0 10px rgba(251, 45, 108, 0.7);
    transform: translateY(-2px);
}

.amazon-button {
    background-color: #00A8E1;
}

.amazon-button:hover {
    background-color: #20C5FF;
    box-shadow: 0 0 10px rgba(0, 168, 225, 0.7);
    transform: translateY(-2px);
}

.song-list {
    list-style: none;
    padding: 0;
    margin: 30px auto;
}

.song-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: white;
    margin-bottom: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.song-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.song-item.active {
    background-color: rgba(30, 144, 255, 0.3);
}

.song-play-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    color: #1DB954;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Remix versions */
.remix-versions {
    margin: 30px 0;
    text-align: center;
    color: #cccccc;
}

.remix-versions div {
    margin: 10px 0;
    font-size: 16px;
}

/* Biography section */
.biography-section {
    margin: 40px auto 30px auto;
    max-width: 600px;
    padding: 25px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

.biography-title {
    font-size: 24px;
    color: white;
    margin-bottom: 20px;
    text-align: center;
}

.biography-text {
    color: #cccccc;
    line-height: 1.8;
    text-align: justify;
}

.biography-text p {
    margin-bottom: 15px;
}

.samples-description {
    text-align: center;
    color: #0096FF;
    font-size: 14px;
    margin: 20px 0;
}

.song-list {
    max-width: 600px;
    margin: 20px auto;
}

.song-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.song-title {
    color: white;
    font-size: 14px;
    flex: 1;
    min-width: 150px;
}

.song-player {
    flex: 2;
}

.song-player audio {
    width: 100%;
    height: 32px;
}

/* Style the audio player controls */
audio::-webkit-media-controls-panel {
    background-color: rgba(30, 144, 255, 0.1);
}

audio::-webkit-media-controls-play-button,
audio::-webkit-media-controls-current-time-display,
audio::-webkit-media-controls-time-remaining-display {
    color: #0096FF;
}

.service-button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.copyright {
    text-align: center;
    color: #666;
    font-size: 13px;
}

/* Media Queries */
@media (max-width: 768px) {
    .artist-name {
        font-size: 24px;
    }
    
    .artist-song {
        font-size: 20px;
    }
    
    .artist-image {
        max-width: 500px;
    }
    
    .profile-width {
        max-width: 500px;
    }
}

@media (max-width: 480px) {
    .artist-name {
        font-size: 29px;
    }
    
    .artist-song {
        font-size: 18px;
    }
    
    .artist-image {
        max-width: 300px;
    }

    .streaming-services {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0;
    }
    
    .service-button {
        width: 42%;
        margin: 5px 0;
        text-align: center;
    }
}