/* =============================================
   Artist Page Styles
   ============================================= */

.artist-page-hero {
    position: relative;
    height: 35vh;
    background: #0d0d0d;
    overflow: hidden;
}

.artist-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: url('Octan Cover.png') center/cover no-repeat;
    opacity: 0.07;
}

/* Main layout */
.artist-main {
    background: #0d0d0d;
    min-height: 60vh;
    padding: 3rem 2rem 6rem;
}

.artist-profile {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 4rem;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

/* Left column: image + tags */
.artist-image-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.artist-image-wrapper {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(108, 204, 255, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(108, 204, 255, 0.08);
    background: #1a1a1a;
    aspect-ratio: 1 / 1;
}

.artist-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.artist-portrait:hover {
    transform: scale(1.03);
}

.artist-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
}

.tag {
    background: rgba(108, 204, 255, 0.1);
    border: 1px solid rgba(108, 204, 255, 0.3);
    color: #6cf;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 500;
}

/* Right column: name + bio */
.artist-bio-col {
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.artist-name-block {
    border-bottom: 1px solid rgba(108, 204, 255, 0.15);
    padding-bottom: 1.5rem;
    text-align: left;
}

.artist-label-line {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #6cf;
    margin-bottom: 0.5rem;
}

.artist-name {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.1;
    color: #f0f0f0;
}

.artist-bio-text {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.artist-bio-text p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #aaa;
    text-align: left;
    max-width: none;
    margin: 0;
}

/* Back link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #6cf;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
    transition: gap 0.2s ease, opacity 0.2s ease;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.back-link:hover {
    opacity: 1;
    gap: 0.7rem;
}

/* Make artist cards on index.html clickable */
.artist-card {
    cursor: pointer;
    text-decoration: none;
    display: block;
    color: inherit;
}

.artist-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.artist-card-link .artist-card {
    cursor: pointer;
}

.artist-card-link:hover .artist-card {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(108, 204, 255, 0.2);
}

/* =============================================
   Responsive
   ============================================= */

@media (max-width: 900px) {
    .artist-profile {
        grid-template-columns: 1fr;
        margin-top: 0;
        gap: 2.5rem;
    }

    .artist-image-col {
        max-width: 320px;
        margin: 0 auto;
        width: 100%;
    }

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

@media (max-width: 600px) {
    .artist-main {
        padding: 2rem 1rem 4rem;
    }

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

    .artist-bio-text p {
        font-size: 0.97rem;
    }
}