/* css/artist-hero-animation.css */

/* This will ensure the animation container doesn't disrupt the page flow */
.artist-main-container {
    position: relative;
    width: 100%;
}

.artist-hero {
    height: 100vh;
    width: 100%;
    position: sticky;
    top: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    /* We will control scaling with JS */
}

.artist-name-hero {
    color: #fff;
    font-size: 6rem;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.7);
    z-index: 2;
    opacity: 1;
    transform: translateY(0);
    /* Let JS handle transitions for smoothness */
}

.artist-content-below {
    position: relative;
    z-index: 3;
    background-color: #111; /* Match the body background */
    /* Padding is no longer needed as the hero shrinks */
}

.scroll-reveal-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* State when the content becomes visible */
.scroll-reveal-section.is-visible {
    opacity: 1;
    transform: translateY(0);
} 