/* ================================
   STYLES PAGE À PROPOS
   ================================ */

/* --- TIMELINE --- */
.timeline-item {
    position: relative;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #14b8a6, #06b6d4);
    box-shadow: 0 0 10px rgba(20, 184, 166, 0.5);
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 5.5px;
    top: 1.5rem;
    width: 1px;
    height: calc(100% + 1rem);
    background: linear-gradient(to bottom, #14b8a6, transparent);
}

.timeline-item:last-child::after {
    display: none;
}

/* --- SKILLS --- */
.skill-bar {
    background: rgba(71, 85, 105, 0.3);
    border-radius: 9999px;
    overflow: hidden;
    height: 8px;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #14b8a6, #06b6d4);
    border-radius: 9999px;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 0;
}

.skill-item:hover .skill-progress {
    filter: brightness(1.2);
}

/* --- TECH CARDS --- */
.tech-card {
    transition: all 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(20, 184, 166, 0.3);
}

/* --- STAT CARDS --- */
.stat-card {
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #14b8a6, transparent);
    animation: scan 3s infinite;
}

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