/* About Section - Interactive Timeline */
.about {
    background-color: var(--space-dark);
    position: relative;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    height: 500px;
    border: 1px solid var(--glass-border);
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image.animate {
    opacity: 1;
    transform: translateX(0);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(90deg, var(--electric-orange), #f59e0b);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 20px var(--electric-orange-glow);
    animation: pulse 2s infinite;
    font-family: 'Orbitron', sans-serif;
}

.about-content {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-content.animate {
    opacity: 1;
    transform: translateX(0);
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--starlight);
    text-shadow: 0 0 10px var(--cyber-aqua-glow);
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--cosmic-text);
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.8;
}

.timeline {
    margin-top: 2rem;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10px;
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, var(--neon-violet), var(--cyber-aqua));
}

.timeline-item {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.timeline-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--cyber-aqua);
    border: 4px solid var(--space-dark);
    box-shadow: 0 0 0 2px var(--cyber-aqua), 0 0 10px var(--cyber-aqua-glow);
}

.timeline-year {
    font-weight: 700;
    color: var(--cyber-aqua);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 8px var(--cyber-aqua-glow);
    font-family: 'Orbitron', sans-serif;
}

.timeline-content {
    font-size: 0.95rem;
    color: var(--cosmic-text);
    opacity: 0.8;
}

/* Animation keyframes for badge pulse */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 var(--electric-orange-glow);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(249, 115, 22, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
    }
}

/* Responsive styles */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        height: 400px;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-image {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .about-image {
        height: 300px;
    }
    
    .timeline-item {
        padding-left: 2rem;
    }
}
