/**
 * Artists Archive Page Styles
 * Design for /music/artists/ category page
 */

/* Archive Page Container */
.artists-archive-page {
    min-height: 100vh;
    padding: 60px 20px;
}

.artists-container {
    max-width: 940px;
    margin: 0 auto;
}

/* Header Section */
.artists-header {
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
}

.artists-main-title {
    font-size: 3.5em;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0 0 20px 0;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.artists-subtitle {
    font-family: 'Brush Script MT', cursive, 'Dancing Script', cursive;
    font-size: 3em;
    font-weight: 400;
    font-style: italic;
    margin: 0 0 30px 0;
    text-transform: lowercase;
}

.artists-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1em;
    line-height: 1.8;
    color: #fff;
}

/* Artists Grid */
.artists-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* Artist Card */
.artist-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.artist-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.artist-card-link {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

/* Artist Card Image */
.artist-card-image {
    height: 200px;
    width: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
}

.artist-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.artist-card:hover .artist-card-image img {
    transform: scale(1.05);
}

.artist-card-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.artist-card-placeholder svg {
    opacity: 0.8;
}

/* Artist Card Content */
.artist-card-content {
    padding: 12px 20px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Artist Card Name */
.artist-card-name {
    color: #000;
    font-size: 1.2em;
    font-weight: 700;
    margin: 0 0 4px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

/* Social Icons */
.artist-card-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    /* flex-wrap: wrap; */
    margin-top: 0;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f5f5f5;
    color: #333;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
}

.social-icon svg {
    width: 15px;
    height: 15px;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-icon.twitter:hover {
    background: #1da1f2;
    color: #fff;
    border-color: #1da1f2;
}

.social-icon.facebook:hover {
    background: #1877f2;
    color: #fff;
    border-color: #1877f2;
}

.social-icon.skype:hover {
    background: #00aff0;
    color: #fff;
    border-color: #00aff0;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    border-color: #bc1888;
}

.social-icon.linkedin:hover {
    background: #0077b5;
    color: #fff;
    border-color: #0077b5;
}

.social-icon.website:hover {
    background: #333;
    color: #fff;
    border-color: #333;
}

/* Pagination */
.artists-pagination {
    text-align: center;
    margin-top: 50px;
}

.artists-pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.artists-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    background: #fff;
    color: #333;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.artists-pagination .page-numbers:hover,
.artists-pagination .page-numbers.current {
    background: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    color: #fff;
}

.artists-pagination .page-numbers.current {
    pointer-events: none;
}

/* No Artists Message */
.no-artists {
    text-align: center;
    font-size: 1.3em;
    color: #666;
    padding: 60px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .artists-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .artists-archive-page {
        padding: 40px 15px;
    }

    .artists-main-title {
        font-size: 2em;
        margin-bottom: 15px;
    }

    .artists-subtitle {
        font-size: 2em;
        margin-bottom: 20px;
    }

    .artists-description {
        font-size: 1em;
    }

    .artists-header {
        margin-bottom: 40px;
    }

    .artists-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .artist-card-name {
        font-size: 1.1em;
        margin: 0 0 4px 0;
    }

    .artist-card-content {
        padding: 10px 16px 14px;
        gap: 4px;
    }

    .social-icon {
        width: 34px;
        height: 34px;
    }

    .social-icon svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .artists-main-title {
        font-size: 1.5em;
    }

    .artists-subtitle {
        font-size: 1.5em;
    }

    .artist-card-name {
        font-size: 1em;
        margin: 0 0 4px 0;
    }

    .artist-card-content {
        padding: 10px 14px 14px;
        gap: 4px;
    }

    .artist-card-social {
        gap: 6px;
    }

    .social-icon {
        width: 32px;
        height: 32px;
    }

    .social-icon svg {
        width: 15px;
        height: 15px;
    }
}
