/* Artists Page Styles */

/* Hero Invitation Section */
.artist-hero {
    background: linear-gradient(135deg, var(--brand-aqua) 0%, var(--brand-navy) 100%);
    padding: 3.75rem 0;
    margin-bottom: 3.125rem;
}

.invitation-card {
    background: white;
    border-radius: 1.25rem;
    padding: 2.5rem;
    box-shadow: 0 1.25rem 3.75rem rgba(0, 0, 0, 0.3);
    max-width: 50rem;
    margin: 0 auto;
    text-align: center;
}

.invitation-card h1 {
    color: var(--brand-navy);
    font-weight: 700;
    margin-bottom: 1.25rem;
    font-size: 2.5rem;
}

.invitation-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.875rem;
}

.invitation-card .cta-btn {
    background: var(--color-navy) !important;
    color: white;
    padding: 0.9375rem 2.5rem;
    border-radius: 3.125rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 0.25rem 0.9375rem rgba(18, 52, 86, 0.4);
}

.invitation-card .cta-btn:hover {
    transform: translateY(-0.1875rem);
    box-shadow: 0 0.5rem 1.5625rem rgba(18, 52, 86, 0.6);
    color: white;
}

/* Benefits Section */
.benefits-section {
    margin-bottom: 3.75rem;
}

.benefits-section h2 {
    text-align: center;
    color: var(--brand-navy);
    font-weight: 700;
    margin-bottom: 2.5rem;
    font-size: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    background: white;
    border-radius: 0.75rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(0.625rem);
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    width: 3.75rem;
    height: 3.75rem;
    background: linear-gradient(135deg, var(--brand-aqua) 0%, #4db8b0 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    color: var(--brand-navy);
    font-weight: 600;
    margin-bottom: 0.3125rem;
}

.benefit-content p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
}

/* Sample Artist Cards */
.sample-artists-section {
    margin-bottom: 3.75rem;
}

.sample-artists-section h2 {
    text-align: center;
    color: var(--brand-navy);
    font-weight: 700;
    margin-bottom: 0.9375rem;
    font-size: 2rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.artist-sample-card {
    background: white;
    border-radius: 1rem;
    padding: 1.875rem;
    text-align: center;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 0.125rem solid transparent;
}

.artist-sample-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.15);
    border-color: var(--brand-aqua);
}

.artist-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, #f0fffe 0%, #e6f9f8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.25rem;
    border: 0.1875rem solid var(--brand-aqua);
}

.artist-sample-card h3 {
    color: var(--brand-navy);
    font-weight: 700;
    margin-bottom: 0.9375rem;
    font-size: 1.3rem;
}

.artist-sample-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.artist-sample-card .example-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--brand-aqua) 0%, #4db8b0 100%);
    color: white;
    padding: 0.3125rem 0.9375rem;
    border-radius: 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.625rem;
}

/* Registered Artists Section */
.registered-artists-section {
    margin-top: 5rem;
    padding-top: 2.5rem;
    border-top: 0.1875rem solid var(--border-light);
}

.registered-artists-section h2 {
    text-align: center;
    color: var(--brand-navy);
    font-weight: 700;
    margin-bottom: 2.5rem;
    font-size: 2rem;
}
