/* About Page Specific Styles */

/* Profile Section */
.profile-avatar {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Experience Timeline */
.experience-timeline {
    position: relative;
}

.experience-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #3b82f6, #8b5cf6);
    border-radius: 2px;
}

/* Skill Bars Animation */
.skill-bar {
    transition: width 1.5s ease-in-out;
}

.skill-bar-container {
    position: relative;
    overflow: hidden;
}

.skill-bar-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Values Cards */
.values-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.values-card:hover::before {
    left: 100%;
}

.values-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Social Links */
.social-link {
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    color: #3b82f6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .sticky {
        position: static;
    }
}

@media (max-width: 768px) {
    .profile-section {
        text-align: center;
    }
    
    .experience-timeline {
        padding-left: 1rem;
    }
    
    .skill-bars {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .social-links,
    .values-section {
        display: none;
    }
    
    .profile-avatar {
        animation: none;
    }
} 