/**
 * Artist Info Panel Styles
 * Only styles the artist information panel, not the items display
 * 
 * @since 1.0.0
 */

/* Artist Header Styles */
.artist-header {
    background: white;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.artist-name {
    font-size: 2.5em;
    font-weight: 700;
    color: #333;
    margin: 20px 0 10px 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.artist-realname {
    font-size: 1.2em;
    color: #666;
    font-style: italic;
    margin: 0 0 20px 0;
}

.artist-profile {
    max-width: 800px;
    margin: 20px auto;
    text-align: left;
    line-height: 1.6;
    color: #555;
    font-size: 1.05em;
}

/* Artist Images */
.artist-images {
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.artist-images img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artist-images img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* Artist Aliases */
.artist-aliases {
    margin-top: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #007cba;
    text-align: left;
}

.artist-aliases h3 {
    margin: 0 0 10px 0;
    font-size: 1.1em;
    color: #333;
    font-weight: 600;
}

.aliases-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.alias-link {
    display: inline-block;
    padding: 4px 12px;
    background-color: #007cba;
    color: white;
    text-decoration: none;
    border-radius: 15px;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
}

.alias-link:hover {
    background-color: #005a87;
    color: white;
    text-decoration: none;
}

.alias-name {
    display: inline-block;
    padding: 4px 12px;
    background-color: #6c757d;
    color: white;
    border-radius: 15px;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .artist-header {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .artist-name {
        font-size: 2em;
    }
    
    .artist-realname {
        font-size: 1.1em;
    }
    
    .artist-profile {
        font-size: 1em;
    }
    
    .artist-images {
        gap: 10px;
    }
    
    .artist-images img {
        width: 120px;
        height: 120px;
    }
    
    .artist-aliases {
        margin-top: 15px;
        padding: 12px;
    }
    
    .aliases-list {
        gap: 6px;
    }
    
    .alias-link, .alias-name {
        font-size: 0.85em;
        padding: 3px 10px;
    }
}

@media (max-width: 480px) {
    .artist-header {
        padding: 15px;
    }
    
    .artist-name {
        font-size: 1.8em;
    }
    
    .artist-images {
        gap: 8px;
    }
    
    .artist-images img {
        width: 100px;
        height: 100px;
    }
}

/* Streaming Platform Players */
.artist-streaming-players {
    margin: 30px 0;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.artist-streaming-players h3 {
    margin: 0 0 20px 0;
    font-size: 1.4em;
    color: #333;
    font-weight: 600;
    text-align: center;
    border-bottom: 2px solid #007cba;
    padding-bottom: 10px;
}

.artist-streaming-players h3 i {
    margin-right: 8px;
    color: #007cba;
}

.streaming-players-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.streaming-player {
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.streaming-player:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.streaming-player h4 {
    margin: 0 0 15px 0;
    font-size: 1.1em;
    font-weight: 600;
    text-align: center;
    padding: 8px 0;
    border-radius: 6px;
}

.streaming-player h4 i {
    margin-right: 8px;
}

/* Platform-specific styling */
.spotify-player h4 {
    background: linear-gradient(135deg, #1db954, #1ed760);
    color: white;
}

.apple-player h4 {
    background: linear-gradient(135deg, #000000, #333333);
    color: white;
}

.tidal-player h4 {
    background: linear-gradient(135deg, #000000, #1a1a1a);
    color: white;
}

.deezer-player h4 {
    background: linear-gradient(135deg, #ff6600, #ff8533);
    color: white;
}

/* Tidal link styling */
.tidal-embed {
    text-align: center;
    padding: 30px 15px;
}

.tidal-link {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #000000, #1a1a1a);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.2);
}

.tidal-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #333333);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.tidal-link i {
    margin-right: 8px;
}

/* Responsive adjustments for streaming players */
@media (max-width: 768px) {
    .artist-streaming-players {
        margin: 20px 0;
        padding: 20px;
    }
    
    .streaming-players-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .streaming-player {
        padding: 15px;
    }
    
    .artist-streaming-players h3 {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .artist-streaming-players {
        margin: 15px 0;
        padding: 15px;
    }
    
    .streaming-player {
        padding: 12px;
    }
    
    .streaming-player h4 {
        font-size: 1em;
    }
    
    .tidal-embed {
        padding: 30px 15px;
    }
    
    .tidal-link {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}