/* =========================================== */
/* ARTISTS SYSTEM STYLES */
/* =========================================== */

/* Single Artist Page */
.janna-artist-single .artist-hero {
    position: relative;
    margin-bottom: 40px;
}

.janna-artist-single .artist-cover {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.janna-artist-single .cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.janna-artist-single .artist-profile {
    position: relative;
    max-width: 1200px;
    margin: -100px auto 0;
    padding: 0 20px;
    display: flex;
    align-items: flex-end;
    gap: 40px;
}

.janna-artist-single .profile-image {
    flex-shrink: 0;
}

.janna-artist-single .avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 5px solid white;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.janna-artist-single .avatar-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.janna-artist-single .avatar-placeholder .initial {
    font-size: 80px;
    font-weight: bold;
    color: white;
}

.janna-artist-single .artist-info {
    flex: 1;
    padding-bottom: 30px;
}

.janna-artist-single .artist-name {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin: 0 0 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.janna-artist-single .artist-real-name {
    font-size: 20px;
    color: #ddd;
    margin: 0 0 15px;
}

.janna-artist-single .artist-location {
    font-size: 16px;
    color: #ccc;
    margin: 0 0 20px;
}

.janna-artist-single .artist-location i {
    margin-right: 8px;
}

.janna-artist-single .artist-social {
    display: flex;
    gap: 15px;
}

.janna-artist-single .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.janna-artist-single .social-link:hover {
    transform: translateY(-3px);
    background: #2196F3;
}

.janna-artist-single .artist-content {
    padding: 40px 0;
    background: #f9f9f9;
}

.janna-artist-single .artist-biography {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.janna-artist-single .artist-biography h2 {
    margin-top: 0;
    color: #333;
    border-bottom: 2px solid #2196F3;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.janna-artist-single .artist-details {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.janna-artist-single .artist-details h3 {
    margin-top: 0;
    color: #333;
    border-bottom: 2px solid #4CAF50;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.janna-artist-single .artist-meta {
    list-style: none;
    padding: 0;
    margin: 0;
}

.janna-artist-single .artist-meta li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}

.janna-artist-single .artist-meta li:last-child {
    border-bottom: none;
}

.janna-artist-single .artist-meta strong {
    color: #666;
}

.janna-artist-single .artist-meta span {
    color: #333;
    font-weight: 500;
}

/* Songs Grid */
.janna-artist-single .artist-songs {
    margin-top: 50px;
}

.janna-artist-single .artist-songs h2 {
    color: #333;
    margin-bottom: 30px;
    font-size: 32px;
}

.janna-artist-single .songs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.janna-artist-single .song-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.janna-artist-single .song-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.janna-artist-single .song-image {
    height: 200px;
    overflow: hidden;
}

.janna-artist-single .song-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.janna-artist-single .song-card:hover .song-thumb {
    transform: scale(1.05);
}

.janna-artist-single .song-thumb-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.janna-artist-single .song-thumb-placeholder i {
    font-size: 60px;
    color: white;
}

.janna-artist-single .song-info {
    padding: 20px;
}

.janna-artist-single .song-title {
    margin: 0 0 10px;
    font-size: 20px;
}

.janna-artist-single .song-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.janna-artist-single .song-title a:hover {
    color: #2196F3;
}

.janna-artist-single .song-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.janna-artist-single .song-actions {
    display: flex;
    gap: 10px;
}

.janna-artist-single .play-song-btn,
.janna-artist-single .download-song-btn {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.janna-artist-single .play-song-btn {
    background: #2196F3;
    color: white;
}

.janna-artist-single .play-song-btn:hover {
    background: #1976D2;
    transform: translateY(-2px);
}

.janna-artist-single .download-song-btn {
    background: #4CAF50;
    color: white;
}

.janna-artist-single .download-song-btn:hover {
    background: #2E7D32;
    transform: translateY(-2px);
}

.janna-artist-single .no-songs {
    text-align: center;
    padding: 50px;
    background: white;
    border-radius: 10px;
    color: #666;
    font-size: 18px;
}

/* Related Artists */
.janna-artist-single .related-artists {
    margin-top: 60px;
}

.janna-artist-single .related-artists h2 {
    color: #333;
    margin-bottom: 30px;
    font-size: 32px;
}

.janna-artist-single .artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.janna-artist-single .related-artist-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.janna-artist-single .related-artist-card:hover {
    transform: translateY(-5px);
}

.janna-artist-single .related-artist-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.janna-artist-single .artist-thumb {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.janna-artist-single .artist-thumb-placeholder {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.janna-artist-single .artist-thumb-placeholder .initial {
    font-size: 40px;
    font-weight: bold;
    color: white;
}

.janna-artist-single .related-artist-card h4 {
    margin: 0;
    padding: 15px;
    text-align: center;
    color: #333;
    font-size: 16px;
}

/* Artists Archive */
.janna-artists-archive .archive-header {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: white;
    margin-bottom: 40px;
}

.janna-artists-archive .archive-title {
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 10px;
}

.janna-artists-archive .archive-description {
    font-size: 18px;
    opacity: 0.9;
    margin: 0;
}

.janna-artists-archive .artists-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

.janna-artists-archive .artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.janna-artists-archive .artist-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.janna-artists-archive .artist-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.janna-artists-archive .artist-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.janna-artists-archive .artist-image {
    height: 200px;
    overflow: hidden;
}

.janna-artists-archive .artist-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.janna-artists-archive .artist-card:hover .artist-thumb {
    transform: scale(1.05);
}

.janna-artists-archive .artist-thumb-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.janna-artists-archive .artist-thumb-placeholder .initial {
    font-size: 60px;
    font-weight: bold;
    color: white;
}

.janna-artists-archive .artist-card-info {
    padding: 20px;
}

.janna-artists-archive .artist-name {
    margin: 0 0 10px;
    font-size: 20px;
    color: #333;
}

.janna-artists-archive .artist-location {
    margin: 0 0 10px;
    color: #666;
    font-size: 14px;
}

.janna-artists-archive .artist-location i {
    margin-right: 5px;
}

.janna-artists-archive .artist-songs-count {
    margin: 0;
    color: #2196F3;
    font-size: 14px;
    font-weight: 600;
}

.janna-artists-archive .artist-songs-count i {
    margin-right: 5px;
}

.janna-artists-archive .no-artists {
    text-align: center;
    padding: 60px;
    background: white;
    border-radius: 10px;
    color: #666;
    font-size: 18px;
}

.janna-artists-archive .pagination {
    margin-top: 40px;
    text-align: center;
}

.janna-artists-archive .page-numbers {
    display: inline-flex;
    gap: 5px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.janna-artists-archive .page-numbers li a,
.janna-artists-archive .page-numbers li span {
    display: inline-block;
    padding: 10px 15px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.janna-artists-archive .page-numbers li a:hover,
.janna-artists-archive .page-numbers li .current {
    background: #2196F3;
    color: white;
    border-color: #2196F3;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .janna-artist-single .artist-profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: -50px;
        gap: 20px;
    }
    
    .janna-artist-single .avatar,
    .janna-artist-single .avatar-placeholder {
        width: 150px;
        height: 150px;
    }
    
    .janna-artist-single .artist-name {
        font-size: 32px;
    }
    
    .janna-artist-single .songs-grid {
        grid-template-columns: 1fr;
    }
    
    .janna-artists-archive .artists-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .janna-artists-archive .artists-grid {
        grid-template-columns: 1fr;
    }
    
    .janna-artist-single .artist-cover {
        height: 200px;
    }
}