/* Artists Page CSS */

/* Logo Section */
.logo-section {
    z-index: 100;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.logo-section .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.page-logo img {
    height: 48px;
    filter: brightness(0) invert(1);
}

.page-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    background: linear-gradient(135deg, var(--text-primary), var(--accent-red));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Artists Hero Section */
.artists-hero {
    min-height: 40vh;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(20, 20, 20, 0.98) 50%, 
        rgba(0, 0, 0, 0.95) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 140px 0 60px;
    display:none;
}

.artists-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 0, 64, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.artists-hero .hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.artists-hero p {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* Artists Filters Section */
.artists-filters {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0;
    position: sticky;
    top: 80px;
    z-index: 10;
}

.filters-container {
    display: grid;
    grid-template-columns: auto auto 1fr;
    gap: 40px;
    align-items: end;
}

.filter-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.filter-section label {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-btn,
.genre-btn {
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 25px;
    color: var(--text-secondary);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-btn:hover,
.genre-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 0, 64, 0.3);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.filter-btn.active,
.genre-btn.active {
    background: var(--gradient-primary);
    border-color: var(--accent-red);
    color: white;
    box-shadow: 0 5px 20px rgba(255, 0, 64, 0.3);
}

.search-section {
    justify-self: end;
}

.search-input {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input svg {
    position: absolute;
    left: 16px;
    color: var(--text-muted);
    z-index: 2;
}

.search-input input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 25px;
    padding: 12px 20px 12px 48px;
    color: var(--text-primary);
    font-size: 1rem;
    width: 300px;
    transition: all 0.3s ease;
}

    .search-input input:focus {
        outline: none;
        background: rgba(255, 255, 255, 0.12);
        border-color: var(--accent-red);
        box-shadow: var(--shadow-glass);
    }

.search-input input::placeholder {
    color: var(--text-muted);
}

/* Artists Grid Section */
.artists-grid-section {
    padding: 80px 0;
    min-height: 60vh;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.artist-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.artist-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 0, 64, 0.3);
}

.artist-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.artist-card:hover .artist-image img {
    transform: scale(1.05);
}

.artist-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.artist-status {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gradient-primary);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.artist-status.available {
    background: linear-gradient(135deg, #00ff88, #00cc66);
}

.artist-status.upcoming {
    background: linear-gradient(135deg, #ffaa00, #ff8800);
}

.artist-content {
    padding: 24px;
}

.artist-category {
    display: inline-block;
    background: rgba(255, 0, 64, 0.2);
    color: var(--accent-red);
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.artist-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.artist-genre {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 16px;
}

.artist-bio {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.artist-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.artist-followers {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.artist-followers i {
    color: var(--accent-red);
}

.artist-events {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.artist-events i {
    color: var(--accent-red);
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-link {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
}

.social-link.spotify:hover {
    background: #1DB954;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link.twitter:hover {
    background: #1DA1F2;
}

/* Empty State */
.artists-empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-secondary);
}

.artists-empty i {
    font-size: 4rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.artists-empty h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .filters-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .search-section {
        justify-self: start;
    }
    
    .search-input input {
        width: 100%;
        max-width: 400px;
    }
    
    .artists-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .logo-section .container {
        gap: 16px;
    }
    
    .page-logo img {
        height: 40px;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
    
    .artists-hero {
        padding: 120px 0 40px;
        min-height: 30vh;
    }
    
    .artists-hero p {
        font-size: 1.3rem;
    }
    
    .artists-filters {
        position: static;
        padding: 24px 0;
        background-color: unset;
    }
    
    .filter-buttons {
        gap: 8px;
    }
    
    .filter-btn,
    .genre-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .search-input input {
        width: 100%;
    }
    
    .artists-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .artist-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .artist-image {
        height: 200px;
    }
    
    .artist-content {
        padding: 20px;
    }
    
    .artist-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .social-links {
        align-self: flex-end;
    }
}

/* Light Theme */
[data-theme="light"] .logo-section {
    background: var(--primary-bg);
    border-bottom: 1px solid var(--glass-border);
}

[data-theme="light"] .page-logo img {
    filter: brightness(0) invert(0.2);
}

[data-theme="light"] .artists-hero {
    background: var(--secondary-bg);
}

[data-theme="light"] .artists-filters {
    background: var(--primary-bg);
    border-bottom: 1px solid var(--glass-border);
}

[data-theme="light"] .filter-btn,
[data-theme="light"] .genre-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

[data-theme="light"] .filter-btn.active,
[data-theme="light"] .genre-btn.active {
    background: var(--gradient-primary);
}

[data-theme="light"] .search-input input{
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

[data-theme="light"] .artist-card {
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
}

[data-theme="light"] .artist-stats {
    border-top: 1px solid var(--glass-border);
}

[data-theme="light"] .social-link {
    background: var(--glass-bg);
}

/* Light Theme Hover Effects */
[data-theme="light"] .search-input:focus {
    background: var(--card-bg);
    border-color: var(--accent-secondary);
    box-shadow: 0 0 20px var(--accent-secondary-glow);
}

[data-theme="light"] .artist-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--accent-secondary-glow);
    border-color: var(--accent-secondary);
}

[data-theme="light"] .artist-card:hover .artist-image img {
    transform: scale(1.1);
}

[data-theme="light"] .filter-btn:hover,
[data-theme="light"] .genre-btn:hover {
    background: var(--card-bg);
    border-color: var(--accent-secondary);
    color: var(--accent-secondary);
    transform: translateY(-2px);
}

[data-theme="light"] .filter-btn.active,
[data-theme="light"] .genre-btn.active {
    background: var(--gradient-secondary);
    border-color: var(--accent-secondary);
    color: var(--accent-white);
    box-shadow: var(--shadow-card);
}

[data-theme="light"] .filter-btn.active:hover,
[data-theme="light"] .genre-btn.active:hover {
    background: var(--gradient-primary);
    transform: translateY(-2px);
}

[data-theme="light"] .social-link:hover {
    background: var(--gradient-secondary);
    color: var(--accent-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--accent-secondary-glow);
}

[data-theme="light"] .social-link.spotify:hover {
    background: #1DB954;
}

[data-theme="light"] .social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

[data-theme="light"] .social-link.twitter:hover {
    background: #1DA1F2;
}

[data-theme="light"] .artist-genre {
    color: var(--accent-white);
}
[data-theme="light"] .artist-category {
    background: var(--gradient-primary);
    color: var(--accent-white);
}

[data-theme="light"] .artist-followers i,
[data-theme="light"] .artist-events i {
    color: var(--accent-secondary);
}

[data-theme="light"] .artist-status.available {
    background: var(--gradient-secondary);
    color: var(--accent-white);
}

[data-theme="light"] .artist-status.upcoming {
    background: var(--accent-secondary-glow);
    color: var(--accent-secondary);
}

[data-theme="light"] .artists-empty i {
    color: var(--accent-secondary);
} 