
:root {
    /* 🎨 Couleurs principales */
    --primary-color: #42cd17;
    --secondary-color: #77c4ef;
    --accent-color: #4856ea;

    /* 🎨 Couleurs du texte */
    --text-color: #333;
    --text-light: #f5f5f5;

    /* 🌗 Mode sombre */
    --bg-light: #ffffff;
    --bg-dark: #121212;
    --bg-card: #1e1e1e;

    /* ✍️ Polices */
    --font-titre:  'Climate Crisis', sans-serif;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
}

.a-propos-left{
    flex: 1; /* Prend 50% de l'espace */
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: left;
}

.a-propos-titre{
    font-family: var(--font-titre);
    font-size: 32px;
}

.a-propos-left h1, .parcours h1, .cta-title{
    font-size: 56px !important;
    font-family: var(--font-titre);
    text-align: left;
    color:var(--text-light);
}

.a-propos-left h3{
    font-family: var(--font-primary);
    font-size: 42px;
    color:var(--text-light);
    text-align: left;
}
.a-propos-left p, .cta-description{
    font-family: var(--font-primary);
    font-size: 18px;
    text-align: left;
    margin-top: 30px;
}

.a-propos-left a{
    color: var(--text-light);
    background-color: var(--primary-color) ;
    font-family: var(--font-titre);
    font-weight: 300;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 15px;
    font-size: 18px;
    max-width: 270px;
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
}

.parcours{
    display: flex;
    flex-direction: column;
    align-items: left !important;
}
.parcours h3{
    text-align: left;
}
.parcours p{
    font-size: 18px;
    font-family: var(--font-primary);
    text-align: left;
}
.competences-section{
    display: flex;
    flex-direction: column;
    align-items: left !important;
}
.competences-section h3{
    text-align: left;
}
.competences-section p{
    font-size: 18px;
    font-family: var(--font-primary);
    text-align: left;
}
.competences{
    margin-top: 10px;
}


.titre-competences{
    font-size: 42px !important;
    font-family: var(--font-titre);
    text-align: left;
}
.card {
    border: none;
    background-color: #f8f9fa;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-bottom: 20px; /* Réduit l'espace entre les cartes */
}

.card-body {
    padding: 15px; /* Un peu moins de padding pour un meilleur ajustement */
}

.card-title {
    font-size: 1rem; /* Réduit la taille du texte */
    margin-top: 10px;
    font-weight: bold;
}
.card-text{
    text-align: center !important;
}

.card i {
    color: #007bff; /* Couleur des icônes */
    margin-bottom: 10px;
    font-size: 2rem; /* Réduit la taille des icônes */
}

.cta-section {
    background-color: #f8f9fa;
    padding: 50px 0;
    margin-top: 50px;
    border-radius: 8px;
}

.cta-button {
    color: var(--text-light);
    background-color: var(--primary-color) ;
    font-family: var(--font-titre);
    font-weight: 300;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 15px;
    font-size: 18px;
    max-width: 270px;
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
}




@media (max-width: 768px) {
    .card {
        margin-bottom: 15px; /* Réduit encore l'espacement entre les cartes */
    }

    .card-title {
        font-size: 0.9rem; /* Réduit légèrement la taille du texte pour mobile */
    }

    .card i {
        font-size: 1.5rem; /* Icônes plus petites sur les petits écrans */
    }
    .parcours h1, .titre-competences, .cta-title{
        font-size: 30px !important;
    }
} 

.card i {
    color: #007bff; /* Couleur des icônes */
    margin-bottom: 10px;
}

.soft-skills-section {
    padding: 50px 0;
}


@media (max-width: 768px) {
    .card {
        margin-bottom: 20px;
    }
}


@media (max-width: 768px){
    .a-propos-left{
        width: 90%;
        padding: 0;
        margin: auto;
    }

    .a-propos-left h1{
        font-size: 30px !important;
    }
    .a-propos-left h3{
        font-size: 28px !important;
    }
}