/* ==========================================================================
   Artists Page Styles
   ========================================================================== */

.page-artists {
    background-color: var(--color-cream);
}

/* --------------------------------------------------------------------------
   Artists Header
   -------------------------------------------------------------------------- */

.artists-header {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px var(--space-xl) var(--space-4xl);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    overflow: hidden;
}

.artists-header-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.floating-art {
    position: absolute;
    inset: 0;
}

.float-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: floatShape 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--color-cream);
    top: -50px;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--color-gold);
    bottom: 10%;
    left: 5%;
    animation-delay: -5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--color-cream);
    top: 40%;
    left: 15%;
    animation-delay: -10s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    background: var(--color-rose);
    bottom: 30%;
    right: 20%;
    animation-delay: -15s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -30px) rotate(5deg);
    }
    50% {
        transform: translate(-10px, 20px) rotate(-5deg);
    }
    75% {
        transform: translate(30px, 10px) rotate(3deg);
    }
}

.artists-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
}

.page-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 248, 231, 0.7);
    margin-bottom: var(--space-xl);
}

.eyebrow-line-alt {
    width: 40px;
    height: 1px;
    background: rgba(255, 248, 231, 0.4);
}

.artists-page-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--color-cream);
    margin-bottom: var(--space-xl);
}

.title-highlight {
    opacity: 0.7;
    font-style: italic;
}

.artists-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 248, 231, 0.8);
    max-width: 550px;
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Artists Grid
   -------------------------------------------------------------------------- */

.artists-main {
    padding: var(--space-5xl) var(--space-xl);
}

.artists-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-5xl);
}

/* Artist Profile */
.artist-profile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.artist-profile.reverse {
    direction: rtl;
}

.artist-profile.reverse > * {
    direction: ltr;
}

/* Artist Visual */
.artist-visual {
    position: relative;
}

.artist-portrait {
    position: relative;
    z-index: 2;
    margin-bottom: var(--space-xl);
}

.portrait-placeholder {
    width: 200px;
    height: 200px;
    border-radius: var(--radius-full);
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--color-cream);
    box-shadow: var(--shadow-lg);
    margin: 0 auto;
}

