/* Styles spécifiques au profil */

.skill-progress {
    width: 100%;
    height: 8px;
    background: rgba(155, 109, 255, 0.1);
    border-radius: 4px;
    margin-top: 0.5rem;
    position: relative;
    overflow: hidden;
}

.skill-progress .progress-bar {
    position: absolute;
    height: 100%;
    background: linear-gradient(90deg, #9b6dff, #ff69b4);
    border-radius: 4px;
    transition: width 1s ease;
}

.experience-timeline {
    margin: 2rem 0;
    padding: 0;
    list-style: none;
    position: relative;
}

.experience-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, #9b6dff, #ff69b4);
    border-radius: 4px;
    opacity: 0.3;
}

.timeline-item {
    margin-left: 2rem;
    padding: 2rem;
    position: relative;
    background: rgba(155, 109, 255, 0.05);
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid rgba(155, 109, 255, 0.2);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateX(5px);
    background: rgba(155, 109, 255, 0.1);
    border-color: #9b6dff;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 2.5rem;
    width: 1rem;
    height: 1rem;
    background: #9b6dff;
    border-radius: 50%;
    border: 3px solid rgba(26, 26, 26, 0.9);
    box-shadow: 0 0 0 5px rgba(155, 109, 255, 0.2);
    transition: all 0.3s ease;
}

.timeline-item:hover::before {
    transform: scale(1.2);
    box-shadow: 0 0 0 8px rgba(155, 109, 255, 0.2);
}

.timeline-date {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #9b6dff, #ff69b4);
    color: #fff;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(155, 109, 255, 0.2);
}

.timeline-item h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.timeline-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.certification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.certification-card {
    background: rgba(155, 109, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(155, 109, 255, 0.2);
    transition: all 0.3s ease;
}

.certification-card:hover {
    transform: translateY(-5px);
    border-color: #9b6dff;
}

.certification-card i {
    font-size: 2rem;
    color: #9b6dff;
    margin-bottom: 1rem;
}

.certification-card h4 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.certification-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.skill-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.skill-category-card {
    background: rgba(155, 109, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(155, 109, 255, 0.2);
}

.skill-category-card h4 {
    color: #9b6dff;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.skill-list li {
    margin-bottom: 1rem;
}

.skill-name {
    display: flex;
    justify-content: space-between;
    color: #fff;
}

.skill-level {
    color: #9b6dff;
}

.interests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.interest-item {
    background: rgba(155, 109, 255, 0.1);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    border: 1px solid rgba(155, 109, 255, 0.2);
    transition: all 0.3s ease;
}

.interest-item:hover {
    transform: translateY(-3px);
    border-color: #9b6dff;
}

.interest-item i {
    font-size: 1.5rem;
    color: #9b6dff;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .skill-category-grid {
        grid-template-columns: 1fr;
    }
    
    .certification-grid {
        grid-template-columns: 1fr;
    }
    
    .interests-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}