/* ==========================================
   ARTIST PROFILE PAGE STYLES
   ========================================== */

.page-hero {
    height: 40vh;
    background-color: #000000;
    background-image: linear-gradient(
        135deg,
        #000000 0%,
        #1A1A1A 50%,
        #536878 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 70px;
}

.page-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.page-hero-content p {
    color: #CCCCCC;
    font-size: 1.1rem;
}

/* ==========================================
   SHARED STYLES
   ========================================== */
.section-label {
    color: #536878;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.divider {
    width: 60px;
    height: 3px;
    background-color: #536878;
    margin: 1rem 0 2rem 0;
}

.divider.center {
    margin: 1rem auto 2rem auto;
}

/* ==========================================
   ARTIST INTRO SECTION
   ========================================== */
.artist-intro-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.artist-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.artist-photo-container {
    position: relative;
}

.artist-photo {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.2);
    display: block;
}

.photo-caption {
    background-color: #000000;
    padding: 1rem 1.5rem;
    border-radius: 0 0 8px 8px;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.photo-caption span:first-child {
    color: #536878;
    font-weight: 700;
    font-size: 1rem;
}

.photo-caption span:last-child {
    color: #CCCCCC;
    font-size: 0.85rem;
}

.artist-quick-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #000000;
    font-weight: 700;
    line-height: 1.2;
}

.artist-tagline {
    font-size: 1.1rem;
    color: #888888;
    font-style: italic;
    line-height: 1.8;
    border-left: 3px solid #536878;
    padding-left: 1rem;
    margin-bottom: 2rem;
}

.artist-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #444444;
    font-size: 0.95rem;
}

.detail-item i {
    color: #536878;
    width: 20px;
    text-align: center;
}

/* Social buttons */
.artist-social {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-btn.instagram {
    background-color: #E1306C;
    color: #ffffff;
}

.social-btn.facebook {
    background-color: #1877F2;
    color: #ffffff;
}

.social-btn.twitter {
    background-color: #1DA1F2;
    color: #ffffff;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* ==========================================
   BIO SECTION
   ========================================== */
.bio-section {
    padding: 5rem 0;
    background-color: #F2F2F2;
}

.bio-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.bio-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #000000;
    font-weight: 700;
}

.bio-text p {
    color: #444444;
    line-height: 1.9;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.bio-side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bio-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-left: 4px solid #536878;
}

.bio-card h3 {
    color: #000000;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bio-card h3 i {
    color: #536878;
}

.bio-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bio-card ul li {
    color: #666666;
    font-size: 0.9rem;
    padding-left: 1rem;
    position: relative;
}

.bio-card ul li::before {
    content: '•';
    color: #536878;
    position: absolute;
    left: 0;
}

/* ==========================================
   PROCESS SECTION
   ========================================== */
.process-section {
    padding: 5rem 0;
    background-color: #1A1A1A;
    text-align: center;
}

.process-section .section-header h2 {
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.process-card {
    background-color: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(83,104,120,0.3);
    transition: all 0.3s ease;
}

.process-card:hover {
    background-color: rgba(83,104,120,0.1);
    transform: translateY(-5px);
    border-color: #536878;
}

.process-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(83,104,120,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 1.8rem;
    color: #536878;
    border: 2px solid rgba(83,104,120,0.4);
}

.process-card h3 {
    color: #536878;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-card p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    font-size: 0.9rem;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    padding: 5rem 0;
    background-color: #536878;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
}

.cta-section .btn-primary:hover {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.cta-section .btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.cta-section .btn-secondary:hover {
    background-color: #ffffff;
    color: #536878;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero-content h1 {
        font-size: 2.5rem;
    }

    .artist-intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .bio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .artist-quick-info h2 {
        font-size: 2rem;
    }
}
