/* Scoped styles for the Hero Section */
/* Isolation: All styles prefixed with #hero-container or specific classes */

#hero-container {
    position: relative;
    width: 100%;
    height: 80vh; /* Prominent height */
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #111111; /* Always dark as per strict rule */
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem;
    pointer-events: none; /* Let clicks pass through to canvas if needed, though mostly visual */
}

/* Brand Name */
.hero-brand-name {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #ffffff; /* Locked white */
    margin: 0;
    opacity: 0; /* Initial state for reveal */
    transform: translateY(10px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out; /* Adjusted for timing: Start 0.6 + 0.4 = 1.0s */
    pointer-events: auto;
}

.hero-brand-name.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Tagline */
.hero-tagline {
    font-size: 1.125rem;
    font-weight: 300;
    color: #e0e0e0; /* Slightly muted white */
    margin-top: 1rem;
    opacity: 0; /* Initial state for reveal */
    transform: translateY(10px);
    transition: opacity 1s ease-out, transform 1s ease-out;
    /* No delay here, handled by JS timeout */
    pointer-events: auto;
}

.hero-tagline.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    #hero-container {
        height: 70vh;
    }

    .hero-brand-name {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1rem;
        line-height: 1.5;
    }
}
