
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0d1117;
    color: #c9d1d9;
}
header {
    text-align: center;
    padding: 20px;
    background-color: #161b22;
    border-bottom: 1px solid #30363d;
}
header img {
    border-radius: 50%;
    width: 150px;
    margin-bottom: 10px;
}
header h1 {
    font-size: 2.5rem;
    margin: 0;
}
header p {
    font-size: 1.2rem;
    color: #8b949e;
}

header.social-links {
    display: flex;
    gap: 15px;
    background-color: #b4b2b2;
    
}

.social-links a img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
}

.social-links a img:hover {
    transform: scale(1.1);
}
.accordion-nav {
    position: relative;
    width: 100%;
    background-color: #0d1117;
}
.accordion-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    cursor: pointer;
    color: #fff;
    background-color: #0d1117;
    border: none;
    outline: none;
    font-size: 1.2em;
    font-weight: bold;
}
.accordion-toggle:hover {
    background-color: #555;
}
.accordion-content {
    display: none;
    flex-direction: column;
    background-color: #333;
}
.accordion-content a {
    color: #58a6ff;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 1em;
    border-top: 1px solid #555;
}
.accordion-content a:hover {
    background-color: #444;
}
.container {
    padding: 20px;
}
.repos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.repo {
    background-color: #161b22;
    padding: 15px;
    border: 1px solid #30363d;
    border-radius: 10px;
}
.repo h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #58a6ff;
}
.repo p {
    font-size: 0.9rem;
    color: #8b949e;
}
.footer {
    text-align: center;
    padding: 10px;
    margin-top: 20px;
    background-color: #161b22;
    color: #8b949e;
    font-size: 0.8rem;
}
a {
    color: #58a6ff;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
/* Section "À propos de moi" */
#about {
    margin: 40px auto; /* Centrer et espacer */
    max-width: 800px; /* Largeur max pour limiter l'espace */
    padding: 20px;
    text-align: center; /* Centrer le texte */
}

#about h2 {
    font-size: 2rem;
    color: white; /* Couleur du titre */
    margin-bottom: 20px; /* Espace sous le titre */
    font-weight: 700;
}
#about p {
    text-align: justify;
}

.about-cards {
    display: flex; /* Disposer les cartes en ligne */
    flex-wrap: wrap; /* Permettre le retour à la ligne si l'espace manque */
    gap: 20px; /* Espacement entre les cartes */
    justify-content: center; /* Centrer les cartes */
}

.about-card {
    background-color: #333; /* Fond sombre */
    color: white; /* Texte blanc */
    border: 1px solid #444; /* Bordure subtile */
    border-radius: 8px; /* Coins arrondis */
    padding: 20px; /* Espace interne */
    width: 100%; /* Largeur par défaut */
    max-width: 350px; /* Largeur max pour les cartes */
    text-align: left; /* Aligner le texte à gauche dans chaque carte */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Ombre légère */
    transition: transform 0.2s ease-in-out; /* Animation pour hover */
}

.about-card:hover {
    transform: translateY(-5px); /* Légère élévation au survol */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3); /* Accentuation de l'ombre */
}

.about-card h3 {
    font-size: 1.2rem;
    color: whitesmoke; /* Couleur des titres des cartes */
    margin-bottom: 10px;
}

.about-card p {
    font-size: 0.95rem;
    line-height: 1.5; /* Hauteur de ligne pour lisibilité */
    margin-bottom: 10px;
}

.about-card a {
    color: yellow; /* Lien en jaune */
    text-decoration: none; /* Pas de soulignement */
}

.about-card a:hover {
    text-decoration: underline; /* Soulignement au survol */
}

/*test*/
.timeline {
    position: relative;
    margin: 50px auto;
    padding: 20px 0;
    width: 90%;
    max-width: 800px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 5px;
    background-color: #00aaff; /* Line color */
    /* transform: translateX(-50%); */
}

.timeline-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    position: relative;
    padding-top: 100px; /* Adjust this value to match the height of your header */
}

/* .timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: #58a6ff;
} */

