/* About Page Specific Styles */

/* Hero Section */
.about-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    overflow: hidden;
    padding: 8rem 0 4rem;
}

.quantum-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(139, 0, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 0, 255, 0.05) 0%, transparent 50%);
    animation: particleFloat 15s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

.about-title {
    text-align: center;
    position: relative;
    z-index: 1;
}

.small-title {
    display: block;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.main-title {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--cyan), var(--purple), var(--magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
}

.about-tagline {
    text-align: center;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1.3rem;
    color: var(--cyan);
    margin-top: 1rem;
    font-style: italic;
    opacity: 0.9;
}

/* Main Content */
.about-content {
    padding: 4rem 0 6rem;
    background: var(--bg-primary);
}

.content-block {
    margin-bottom: 6rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.content-block:nth-child(1) { animation-delay: 0.1s; }
.content-block:nth-child(2) { animation-delay: 0.2s; }
.content-block:nth-child(3) { animation-delay: 0.3s; }
.content-block:nth-child(4) { animation-delay: 0.4s; }
.content-block:nth-child(5) { animation-delay: 0.5s; }

.block-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.quantum-dot {
    width: 12px;
    height: 12px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--cyan);
    animation: pulse 2s ease infinite;
}

.block-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.block-content {
    padding-left: 2rem;
    border-left: 2px solid rgba(0, 255, 255, 0.2);
}

.block-content p {
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: 1.4rem !important;
    color: var(--cyan) !important;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 2rem !important;
}

/* Explorer Section */
.explorer-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    align-items: start;
}

.explorer-avatar {
    position: relative;
}

.avatar-visual {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(0, 255, 255, 0.3));
}

.orbit-particle {
    animation: orbitPulse 2s ease-in-out infinite;
}

.orbit-particle:nth-child(4) { animation-delay: 0s; }
.orbit-particle:nth-child(5) { animation-delay: 0.5s; }
.orbit-particle:nth-child(6) { animation-delay: 1s; }
.orbit-particle:nth-child(7) { animation-delay: 1.5s; }

@keyframes orbitPulse {
    0%, 100% {
        opacity: 1;
        r: 5;
    }
    50% {
        opacity: 0.5;
        r: 7;
    }
}

.explorer-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--cyan);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.role {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1rem;
    color: var(--purple);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem !important;
}

.bio {
    font-size: 1rem !important;
    line-height: 1.8 !important;
}

/* Focus Areas Grid */
.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding-left: 2rem;
}

.focus-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.focus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan), var(--purple), var(--magenta));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.focus-card:hover::before {
    transform: scaleX(1);
}

.focus-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.2);
}

.focus-icon {
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.3));
}

.focus-card h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: var(--cyan);
    margin-bottom: 1rem;
}

.focus-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Contact Section */
.contact-intro {
    font-size: 1.2rem !important;
    margin-bottom: 3rem !important;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-section h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: var(--purple);
    margin-bottom: 1.5rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.8rem 0;
    transition: all 0.3s ease;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.95rem;
}

.contact-link:hover {
    color: var(--cyan);
    transform: translateX(5px);
}

.contact-link svg {
    flex-shrink: 0;
    stroke: var(--cyan);
    transition: all 0.3s ease;
}

.contact-link:hover svg {
    stroke: var(--magenta);
    filter: drop-shadow(0 0 5px var(--magenta));
}

.social-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 500;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    border-color: var(--cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    transform: translateY(-3px);
}

.social-link svg {
    fill: var(--cyan);
    transition: all 0.3s ease;
}

.social-link:hover svg {
    fill: var(--magenta);
    filter: drop-shadow(0 0 8px var(--magenta));
}

/* Active nav link */
.nav-link.active {
    color: var(--cyan);
}

.nav-link.active::after {
    width: 100%;
}

/* Responsive */
@media (max-width: 1024px) {
    .explorer-content {
        grid-template-columns: 200px 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 50vh;
        padding: 6rem 0 3rem;
    }

    .main-title {
        font-size: 3.5rem;
    }

    .about-tagline {
        font-size: 1.1rem;
    }

    .block-header h2 {
        font-size: 2rem;
    }

    .block-content {
        padding-left: 1rem;
    }

    .explorer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .explorer-avatar {
        margin: 0 auto;
        max-width: 200px;
    }

    .focus-grid {
        grid-template-columns: 1fr;
        padding-left: 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .social-links {
        flex-direction: column;
    }

    .social-link {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2.5rem;
    }

    .about-tagline {
        font-size: 1rem;
    }

    .block-header h2 {
        font-size: 1.6rem;
    }

    .block-content p {
        font-size: 1rem;
    }

    .lead-text {
        font-size: 1.2rem !important;
    }

    .explorer-info h3 {
        font-size: 1.5rem;
    }

    .focus-card,
    .contact-section {
        padding: 1.5rem;
    }

    .social-link {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}
