/* ========================================
   ABOUT SECTION STYLES
   Hero section with scroll-morph animation
   ======================================== */

.about-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--space-20);
    padding-bottom: var(--space-20);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-12);
    align-items: center;
}

/* ========== PORTRAIT CONTAINER ========== */
.portrait-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    justify-self: center;
    will-change: auto;
}

.portrait-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
    /* Removed transition - image stays still */
}

/* Neon glow overlay */
.portrait-glow {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, var(--color-accent-neon) 0%, transparent 70%);
    opacity: 0.15;
    pointer-events: none;
    mix-blend-mode: screen;
}

/* Small floating label (hidden initially, will be revealed by animation) */
.left-name {
    position: absolute;
    top: 10%;
    left: -15%;
    font-size: var(--text-2xl);
    font-weight: var(--font-black);
    letter-spacing: -0.02em;
    color: var(--color-text-primary);
    opacity: 0;
    visibility: hidden;  /* Completely hidden */
    pointer-events: none;
    white-space: nowrap;
    z-index: 10;
}

/* ========== TEXT CONTENT ========== */
.text-content {
    position: relative;
}

.text1 {
    font-size: var(--text-xl);
    font-weight: var(--font-medium);
    color: var(--color-text-muted);
    margin-bottom: var(--space-2);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.text2 {
    font-size: var(--text-9xl);
    font-weight: var(--font-black);
    line-height: 0.9;
    letter-spacing: -0.04em;
    margin-bottom: var(--space-4);
    color: var(--color-text-primary);
    transform-origin: top left;
    will-change: transform;
}

.text3 {
    font-size: var(--text-2xl);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-5);
    color: var(--color-text-secondary);
    opacity: 0;
}

.role-highlight {
    color: var(--color-accent);
}

.text4 {
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--color-text-secondary);
    max-width: 600px;
    opacity: 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .portrait-container {
        max-width: 400px;
    }
    
    .text2 {
        font-size: var(--text-8xl);
    }
    
    .left-name {
        left: -10%;
        font-size: var(--text-xl);
    }
}

@media (max-width: 768px) {
    .about-section {
        padding-top: var(--space-12);
        padding-bottom: var(--space-12);
        min-height: auto;
    }
    
    .portrait-container {
        max-width: 350px;
    }
    
    .text2 {
        font-size: var(--text-7xl);
    }
    
    .text3 {
        font-size: var(--text-xl);
    }
    
    .text4 {
        font-size: var(--text-base);
    }
    
    .left-name {
        top: 5%;
        left: -8%;
        font-size: var(--text-lg);
    }
}

@media (max-width: 480px) {
    .portrait-container {
        max-width: 300px;
    }
    
    .text2 {
        font-size: var(--text-6xl);
    }
    
    .text1 {
        font-size: var(--text-base);
    }
    
    .left-name {
        left: -5%;
        font-size: var(--text-base);
    }
}
