/* ========================================
   About Page - Simple & Cute
   ======================================== */

/* ========== Hero ========== */
.about-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 2rem;
    overflow: hidden;
}

.floating-avatar {
    font-size: 5rem;
    margin-bottom: 1rem;
    animation: float-bounce 3s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(255, 107, 157, 0.5));
}

@keyframes float-bounce {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

.glitch-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    position: relative;
    color: var(--text-primary);
    text-shadow: 0 0 20px var(--glow-pink);
}

.glitch-title::before,
.glitch-title::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-title::before {
    animation: glitch-1 2.5s infinite linear alternate-reverse;
    color: var(--accent-pink);
    z-index: -1;
}

.glitch-title::after {
    animation: glitch-2 3s infinite linear alternate-reverse;
    color: var(--accent-purple);
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
    20% { clip-path: inset(20% 0 60% 0); transform: translate(-2px, 0); }
    40% { clip-path: inset(60% 0 20% 0); transform: translate(2px, 0); }
    60% { clip-path: inset(40% 0 40% 0); transform: translate(-2px, 0); }
    80% { clip-path: inset(80% 0 0 0); transform: translate(2px, 0); }
}

@keyframes glitch-2 {
    0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
    20% { clip-path: inset(60% 0 20% 0); transform: translate(2px, 0); }
    40% { clip-path: inset(20% 0 60% 0); transform: translate(-2px, 0); }
    60% { clip-path: inset(40% 0 40% 0); transform: translate(2px, 0); }
    80% { clip-path: inset(0 0 80% 0); transform: translate(-2px, 0); }
}

.hero-sub {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* ========== Glow Orbs ========== */
.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-pink);
    top: 10%;
    right: -10%;
    animation: orb-float 15s ease-in-out infinite;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-purple);
    bottom: 20%;
    left: -5%;
    animation: orb-float 18s ease-in-out infinite reverse;
}

@keyframes orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 30px) scale(1.1); }
}

/* ========== Intro Card ========== */
.intro-section {
    position: relative;
    z-index: 1;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.intro-card {
    position: relative;
    background: linear-gradient(145deg, rgba(25, 25, 50, 0.9), rgba(15, 15, 35, 0.95));
    border: 1px solid rgba(255, 107, 157, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    overflow: hidden;
    transition: all 0.4s ease;
}

.intro-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 157, 0.4);
    box-shadow: 0 25px 60px rgba(255, 107, 157, 0.15);
}

.card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.intro-card:hover .card-shine {
    opacity: 1;
}

.intro-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.1); filter: brightness(1.2); }
}

.intro-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff, var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 2;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--accent-pink);
    font-weight: 600;
}

.intro-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.tag {
    padding: 0.5rem 1rem;
    background: rgba(255, 107, 157, 0.1);
    border: 1px solid rgba(255, 107, 157, 0.2);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(255, 107, 157, 0.2);
    border-color: var(--accent-pink);
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* ========== Contact Section ========== */
.contact-section {
    position: relative;
    z-index: 1;
    padding: 4rem 2rem;
    text-align: center;
}

.section-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--text-secondary);
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    min-width: 100px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    color: inherit;
}

.contact-item:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: var(--accent-pink);
    background: rgba(255, 107, 157, 0.05);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.1);
}

.contact-emoji {
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.contact-item:hover .contact-emoji {
    transform: scale(1.2) rotate(10deg);
}

.contact-name {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.contact-item:hover .contact-name {
    color: var(--text-primary);
}

/* ========== Footer ========== */
.simple-footer {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 3rem 2rem;
    border-top: 1px solid var(--border-color);
}

.simple-footer p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-small {
    font-size: 0.8rem !important;
    opacity: 0.7;
    margin-top: 0.5rem;
}

/* ========== Active Nav ========== */
.nav-links a.active {
    color: var(--accent-pink);
}

/* ========== Responsive ========== */
@media (max-width: 480px) {
    .floating-avatar {
        font-size: 4rem;
    }
    
    .intro-card {
        padding: 1.5rem;
    }
    
    .contact-links {
        gap: 1rem;
    }
    
    .contact-item {
        padding: 1rem 1.5rem;
        min-width: 80px;
    }
}
