/* ==========================================================================
   ASTERISM COMMUNICATIONS - About Page Styles
   ========================================================================== */

/* =========================================================================
   ABOUT HERO - Particle Animation
   ========================================================================= */
.about-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--color-black);
    overflow: hidden;
}

#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.about-hero__content {
    position: relative;
    z-index: 10;
    text-align: center;
    pointer-events: none;
}

.about-hero__text {
    font-family: var(--font-family-serif);
    font-size: clamp(3rem, 7vw, 6rem);
    color: var(--color-white);
    margin-bottom: var(--spacing-4);
    margin-top: 350px;
    line-height: var(--line-height-snug);
    min-height: 1.2em;
    opacity: 0;
    animation: aboutFadeIn 1s ease 0.5s forwards;
}

.about-hero__subtitle {
    font-size: var(--font-size-xl);
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-family-serif);
    font-style: italic;
    opacity: 0;
    animation: aboutFadeIn 1s ease 1s forwards;
}

@keyframes aboutFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* State Indicators */
.state-indicators {
    position: absolute;
    right: var(--spacing-12);
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

.state-dot {
    width: 12px;
    height: 12px;
    border-radius: var(--border-radius-full);
    background: rgba(255, 255, 255, 0.3);
    margin: var(--spacing-4) 0;
    cursor: pointer;
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.state-dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.state-dot.active {
    background: var(--color-accent-red);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Scroll Arrow */
.scroll-arrow {
    position: absolute;
    bottom: var(--spacing-12);
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-white);
    font-size: var(--font-size-xl);
    animation: aboutBounce 2s infinite;
    cursor: pointer;
    z-index: 10;
}

@keyframes aboutBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* =========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================= */
@media (max-width: 968px) {
    .state-indicators {
        right: var(--spacing-4);
    }
    
    .about-hero__text {
        margin-top: 250px;
    }
}

@media (max-width: 600px) {
    .about-hero__text {
        margin-top: 200px;
        font-size: clamp(2rem, 10vw, 4rem);
    }
}
