/* Styles pour la section des compétences */
#resumeProficiencies {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.skill-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    height: 100%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.skill-main {
    text-align: center;
    margin-bottom: 20px;
}

.skill-main i {
    font-size: 3em;
    margin-bottom: 15px;
    background: linear-gradient(135deg, rgba(40, 169, 226, 0.60) 0%, rgba(40, 169, 226, 0.80) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease;
}

.skill-card:hover .skill-main i {
    transform: scale(1.1);
}

.skill-main h4 {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0;
}

.skill-details {
    padding-top: 15px;
}

.framework-item {
    background: #f8fafc;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.framework-name {
    display: block;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 10px;
}

.framework-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tool {
    background: white;
    color: #4a5568;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9em;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.tool:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
    transform: translateY(-2px);
}