.timeline-item {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    /* margin: 30px 0; */
    opacity: 0; /* Start hidden */
    transform: translateY(50px); /* Start off-screen */
    transition: transform 0.5s ease, opacity 0.5s ease; 
    position: relative;
    margin: 20px 0;
    width: 500px;
    padding: 10px;
    
}

/* Content styling */
.timeline-item .content {
    background-color: #444;
    color: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Left-aligned items */
.timeline-item.left {
    right: 22%;
    text-align: justify;
}

.timeline-item.left .content {
    float: right;
    transform: translateX(-20px); /* Adjust to align content properly */
}

/* Right-aligned items */
.timeline-item.right {
    left: 50%;
    text-align: justify;
}

.timeline-item.right .content {
    float: left;
    transform: translateX(20px); /* Adjust to align content properly */
}


.timeline-item.visible {
    opacity: 1; /* Fully visible */
    transform: translateY(0); /* Back to normal position */
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px); /* Légère élévation au survol */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3); /* Accentuation de l'ombre */
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    /* background-color: #fff;
    border: 1px solid #ddd; */
    border-radius: 8px;
    padding: 20px;
    width: 500px;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    margin: 0 20px;
    /*transition: background-color 0.3s ease, box-shadow 0.3s ease; Smooth hover effect*/
    background-color: #333; /* Fond sombre */
    color: white; /* Texte blanc */
    border: 1px solid #444; /* Bordure subtile */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Ombre légère */
    transition: transform 0.2s ease-in-out; /* Animation pour hover */
    text-align: justify;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #58a6ff;
    text-align: center;
}

/* On peut aligner à droite et à gauche mais ça ne rend pas vraiment bien */
/* .timeline-item.right h3 {
    text-align: left;
}

.timeline-item.left h3 {
    text-align: right;
} */

.timeline-content p {
    font-size: 0.95rem;
    line-height: 1.5; /* Hauteur de ligne pour lisibilité */
    margin-bottom: 10px;
}
.timeline-content a {
    color: whitesmoke; /* Lien en jaune */
    text-decoration: none; /* Pas de soulignement */
}

.timeline-content a:hover {
    text-decoration: underline; /* Soulignement au survol */
}
.timeline-item::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 15px;
    background-color: #58a6ff;
    border: 2px solid #fff;
    border-radius: 50%;
    z-index: 1;
}


/* Fallback pour anciens navigateurs */
@supports not (transform: translateX(-50%)) {
    .timeline::before {
      display: none;
    }
    .timeline-item {
      width: 100%;
      left: 0;
    }
  }
/* Responsive styling for smaller screens */
@media (max-width: 780px) {
    .timeline-item {
        width: 100%;
        left: 0; 
        text-align: center;
        margin-bottom: 30px;
    }
    .timeline-item .content {
        float: none;
        transform: none;
    }

}

/* Test pour le bouton de traduction: */
/* Toggle switch styling */
.toggle-container {
    position: relative;
    display: inline-block;
    width: 70px;
    height: 35px;
    margin-bottom: 20px;
}

.toggle-input {
    display: none;
}

.toggle-label {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    width: 70px;
    height: 35px;
    background-color: #ccc;
    border-radius: 50px;
    transition: background-color 0.4s;
}

.toggle-label .toggle-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    color: white;
    z-index: 1;
    pointer-events: none;
    text-align: center;
    width: 100%;
    transition: opacity 0.4s;
}

.toggle-label .toggle-switch {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 31px;
    height: 31px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.4s;
}

.toggle-input:checked + .toggle-label {
    background-color: #58a6ff;
}

.toggle-input:checked + .toggle-label .toggle-switch {
    transform: translateX(35px);
}

.toggle-input:not(:checked) + .toggle-label .toggle-inner:before {
    content: "🇫🇷" " | " "🇬🇧";
}

.toggle-input:checked + .toggle-label .toggle-inner:before {
    content: "🇫🇷" " | " "🇬🇧";
}

.image-container {
    display: inline-block;
    overflow: hidden;
    border-radius: 50%; /* Pour garder la forme circulaire */
}

.image-container img {
    transition: transform 0.3s ease;
    border-radius: 50%; /* Pour garder la forme circulaire */
}

.image-container:hover img {
    transform: scale(1.1); /* Ajuste la valeur pour le grossissement souhaité */
}
