/* Artist Page Styles */
.artist-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .artist-container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
    .artist-container { padding: 0 2rem; }
}

/* Hero Section */
.artist-hero {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(to bottom right, #111827, #1f2937, #111827);
}

@media (min-width: 768px) {
    .artist-hero { padding: 6rem 0; }
}

.artist-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .artist-hero-grid { grid-template-columns: 1fr 1fr; }
}

.artist-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.artist-badge svg {
    width: 1.25rem;
    height: 1.25rem;
}

.artist-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(to right, #60a5fa, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 768px) {
    .artist-title { font-size: 3.75rem; }
}

.artist-lead {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #d1d5db;
    line-height: 1.75;
}

@media (min-width: 768px) {
    .artist-lead { font-size: 1.25rem; }
}

.artist-desc {
    margin-bottom: 2rem;
    color: #9ca3af;
    line-height: 1.75;
}

.artist-cta-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .artist-cta-group { flex-direction: row; }
}

.artist-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(to right, #3b82f6, #06b6d4);
    color: white;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.artist-btn-primary:hover {
    transform: scale(1.05);
}

.artist-btn-primary svg {
    width: 1.25rem;
    height: 1.25rem;
}

.artist-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    border: 2px solid #60a5fa;
    color: #60a5fa;
    text-decoration: none;
    transition: all 0.3s ease;
}

.artist-btn-secondary:hover {
    background: #60a5fa;
    color: #000;
}

.artist-btn-secondary svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Creative Fields Box */
.creative-fields-box {
    display: none;
    padding: 2rem;
    background: #1f2937;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

@media (min-width: 1024px) {
    .creative-fields-box { display: block; }
}

.creative-fields-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.creative-field-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.creative-field-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.creative-field-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.creative-field-icon.blue {
    background: rgba(59, 130, 246, 0.2);
}

.creative-field-icon.blue svg {
    color: #3b82f6;
}

.creative-field-icon.purple {
    background: rgba(168, 85, 247, 0.2);
}

.creative-field-icon.purple svg {
    color: #a855f7;
}

.creative-field-icon.green {
    background: rgba(34, 197, 94, 0.2);
}

.creative-field-icon.green svg {
    color: #22c55e;
}

.creative-field-content .title {
    font-weight: 700;
}

.creative-field-content .desc {
    font-size: 0.875rem;
    color: #d1d5db;
}

/* Statistics Section */
.artist-stats {
    padding: 4rem 0;
    border-top: 1px solid #374151;
    border-bottom: 1px solid #374151;
    background: rgba(31, 41, 59, 0.5);
}

.artist-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .artist-stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-number {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .stat-number { font-size: 2.25rem; }
}

.stat-number.blue { color: #3b82f6; }
.stat-number.purple { color: #a855f7; }
.stat-number.green { color: #22c55e; }
.stat-number.cyan { color: #06b6d4; }

.stat-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #d1d5db;
}

/* About Section */
.artist-about {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .artist-about { padding: 6rem 0; }
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .about-grid { grid-template-columns: 1fr 1fr; }
}

.about-card {
    padding: 2rem;
    background: #1f2937;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.about-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.about-card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-card-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.about-card-icon.blue {
    background: rgba(59, 130, 246, 0.2);
}

.about-card-icon.blue svg {
    color: #3b82f6;
}

.about-card-icon.purple {
    background: rgba(168, 85, 247, 0.2);
}

.about-card-icon.purple svg {
    color: #a855f7;
}

.about-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
}

.about-card p.lead {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.about-card p {
    color: #9ca3af;
    line-height: 1.75;
}

/* Creative Fields Grid */
.creative-fields-section {
    padding: 4rem 0;
    background: rgba(31, 41, 59, 0.3);
}

@media (min-width: 768px) {
    .creative-fields-section { padding: 6rem 0; }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .section-header h2 { font-size: 2.25rem; }
}

.section-header p {
    font-size: 1.125rem;
    color: #d1d5db;
    max-width: 48rem;
    margin: 0 auto;
}

.fields-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .fields-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .fields-grid { grid-template-columns: repeat(3, 1fr); }
}

.field-card {
    padding: 2rem;
    background: #1f2937;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.field-card:hover {
    transform: scale(1.05);
}

.field-card:last-child {
    grid-column: 1 / -1;
}

@media (min-width: 1024px) {
    .field-card:last-child {
        grid-column: auto;
    }
}

.field-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.field-icon svg {
    width: 2rem;
    height: 2rem;
}

.field-icon.blue {
    background: rgba(59, 130, 246, 0.2);
}

.field-icon.blue svg {
    color: #3b82f6;
}

.field-icon.purple {
    background: rgba(168, 85, 247, 0.2);
}

.field-icon.purple svg {
    color: #a855f7;
}

.field-icon.green {
    background: rgba(34, 197, 94, 0.2);
}

.field-icon.green svg {
    color: #22c55e;
}

.field-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.field-card p {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.field-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.field-tag {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.field-tag.blue {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.field-tag.purple {
    background: rgba(168, 85, 247, 0.2);
    color: #a855f7;
}

.field-tag.green {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

/* Social & Portfolio Section */
.social-portfolio-section {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .social-portfolio-section { padding: 6rem 0; }
}

.social-portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .social-portfolio-grid { grid-template-columns: 1fr 1fr; }
}

.social-box {
    padding: 2rem;
    background: #1f2937;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.social-box h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #374151;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: scale(1.05);
    background: #4b5563;
}

.social-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.social-icon.instagram {
    background: linear-gradient(to bottom right, #ec4899, #f97316);
}

.social-icon.facebook {
    background: #1877f2;
}

.social-icon.youtube {
    background: #ef4444;
}

.social-content .title {
    font-weight: 700;
    color: #fff;
}

.social-content .handle {
    font-size: 0.875rem;
    color: #d1d5db;
}

.social-link svg.external {
    width: 1rem;
    height: 1rem;
    margin-left: auto;
    color: #9ca3af;
}

.portfolio-box {
    padding: 2rem;
    background: linear-gradient(to bottom right, rgba(30, 58, 138, 0.5), rgba(88, 28, 135, 0.5));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 1rem;
}

.portfolio-box h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.portfolio-box p {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    line-height: 1.75;
}

.portfolio-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(to right, #3b82f6, #a855f7);
    color: white;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.portfolio-btn:hover {
    transform: scale(1.05);
}

.portfolio-btn svg {
    width: 1.25rem;
    height: 1.25rem;
}
