/* Hero Section spécifique au portfolio */
.portfolio-hero {
    height: 50vh;
    display: flex;
    align-items: center;
    background-color: #230FA6;
    color: white;
    position: relative;
    overflow: hidden;
    
}

.portfolio-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    z-index: 1;
}

.portfolio-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.portfolio-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e6e6e6;
}

/* Compétences */
.competences-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.competence {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.competence-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.competence-color {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 1rem;
}

.optimiser-color {
    background-color: #F26A4B;
}

.administrer-color {
    background-color: #F2C641;
}

.gerer-color {
    background-color: #8AC44B;
}

.competence-title {
    font-size: 1.8rem;
    margin: 0;
}

.apprentissages {
    margin-bottom: 2rem;
    padding-left: 1rem;
    border-left: 3px solid #007bff;
}

.apprentissage-item {
    margin-bottom: 1.5rem;
}

.apprentissage-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #007bff;
}

.composantes {
    margin-bottom: 2rem;
}

.composante-item {
    background-color: #f5f5f5;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.composante-code {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.evidence-container {
    margin-top: 3rem;
}

.evidence-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 0.5rem;
}

.evidence {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.evidence h4 {
    color: #007bff;
    margin-bottom: 0.5rem;
}

.evidence p {
    margin-bottom: 1rem;
}

.evidence-details {
    border-left: 3px solid #ddd;
    padding-left: 1rem;
    margin-top: 1rem;
}

.evidence-details p {
    text-align: justify;
    justify-content: none;
}