/**
 * About Page Styles
 *
 * @package Velarium
 */

/* About Header */
.about-header {
    padding: 8rem 2rem 4rem;
    border-bottom: 1px solid var(--border);
}

.about-header-inner {
    max-width: 800px;
    margin: 0 auto;
}

.about-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.about-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.about-intro {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* About Content */
.about-content-wrapper {
    padding: 4rem 2rem;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 4rem;
}

.about-section:last-child {
    margin-bottom: 0;
}

.about-section h2 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.about-section p {
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

.about-section p:last-child {
    margin-bottom: 0;
}

/* Status Card */
.status-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 1.5rem;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.status-indicator::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.status-card p:last-child {
    margin-bottom: 0;
}

/* People Grid */
.people-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 1.5rem;
}

.person-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.75rem;
    transition: background 0.2s ease;
}

.person-card:hover {
    background: var(--bg-tertiary);
}

.person-name {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.person-bio {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.person-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.person-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.person-link:hover {
    color: var(--accent);
}

.person-link svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* Contact Section */
.contact-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 4rem 2rem;
}

.contact-inner {
    max-width: 800px;
    margin: 0 auto;
}

.contact-section h2 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.contact-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1rem;
    color: var(--accent);
    text-decoration: none;
    padding: 1rem 1.5rem;
    background: var(--accent-dim);
    border: 1px solid var(--border-accent);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.contact-email:hover {
    background: rgba(74, 158, 255, 0.2);
    border-color: var(--accent);
}

.contact-email svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* Responsive */
@media (max-width: 768px) {
    .about-header {
        padding: 7rem 1.5rem 3rem;
    }

    .about-content-wrapper {
        padding: 3rem 1.5rem;
    }

    .people-grid {
        grid-template-columns: 1fr;
    }

    .contact-section {
        padding: 3rem 1.5rem;
    }
}
