
.hero-header {
    height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
    background-color: transparent;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://studio014.com/media/3popgprt/web-background.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
    will-change: transform;
}

.hero-container {
    text-align: center;
    position: relative;
    z-index: 2;
    margin: 45vh 0;

    animation: parallax;
    animation-timing-function: linear;
    animation-fill-mode: both;
    animation-timeline: view();
    animation-range: 0% 100%;
}

.hero-row-top {
    display: flex;
    justify-content: center;
    align-items: baseline; 
    gap: 1rem;
    opacity: 0;
    animation: slide-down 1.2s ease-out forwards;
    animation-delay: 0.2s; /* Slight delay for professional feel */
}

.hero-row-bottom {
    display: flex;
    justify-content: center;
    align-items: flex-start; 
    gap: 1rem;
    opacity: 0;
    animation: slide-up 1.2s ease-out forwards;
    animation-delay: 0.2s; /* Staggered entry creates depth */
}

.brand-highlight {
    font-family: 'Raleway', sans-serif;
    font-size: min(10vw, 4rem); 
    font-weight: 900;
    color: var(--color-seafoam);
    line-height: 1;
    text-shadow: 0 0 30px var(--color-neon-glow);
}

.hero-text {
    font-family: 'Raleway', sans-serif;
    font-size: min(5vw, 2rem); 
    font-weight: 300;
    color: #a0a0a0;
    line-height: 1;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px; /* Distance from the bottom of the hero */
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 40px;
    border: 2px solid white; /* Matches your studio aesthetic */
    border-radius: 12px; /* Creates the pill shape */
    display: flex;
    justify-content: center;
    z-index: 10;
    animation: fade-out-on-scroll linear both;
    animation-timeline: scroll();
    animation-range: 0px 200px;
}

.scroll-dot {
    width: 6px;
    height: 6px;
    background-color: white;
    border-radius: 50%;
    margin-top: auto; /* Starts at the bottom */
    margin-bottom: 5px;
    animation: scroll-flick 2s infinite ease-in-out;
}

@media (max-width: 1024px) {

    .hero-container {
        padding: 5vh 0;
        margin: 35vh 8vw;
    }
}