/* Artist Page Header */
header {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.header-content {
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.5);
    z-index: 1;
}

.header-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(10,10,10,0.5), var(--background));
    z-index: 1;
}

h1 {
    font-family: 'Space Mono', monospace;
    font-size: 4rem;
    margin-bottom: 1rem;
    letter-spacing: -2px;
}

.header-subtitle {
    font-size: 1.2rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-top: 1rem;
}

/* Content Section */
.content-section {
    padding: 4rem 0;
    position: relative;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.artist-image {
    position: sticky;
    top: 2rem;
}

.artist-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.artist-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.artist-content p {
    margin-bottom: 1.5rem;
    color: #ccc;
}

.artist-content h2 {
    font-family: 'Space Mono', monospace;
    color: var(--accent);
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Artist Links */
.artist-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.artist-link {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent);
    color: var(--background);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.artist-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,255,149,0.2);
}

.artist-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.2),
        transparent
    );
    transition: 0.5s;
}

.artist-link:hover::before {
    left: 100%;
}

/* Back Link */
.back-link {
    position: fixed;
    top: 2rem;
    left: 2rem;
    z-index: 10;
    color: white;
    text-decoration: none;
    font-family: 'Space Mono', monospace;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--accent);
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .artist-image {
        position: relative;
        top: 0;
    }

    .artist-links {
        flex-direction: column;
    }

    .artist-link {
        text-align: center;
    }
}