.portrait-placeholder.accent-blue {
    background: linear-gradient(135deg, #4A6FA5 0%, #2C4A7C 100%);
}

.portrait-placeholder.accent-rose {
    background: linear-gradient(135deg, #D4A5A5 0%, #B88888 100%);
}

.portrait-placeholder.accent-gold {
    background: linear-gradient(135deg, #C9A962 0%, #A88A4A 100%);
}

.artist-works-preview {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

.work-preview {
    width: 80px;
    height: 110px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-base);
}

.work-preview:hover {
    transform: translateY(-4px) rotate(-2deg);
    box-shadow: var(--shadow-md);
}

.preview-label {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Mini artwork styles (reuse from shop.css patterns) */
.preview-label.style-1 {
    background: linear-gradient(180deg, #F5F0E6 0%, #EDE5D5 100%);
}

.preview-label .artwork-shape.shape-1 {
    width: 30px;
    height: 30px;
    background: var(--color-primary);
    position: absolute;
    top: 20%;
    left: 15%;
    border-radius: 50%;
}

.preview-label .artwork-shape.shape-2 {
    width: 20px;
    height: 20px;
    background: var(--color-gold);
    position: absolute;
    bottom: 25%;
    right: 20%;
    border-radius: 50%;
}

.preview-label.style-2 {
    background: linear-gradient(180deg, #E8F0F5 0%, #D5E5ED 100%);
}

.preview-label .artwork-circle.circle-1 {
    width: 30px;
    height: 30px;
    border: 2px solid var(--color-primary);
    position: absolute;
    top: 15%;
    left: 20%;
    border-radius: 50%;
}

.preview-label .artwork-circle.circle-2 {
    width: 20px;
    height: 20px;
    background: var(--color-gold);
    position: absolute;
    top: 40%;
    right: 25%;
    border-radius: 50%;
}

.preview-label.style-3 {
    background: linear-gradient(180deg, #FFF0F0 0%, #F5E0E0 100%);
}

.preview-label .artwork-wave {
    position: absolute;
    width: 120%;
    height: 15px;
    left: -10%;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--color-primary);
}

.preview-label .artwork-wave.wave-1 {
    top: 30%;
}

.preview-label .artwork-wave.wave-2 {
    top: 50%;
    border-top-color: var(--color-rose);
}

.preview-label.style-4 {
    background: linear-gradient(180deg, #F0E8E8 0%, #E5DADA 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-label .artwork-dots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    padding: 15px;
}

.preview-label .artwork-dots span {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
}

.preview-label.style-5 {
    background: linear-gradient(180deg, #E8F0E8 0%, #D5E5D5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-label .artwork-spiral {
    width: 35px;
    height: 35px;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    position: relative;
}

.preview-label .artwork-spiral::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;
    background: var(--color-primary);
    border-radius: 50%;
}

.preview-label.style-6 {
    background: linear-gradient(180deg, #F5E8E8 0%, #EBD8D8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.preview-label .artwork-stripes {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.preview-label .artwork-stripes span {
    height: 3px;
    border-radius: 2px;
    background: var(--color-primary);
}

.preview-label .artwork-stripes span:nth-child(2) {
    background: var(--color-gold);
    width: 80%;
}

.preview-label .artwork-stripes span:nth-child(3) {
    background: var(--color-rose);
    width: 90%;
}

.preview-label.style-7 {
    background: linear-gradient(180deg, #F5F0F5 0%, #E8E0E8 100%);
}

.preview-label .artwork-abstract .abs-1 {
    position: absolute;
    width: 25px;
    height: 25px;
    background: var(--color-rose);
    border-radius: 50% 50% 50% 0;
    top: 25%;
    left: 25%;
    transform: rotate(-45deg);
}

.preview-label.style-8 {
    background: linear-gradient(180deg, #E8F0F5 0%, #D5E0E8 100%);
}

.preview-label .artwork-geo .geo-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 25px solid var(--color-primary);
    top: 25%;
    left: 30%;
}

.preview-label.style-9 {
    background: linear-gradient(180deg, #FFFBF0 0%, #F5EFE0 100%);
}

.preview-label .artwork-bubbles {
    position: relative;
    width: 100%;
    height: 100%;
}

.preview-label .artwork-bubbles span {
    position: absolute;
    border: 2px solid var(--color-gold);
    border-radius: 50%;
}

.preview-label .artwork-bubbles span:nth-child(1) {
    width: 15px;
    height: 15px;
    bottom: 25%;
    left: 25%;
}

.preview-label .artwork-bubbles span:nth-child(2) {
    width: 10px;
    height: 10px;
    bottom: 40%;
    left: 50%;
}

.preview-label .artwork-bubbles span:nth-child(3) {
    width: 12px;
    height: 12px;
    bottom: 30%;
    right: 25%;
}

.preview-label.style-10 {
    background: linear-gradient(180deg, #F0E5E5 0%, #E5D8D8 100%);
}

.preview-label .artwork-flow .flow-1 {
    position: absolute;
    width: 70%;
    height: 20px;
    background: linear-gradient(90deg, var(--color-primary) 0%, transparent 100%);
    border-radius: 10px 0 0 10px;
    top: 40%;
    left: 0;
}

/* Artist Content */
.artist-content {
    max-width: 480px;
}

.artist-header {
    display: flex;
    align-items: baseline;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.artist-name {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 400;
    color: var(--color-dark);
}

.artist-stat {
    font-size: 0.85rem;
    color: var(--color-gray);
    padding: var(--space-xs) var(--space-sm);
    background: var(--color-cream-dark);
    border-radius: var(--radius-full);
}

.artist-bio {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-dark-soft);
    margin-bottom: var(--space-lg);
}

.artist-quote {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-primary);
    padding-left: var(--space-lg);
    border-left: 3px solid var(--color-primary);
    margin-bottom: var(--space-lg);
}

.artist-style {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.style-tag {
    padding: var(--space-xs) var(--space-md);
    background: var(--color-white);
    border: 1px solid var(--color-gray-light);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    color: var(--color-dark);
}

.artist-cta {
    display: inline-flex;
}

/* --------------------------------------------------------------------------
   Join Section
   -------------------------------------------------------------------------- */

.join-section {
    background: var(--color-white);
    padding: var(--space-5xl) var(--space-xl);
}

.join-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.join-content {
    max-width: 520px;
}

.join-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: var(--space-lg);
    line-height: 1.25;
}

.join-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-dark-soft);
    margin-bottom: var(--space-xl);
}

.join-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.join-shapes {
    position: relative;
    width: 300px;
    height: 300px;
}

.join-shape {
    position: absolute;
    border-radius: 50%;
    animation: joinFloat 6s ease-in-out infinite;
}

.js-1 {
    width: 150px;
    height: 150px;
    background: var(--color-primary);
    opacity: 0.8;
    top: 0;
    left: 20%;
    animation-delay: 0s;
}

.js-2 {
    width: 100px;
    height: 100px;
    background: var(--color-gold);
    opacity: 0.7;
    bottom: 20%;
    left: 0;
    animation-delay: -2s;
}

.js-3 {
    width: 80px;
    height: 80px;
    background: var(--color-rose);
    opacity: 0.6;
    bottom: 10%;
    right: 20%;
    animation-delay: -4s;
}

@keyframes joinFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1200px) {
    .artist-profile {
        gap: var(--space-2xl);
    }
}

@media (max-width: 992px) {
    .artist-profile,
    .artist-profile.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        text-align: center;
    }

    .artist-content {
        max-width: 100%;
    }

    .artist-header {
        justify-content: center;
    }

    .artist-quote {
        border-left: none;
        border-top: 3px solid var(--color-primary);
        padding-left: 0;
        padding-top: var(--space-lg);
        text-align: center;
    }

    .artist-style {
        justify-content: center;
    }

    .artist-cta {
        justify-content: center;
    }

    .join-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .join-content {
        max-width: 100%;
    }

    .join-visual {
        order: -1;
        margin-bottom: var(--space-xl);
    }
}

@media (max-width: 768px) {
    .artists-header {
        min-height: auto;
        padding: 100px var(--space-md) var(--space-2xl);
    }

    .artists-page-title {
        font-size: 2rem;
    }

    .artists-intro {
        font-size: 1rem;
    }

    .float-shape {
        display: none;
    }

    .artists-main {
        padding: var(--space-2xl) var(--space-md);
    }

    .artists-container {
        gap: var(--space-3xl);
    }

    .portrait-placeholder {
        width: 120px;
        height: 120px;
        font-size: 2rem;
    }

    .artist-works-preview {
        gap: var(--space-sm);
    }

    .work-preview {
        width: 55px;
        height: 75px;
    }

    .artist-name {
        font-size: 1.5rem;
    }

    .artist-bio {
        font-size: 0.95rem;
    }

    .join-section {
        padding: var(--space-2xl) var(--space-md);
    }

    .join-shapes {
        width: 180px;
        height: 180px;
    }

    .js-1 {
        width: 80px;
        height: 80px;
    }

    .js-2 {
        width: 60px;
        height: 60px;
    }

    .js-3 {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .artist-works-preview {
        flex-wrap: wrap;
        justify-content: center;
    }
}
