body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    color: #fff;
    background-color: #000;
}

a {
    text-decoration: none;
    cursor: pointer; /* Assure un curseur "main" global pour tous les liens */
}

/* Header Styles */
header {
    padding: 1em 0;
    background: #000;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.navbar {
    display: flex;
    justify-content: space-between; /* Le logo à gauche et le menu à droite */
    align-items: center;
    width: 100%; /* Prend toute la largeur de l'écran */
    padding: 0 2rem; /* Espacement interne (optionnel) */
    box-sizing: border-box;
	
}

.navbar a{
    color: #fff;
}


.logo {
    font-size: 1.5rem;
    margin: 0;
}

.cta {
    display: flex;
    justify-content: center; /* Centre horizontalement */
    margin-top: 2rem; /* Un peu d'espace au-dessus du bouton */
}


nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem; /* Espacement horizontal entre les liens */
    margin: 0;
    padding: 0;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    transition: color 0.3s;
}

.contact-btn {
    background: linear-gradient(90deg, #a200d4, #7a00b1); /* Dégradé moderne */
    color: #fff; /* Texte blanc */
    padding: 0.8em 2em; /* Espacement pour une meilleure taille */
    border: none; /* Retire les bordures */
    border-radius: 10px; /* Coins arrondis */
    text-transform: uppercase; /* Texte en majuscules */
    font-weight: bold; /* Texte gras */
    font-size: 1rem; /* Taille du texte adaptée */
    cursor: pointer; /* Curseur en forme de main */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Ombre subtile */
    transition: all 0.3s ease; /* Transition fluide */
    position: relative;
    overflow: hidden;
	text-decoration: none; /* Supprime le soulignement */
}

/* Animation d'effet au survol */
.biscontact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%; /* Débute hors du bouton */
    width: 300%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2); /* Bande lumineuse */
    transform: skewX(-45deg);
    transition: left 0.3s ease;
}

.biscontact-btn:hover::before {
    left: 100%; /* Traverse le bouton */
}

.biscontact-btn:hover {
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3); /* Accentue l'ombre */
    transform: translateY(-3px); /* Lève légèrement le bouton */
}

.biscontact-btn {
    background: linear-gradient(90deg, #a200d4, #7a00b1); /* Dégradé moderne */
    color: #fff; /* Texte blanc */
    padding: 0.8em 2em; /* Espacement pour une meilleure taille */
    border: none; /* Retire les bordures */
    border-radius: 10px; /* Coins arrondis */
    text-transform: uppercase; /* Texte en majuscules */
    font-weight: bold; /* Texte gras */
    font-size: 1rem; /* Taille du texte adaptée */
    cursor: pointer; /* Curseur en forme de main */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Ombre subtile */
    transition: all 0.3s ease; /* Transition fluide */
    position: relative;
    overflow: hidden;
	text-decoration: none; /* Supprime le soulignement */
}

.home h1 {
    z-index: 999;
    animation: fadeIn 2s ease-out forwards;
}

/* Ancienne section Hero */
.hero {
    height: 100vh; /* Hauteur de la section à la hauteur de l'écran */
    display: flex;
    justify-content: center; /* Centre horizontalement */
    align-items: center; /* Centre verticalement */
    text-align: center; /* Centre le texte à l'intérieur de l'élément */
    flex-direction: column; /* Aligne les éléments en colonne */
}

.test :hover{
	font-size: 8rem;
  font-family: 'Poppins', sans-serif;
  color: transparent;
  -webkit-text-stroke: 2px #a200d4;
  text-transform: uppercase;
}
.joli {
    height: 40vh; /* Hauteur de la section à la hauteur de l'écran */
    display: flex;
    justify-content: center; /* Centre horizontalement */
    align-items: center; /* Centre verticalement */
    text-align: center; /* Centre le texte à l'intérieur de l'élément */
    flex-direction: column; /* Aligne les éléments en colonne */
}


.contact-box {
            margin: 20px auto;
            padding: 20px;
            max-width: 500px;
            background: #000; /* Fond noir */
            border: 2px solid #a200d4; /* Contour violet */
            border-radius: 8px;
            text-align: left;
            color: #fff; /* Texte blanc */
			font-weight: bold;
			transform: scale(1); /* Échelle initiale */
    		transition: transform 0.3s, color 0.3s; /* Animation fluide */
			box-shadow: inset 0 4px 10px rgba(255, 255, 255, 0.3), 0 8px 15px rgba(0, 0, 0, 0.2);
        }

        .contact-box p {
            margin: 30px 0;
            display: flex;
            align-items: center;
            gap: 40px;
			justify-content: center;
			font-size: 25px;
        }

        .contact-box i {
            color: #fff; /* Couleur des icônes en violet */
            font-size: 18px;
        }
.contact-box a {
	margin: 30px 0;
            display: flex;
            align-items: center;
            gap: 40px;
			justify-content: center;
			font-weight: bold;
			font-size: 25px;
			color: #fff
}

.contact-box a:hover {
	color: #a200d4;
}

.contact-box:hover {
	transform: scale(1.1); /* Agrandir légèrement au survol */
    box-shadow: inset 0 4px 10px rgba(255, 255, 255, 0.3), 0 8px 15px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s, color 0.3s; /* Animation fluide */
}

.hero h1 {
    z-index: 999;
    animation: fadeIn 2s ease-out forwards;
}

.hero .info h1 {
    font-size: 1.5rem;
    font-weight: normal;
    line-height: 1.2;
    color: #aaa; /* Texte blanc */
}

.hollow-text {
    font-family: 'Poppins', sans-serif;
    color: transparent;
    -webkit-text-stroke: 2px white;
    text-transform: uppercase;
}

.hero .infobis {
	margin-left: 20%;
	margin-right: 20%;
    font-family: 'Arial', sans-serif; /* Remplace par une police compatible */
    font-weight: bold; /* Pour des contours nets */
    color: transparent; /* Rend l'intérieur transparent */
    -webkit-text-stroke: 2px #a200d4; /* Définit la couleur et l'épaisseur du contour */
    text-transform: uppercase; /* Force le texte en majuscules */
}

.hero .info h1 strong {
    font-size: 7rem; /* Taille de police imposante pour "COULIBALY" */
    font-family: 'Arial', sans-serif; /* Remplace par une police compatible */
    font-weight: bold; /* Pour des contours nets */
    color: transparent; /* Rend l'intérieur transparent */
    -webkit-text-stroke: 2px white; /* Définit la couleur et l'épaisseur du contour */
    text-transform: uppercase; /* Force le texte en majuscules */
}

.hero .info h2.student {
    font-size: 2.5rem; /* Taille plus petite pour "ETUDIANT" */
    font-weight: normal;
    color: #aaa; /* Texte gris clair pour "ETUDIANT" */
    line-height: 1.2;
    margin-top: 1rem; /* Espacement au-dessus du texte "ETUDIANT" */
}


.hero .infobis h1 strong {
    font-size: 4rem; /* Taille de police légèrement plus petite */
}

.hero .info a.clickable {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.3s, color 0.3s; /* Animation fluide */
  transition: font-size 0.3s ease-in-out; /* Animation fluide */

}

.hero .info a.clickable:hover {
  font-size: 8rem;
  font-family: 'Poppins', sans-serif;
  color: transparent;
  -webkit-text-stroke: 2px #a200d4;
  text-transform: uppercase;
}

/* Blocs esthétiques */
.hero-stage .blocks-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.hero-stage .block {
    background: #1a1a1a; /* Fond légèrement plus clair */
    border: 1px solid #333; /* Bordure fine */
    border-radius: 15px; /* Coins arrondis */
    padding: 20px;
    width: 300px;
    text-align: left;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-stage .block:hover {
    transform: translateY(-10px);
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.7);
}

.hero-stage .block h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.hero-stage .block p {
    font-size: 1rem;
    color: #aaa;
    line-height: 1.6;
}

.hero-stage {
	padding-top: 175px;
	padding-bottom: 175px;
}

.hero-etude .blocks-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.hero-etude .block {
    background: #1a1a1a; /* Fond légèrement plus clair */
    border: 1px solid #333; /* Bordure fine */
    border-radius: 15px; /* Coins arrondis */
    padding: 20px;
    width: 300px;
    text-align: left;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-etude .block:hover {
    transform: translateY(-10px);
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.7);
}

.hero-etude .block h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.hero-etude .block p {
    font-size: 2rem;
    color: #aaa;
    line-height: 1.6;
}

.hero-etude {
	padding-top: 175px;
	padding-bottom: 175px;
	font-size: 20px;
}

.hero-etude p {
	padding-top: 175px;
	padding-bottom: 175px;
}


/* Style pour les blocs dans la section des stages */
.blocks-container .block {
    background-color: #000; /* Fond noir */
    color: #fff; /* Texte blanc pour le contraste */
    border: 1px solid #a200d4; /* Couleur du contour */
    border-radius: 10px; /* Coins arrondis pour un rendu esthétique */
    padding: 20px; /* Espacement interne */
    margin: 20px 0; /* Espacement entre les blocs */
    text-align: center; /* Centrer le texte */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Effet interactif */
    box-shadow: inset 0 4px 10px rgba(255, 255, 255, 0.2); /* Ombre intérieure blanche */
}

/* Effet au survol */
.blocks-container .block:hover {
    transform: scale(1.1); /* Agrandir légèrement au survol */
    box-shadow: inset 0 4px 10px rgba(255, 255, 255, 0.3), 0 8px 15px rgba(0, 0, 0, 0.2); /* Ombre intérieure blanche + ombre extérieure */
	cursor: pointer; /* Curseur en forme de main */
}


.profile .avatar {
    width: 200px;
    height: 200px;
    background: linear-gradient(145deg, #333, #111);
    border-radius: 50%;
    margin-top: 2rem;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
}

footer {
    text-align: center;
    padding: 1em 0;
    background: #111;
    font-size: 0.9rem;
    color: #888;
    margin-top: auto;
}

/* Section Showcase */
.showcase {
    display: flex;
    justify-content: center; /* Centre tout horizontalement */
    align-items: center; /* Centre tout verticalement */
    padding: 4rem 2rem;
    background-color: #111; /* Fond sombre */
    color: #fff;
    gap: 3rem; /* Espacement entre les éléments */
    text-align: center;
}

.showcase .content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem; /* Espacement horizontal entre texte et images */
    max-width: 1200px; /* Limite la largeur pour éviter que le contenu soit trop étiré */
    width: 100%;
}

.showcase .text {
    flex: 1;
    max-width: 600px; /* Limite la largeur du texte */
}

.showcase .text h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.showcase .text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #aaa;
    margin-bottom: 1.5rem;
}

.showcase .text .btn {
    display: inline-block;
    padding: 0.7em 1.5em;
    background-color: #7a00b1; /* Bouton bleu lumineux */
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.showcase .text .btn:hover {
    background-color: #a200d4; /* Plus sombre au survol */
	cursor: pointer; /* Affichage du curseur de clic (main) */
}


.showcase .images {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.showcase .images img {
    width: 100%;
    max-width: 300px; /* Limite la taille des images */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); /* Effet d'ombre */
}

/* Section Big Text */
.big-text {
    background-color: #000;/* Fond sombre pour rester dans le style */
    padding: 4rem 2rem;
    text-align: center;
	max-width: 1200px; /* Limite la largeur de la section */
    margin: 0 auto; /* Centrage de la section */
	padding-bottom: 200px;
}

.big-text p {
    font-size: 3rem; /* Taille de police grande */
    font-weight: bold; /* Texte en gras */
    color: #fff; /* Texte en blanc */
	line-height: 1.4; /* Espacement entre les lignes */
    margin: 0;
}

/* Section Portfolio */
#portfolio {
    padding: 10rem 1rem;
    background-color: #111; /* Fond sombre */
    color: #fff;
    text-align: center;
}

#portfolio .container {
    max-width: 1200px; /* Limite la largeur */
    margin: 0 auto; /* Centre le contenu */
}

#portfolio h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

#portfolio .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* Crée des colonnes dynamiques */
    gap: 2rem; /* Espacement entre les projets */
}

#portfolio .project {
    background-color: #222; /* Fond des projets */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); /* Ombre autour des projets */
    padding: 1rem;
    text-align: center;
}

#portfolio .project img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1rem; /* Espacement entre l'image et le texte */
}

#portfolio .project p {
    font-size: 1rem;
    color: #aaa;
}


/* Section Stage */
#stage {
    padding: 8rem 2rem;
    background-color: #222; /* Fond sombre */
    color: #fff;
    text-align: center;
}

#stage .container {
    max-width: 1200px;
    margin: 0 auto; /* Centre le contenu */
}

#stage .content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Aligne le haut des éléments */
    gap: 2rem;
    flex-wrap: wrap; /* Permet de gérer les écrans plus petits */
}

#stage h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

#stage .text {
    flex: 1;
    max-width: 600px; /* Limite la largeur du texte */
    text-align: left; /* Aligne le texte à gauche */
}

#stage .description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #bbb;
    margin-bottom: 1.5rem;
}

#stage .content {
    display: flex;
    justify-content: space-between; /* Garde cet alignement pour l'image et le texte */
    align-items: flex-start; /* Aligne tout en haut */
    gap: 2rem;
    flex-wrap: wrap; /* Permet au contenu de se réorganiser sur des écrans plus petits */
}

#stage .cta {
    display: flex; /* Flexbox pour le centrage */
    justify-content: center; /* Centre horizontalement */
    width: 100%; /* Utilise toute la largeur disponible */
    margin-top: 2rem; /* Espacement avec les éléments du dessus */
}

#stage .cta .btn {
    display: inline-block;
    padding: 0.8em 2em;
    background-color: #03a9f4;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

#stage .cta .btn:hover {
    background-color: #0288d1;
	cursor: pointer; /* Affichage du curseur de clic (main) */
}

#stage .image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Aligne l'image avec le haut du texte */
}

#stage .image img {
    max-width: 100%;
    width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

#stage h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0; /* Suppression de la marge par défaut */
    padding: 0; /* Suppression du padding si nécessaire */
    margin-bottom: 1rem; /* Espacement sous le titre */
}

.stagiaire h3 {
        font-size: 3rem;
        font-weight: bold;
        margin-bottom: 2rem;
        border: none;
        padding: 0;
        padding-left: 10%;
        padding-right: 10%;
    } 

.custom-hr {
  width: 40%;        /* Définit la largeur de la ligne */
  margin: 0 auto;    /* Centre horizontalement la ligne */
  border: none;      /* Supprime les bordures par défaut */
  height: 2px;       /* Définit l'épaisseur de la ligne */
  background-color: #a200d4; /* Définit la couleur de la ligne */
}


#portfolio {
    background: linear-gradient(to bottom, #000, #151515, #222); /* Dégradé gris foncé vers plus clair */
}

#stages {
    background: linear-gradient(to bottom, #000, #151515, #222); /* Dégradé de noir à gris foncé */
}

#stage {
    background: linear-gradient(to bottom, #222, #222, #222); /* Plus clair encore */
}

#linkedin {
    background: linear-gradient(to bottom, #222, #151515, #000); /* Plus clair encore */
}

#skills {
    padding: 4rem 2rem;
    background-color: #222;
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center; /* Centrer les éléments horizontalement */
}

.container {
    width: 100%; /* Ajuster la largeur de la section */
    max-width: 1000px;
}

.skills-columns {
    display: flex;
    justify-content: center; /* Centrer les colonnes */
    gap: 15rem; /* Augmenter l'espace entre les colonnes */
    width: 100%; /* S'assurer que tout l'espace est utilisé */
}

.skills-column {
    width: 45%; /* Largeur de chaque colonne */
    padding: 1.5rem; /* Réduit l'espacement interne global */
    border: 2px solid #000; /* Cadre noir autour de chaque colonne */
    border-radius: 10px; /* Bords légèrement arrondis */
    background-color: #222; /* Fond sombre pour les colonnes */
    margin-top: 0; /* S'assure qu'il n'y a pas de marge excessive en haut */
}

.skills-column h2 {
    margin-top: 0; /* Retirer la marge au-dessus du titre */
    font-size: 2rem;
    margin-bottom: 1rem; /* Espacement sous le titre */
}

.skills-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

.skill {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.skill span {
    font-size: 1.2rem;
    font-weight: bold;
    width: 150px;
}

.bar-container {
    width: 70%;
    background-color: #444;
    border-radius: 10px;
    height: 15px;
    overflow: hidden;
}

.skill-bar {
    width: 0;
    height: 100%;
    background-color: #a200d4;
    border-radius: 10px;
    transition: width 2s ease-in-out;
}

.file:hover{
	text-color: #fff;
	color: #fff;
	padding-left: 10px;
}

.fas {
	text-color: #a200d4;
	color: #a200d4;
}

.file {
	text-color: #a200d4;
	color: #a200d4;
	padding-left: 10px;
}

 .fade-element {
   opacity: 1; /* Opacité initiale */
   transition: opacity 0.6s ease-out, transform 0.6s ease-out; /* Transition fluide */
}

.fade-element.scrolled-out {
    opacity: 0; /* Devient invisible */
    transform: translateY(20px); /* Se déplace légèrement vers le bas */
}

/* Footer Styling */
footer {
  background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
  color: #fff;
  padding: 50px 0;
  font-family: 'Arial', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-info, .footer-socials {
  flex: 1;
  padding: 0 20px;
}

.footer-info h3,
.footer-socials h3 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: bold;
}

.footer-info ul,
.footer-socials ul {
  list-style: none;
  padding: 0;
}

.footer-info ul li,
.footer-socials ul li {
  margin: 15px 0;
}

.footer-info ul li a,
.footer-socials ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.footer-info ul li a:hover,
.footer-socials ul li a:hover {
  color: #a200d4;
  cursor: pointer; /* Affichage du curseur de clic (main) */
}

.footer-info ul li a i,
.footer-socials ul li a i {
  margin-right: 10px;
}

.footer-info ul li span {
  font-size: 16px;
  display: flex;
  align-items: center;
}

.footer-socials ul li {
  display: inline-block;
  margin-right: 20px;
}

.footer-socials ul li a {
  font-size: 24px;
  transition: color 0.3s ease;
}

.footer-socials ul li a:hover {
  color: #a200d4;
  cursor: pointer; /* Affichage du curseur de clic (main) */
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #bdbdbd;
}

.footer-bottom p {
  margin: 0;
}

.site-footer {
    background-color: #000; /* Couleur de fond sombre */
    color: #fff; /* Texte blanc */
    text-align: center; /* Centrer le texte */
    padding: 1rem 0; /* Espacement vertical */
    font-size: 0.8rem; /* Taille de texte standard */
    border-top: 1px solid #444; /* Ligne en haut du footer */
}

.site-footer p {
    margin: 0; /* Retirer les marges par défaut */
    font-family: 'Arial', sans-serif; /* Police simple et moderne */
}

/* Section générale */
.linkedin-section {
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 20px auto;
  font-family: Arial, sans-serif;
  padding: 0 15%;
  box-sizing: border-box;
  margin-block-start: 0em;
  margin-block-end: 0.83em;
}

/* Titre */
.linkedin-section h2 {
  padding-top: 5rem;
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 10px;
  margin-block-start: 0em;
}

/* Sous-titre */
.linkedin-section p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #bbb;
}

/* Post intégré */
.linkedin-post iframe {
  width: 100%;
  height: 600px;
  border: none;
  border-radius: 8px;
  padding-bottom: 10rem;
}

@media (min-width: 3000px) {
    .linkedin-section {
        padding: 0 30%;
        padding-top: 7rem;
    }
}
	.stagiaire h1 {
		font-size: 3rem; /* Ajuste la taille du titre */
    	font-weight: bold; /* Garde le texte en gras */
    	margin-bottom: 2rem; /* Espacement sous le titre */
    	border: none; /* Supprime toute bordure */
    	padding: 0; /* Enlève tout padding */
		padding-left: 10%;
    	padding-right: 10%;
	}
	 
	.stagiaire p {
		font-size: 18px;
		padding-left: 10%;
    	padding-right: 10%;
	}

/* Version responsive */
@media (max-width: 768px) {
  .linkedin-section {
    padding: 0 15%; /* Réduire l'espacement latéral sur les petits écrans */
	padding-top: 7rem;
  }

  .linkedin-section h2 {
    font-size: 2rem; /* Réduire légèrement le titre */
  }

  .linkedin-post iframe {
    height: 400px; /* Réduire la hauteur du post */
	padding-bottom: 7rem;
  }
	
	.stagiaire h3 {
		font-size: 2.5rem; /* Ajuste la taille du titre */
    	font-weight: bold; /* Garde le texte en gras */
    	margin-bottom: 2rem; /* Espacement sous le titre */
    	border: none; /* Supprime toute bordure */
    	padding: 0; /* Enlève tout padding */
		padding-left: 10%;
    	padding-right: 10%;
	}
	
	.stagiaire p {
		font-size: 18px;
		padding-left: 10%;
    	padding-right: 10%;
	}
	
  .hero-stage .stage-details {
    display: flex;
    flex-direction: column; /* Affiche les éléments les uns en dessous des autres */
    align-items: center; /* Centrer les éléments horizontalement si besoin */
    gap: 20px; /* Ajouter de l'espace entre les éléments */
  }

  .hero-stage .stage-image {
    order: 2; /* Place l'image entre les deux blocs de texte */
  }

  .hero-stage .stage-text {
    order: 1; /* Premier bloc de texte */
  }

  .hero-stage .testimonials {
    order: 3; /* Deuxième bloc de texte */
  }

  .hero-stage .stage-image img {
    max-width: 100%; /* L'image prend toute la largeur disponible */
    height: auto; /* Maintient les proportions */
  }
 .testimonials {
    background-color: #222;
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}
 .testimonials p {
    text-align: left;
}
	
  .hero-design .stage-details {
    display: flex;
    flex-direction: column; /* Affiche les éléments les uns en dessous des autres */
    align-items: center; /* Centrer les éléments horizontalement si besoin */
  }

  .hero-design .stage-image {
    order: 2; /* Place l'image entre les deux blocs de texte */
  }

  .hero-design .stage-text {
    order: 1; /* Premier bloc de texte */
  }

  .hero-design .testimonials {
    order: 3; /* Deuxième bloc de texte */
  }

  .hero-design .stage-image img {
    max-width: 100%; /* L'image prend toute la largeur disponible */
    height: auto; /* Maintient les proportions */
  }
	
#stageSection {
  margin: 40px 20px; /* Ajoute une marge autour de la section */
  padding: 30px; /* Ajoute un peu d'espace à l'intérieur */
}

#stageSection h1 {
  font-size: 1.8rem; /* Réduit légèrement la taille du titre */
  margin-bottom: 20px; /* Ajoute de l'espace en dessous du titre */
  text-align: center; /* Centre le titre */
}

#stageSection .cadre {
  font-size: 1rem; /* Maintient une lisibilité confortable */
  line-height: 1.6; /* Améliore la lecture */
  margin-top: 20px; /* Ajoute de l'espace au-dessus du texte */
  text-align: justify; /* (Optionnel) Alignement justifié pour un aspect plus structuré */
}

}


@media (max-width: 480px) {
  .linkedin-section {
    padding: 0 12%; /* Réduire davantage l'espacement latéral */
	padding-top: 7rem;
  }

  .linkedin-section h2 {
    font-size: 1.8rem; /* Adapter encore le titre */
  }

  .linkedin-post iframe {
    height: 300px; /* Adapter la hauteur pour les très petits écrans */
	padding-bottom: 7rem;
  }
}


/* Responsive Design */
@media (max-width : 768px ){
  .footer-container {
    text-align: center;
  }
  
  .footer-info, .footer-socials {
    padding: 20px;
    margin-bottom: 20px;
  }
	
  .hero-stage h1 {
    font-size: 2rem; /* Ajuste la taille du titre */
    font-weight: bold; /* Garde le texte en gras */
    margin-bottom: 2rem; /* Espacement sous le titre */
    border: none; /* Supprime toute bordure */
    padding: 0; /* Enlève tout padding */
	padding-left: 10%;
    padding-right: 10%;
}

  .hero-stage p {
    font-size: 18px; /* Ajuste la taille du titre */
}
  .hero-stage .blocks-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
}
  .hero-stage {
    padding-left: 10%;
    padding-right: 10%;
}
}

/* Agrandir l'icône LinkedIn */
.footer-socials ul li a.linkedin-icon i {
  font-size: 80px; /* Tu peux ajuster cette taille comme tu le souhaites */
  transition: transform 0.3s ease;
}

.footer-socials ul li a.linkedin-icon:hover i {
  transform: scale(1.2); /* Un léger zoom au survol */
  color: #a200d4;
  cursor: pointer; /* Affichage du curseur de clic (main) */
}





/* Ajouter de l'espace entre chaque stage (entre les sections de développement et design) */
.hero-stage {
  margin-bottom: 60px; /* Espace entre chaque section de stage */
}

/* Styles généraux */
.hero-stage {
  background-color: #000;
  color: #fff;
  padding: 60px 20px;
}

.hero-etude h1 {
    font-size: 3rem; /* Ajuste la taille du titre */
    font-weight: bold; /* Garde le texte en gras */
    margin-bottom: 2rem; /* Espacement sous le titre */
    border: none; /* Supprime toute bordure */
    padding: 0; /* Enlève tout padding */
}


/* Ajouter de l'espace entre chaque stage (entre les sections de développement et design) */
.hero-etude {
  margin-bottom: 60px; /* Espace entre chaque section de stage */
}

/* Styles généraux */
.hero-etude {
  background-color: #000;
  color: #fff;
  padding: 60px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 1.2rem;
  text-align: center;
  color: #ddd;
  margin-bottom: 40px;
}

.stage-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

/* Inversion spécifique pour le stage en design */
.hero-design .stage-details {
  flex-direction: row-reverse; /* Inverse l'ordre des éléments */
}


.stage-image {
  flex: 1;
  display: flex;
  justify-content: right;
  align-items: center;
}

.stage-imagee {
  flex: 1;
  display: flex;
  justify-content: left;
  align-items: center;
}

.stage-imagee img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.stage-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.stage-text {
  flex: 1;
  background-color: #222;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.stage-text h2 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 15px;
}

.stage-text ul {
  list-style: none;
  padding: 0;
}

.stage-text ul li {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #bbb;
}
.stage-text p {
	font-size: 1.1rem;
  margin-bottom: 10px;
  color: #bbb;
}

.testimonials {
  background-color: #222;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.testimonials h3 {
  font-size: 2rem;
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
}

.testimonial {
  margin-bottom: 30px;
  font-size: 1.1rem;
  color: #ddd;
  text-align: center;
}

.testimonial .author {
  font-weight: bold;
  font-size: 1.2rem;
  color: #fff;
}

.cta {
  text-align: center;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.cta-button {
  background-color: #007bff;
  color: white;
  padding: 15px 30px;
  font-size: 1.2rem;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #0056b3;
  cursor: pointer; /* Affichage du curseur de clic (main) */
}

.cta-button:hover::before {
    content: '';
    cursor: pointer; /* Garde la continuité de l'interaction */
}

/* Style du titre "MES EXPERIENCES EN STAGE" */
.experience-stages h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

/* Style de la flèche animée qui pointe vers le bas */
.scroll-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    cursor: pointer;
}

/* Style de la flèche animée qui pointe vers le bas */
.scroll-arrowbis {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    cursor: pointer;
	color: transparent;
}

/* Style de l'icône Font Awesome */
.arrow {
    font-size: 30px; /* Taille de l'icône */
    color: #fff; /* Couleur de la flèche */
    animation: bounce 1s infinite alternate;
}

.arrowbis {
    font-size: 30px; /* Taille de l'icône */
    color: transparent; /* Couleur de la flèche */
    animation: bounce 1s infinite alternate;
}

/* Animation de la flèche pour la faire bouger */
@keyframes bounce {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(10px);
    }
}

/* Pour l'effet de transition de la flèche quand on survole */
.scroll-arrow:hover .arrow {
    transform: translateY(15px); /* Un peu plus loin quand on survole */
	cursor: pointer; /* Affichage du curseur de clic (main) */
	
}

/* Pour l'effet de transition de la flèche quand on survole */
.scroll-arrowbis:hover .arrow {
    transform: translateY(15px); /* Un peu plus loin quand on survole */
	cursor: pointer; /* Affichage du curseur de clic (main) */
}

/* Section où on scrolle vers le bas */
.hero-stage {
    padding: 100px 0;
}

.hero-etude {
    padding: 100px 0;
}


/* Définir spécifiquement pour les boutons et liens */
button, a, .contact-btn, .biscontact-btn, .showcase .btn, .footer-info ul li a, .footer-socials ul li a {
    cursor: pointer; /* Ajoutez explicitement cette propriété */
}

/* Autres éléments interactifs */
.hero .info a.clickable:hover, .blocks-container .block:hover {
    cursor: pointer;
}

/* Assurez-vous que les éléments comme .block ou autres éléments cliquables ont cette propriété pour des actions */
.blocks-container .block:hover {
    cursor: pointer;
}


#stageSection {
    display: flex;
    justify-content: center;
    align-items: center; /* Centre aussi verticalement si nécessaire */
    text-align: center; /* Centre le texte dans le conteneur */
    height: auto; /* Ajustez en fonction du contenu */
}

.center-container {
    max-width: 800px; /* Limite la largeur pour un rendu soigné */
    width: 100%; /* S'adapte à l'espace disponible */
}

.project {
    background-color: #1e1e1e; /* Couleur de fond gris foncé */
    padding: 20px;
    border: 2px solid #a200d4; /* Contour violet */
    border-radius: 10px; /* Coins arrondis */
    color: white; /* Texte en blanc */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); /* Ombre élégante */
}


#bubbleSection {
    display: flex;
    justify-content: center;
    align-items: center;
	padding-top: 50px;
	padding-bottom: 150px;
}

    .bubble-container {
        display: flex;
        flex-wrap: wrap; /* Permet aux bulles de passer à la ligne */
        gap: 10px; /* Espacement entre les bulles */
        justify-content: center; /* Centre horizontalement les bulles */
        width: 50%; /* Section centrée horizontalement */
    }

    .bubble {
        display: inline-flex; /* Ajuste automatiquement la taille au texte */
        align-items: center;
        justify-content: center;
        background-color: #a200d4; /* Couleur violette */
        color: white; /* Texte blanc */
        font-size: 18px;
        font-weight: bold;
        padding: 10px 15px; /* Ajuste l'espace autour du texte */
        border-radius: 25px; /* Coins arrondis */
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Ombre subtile */
        white-space: nowrap; /* Empêche le retour à la ligne */
    }


html, body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}


.heroc {
    height: 40vh; /* Hauteur de la section à la hauteur de l'écran */
    display: flex;
    justify-content: center; /* Centre horizontalement */
    align-items: center; /* Centre verticalement */
    text-align: center; /* Centre le texte à l'intérieur de l'élément */
    flex-direction: column; /* Aligne les éléments en colonne */
}
	
.heroc .infobis {
    font-family: 'Arial', sans-serif; /* Remplace par une police compatible */
    font-weight: bold; /* Pour des contours nets */
    color: transparent; /* Rend l'intérieur transparent */
    -webkit-text-stroke: 2px #a200d4; /* Définit la couleur et l'épaisseur du contour */
    text-transform: uppercase; /* Force le texte en majuscules */
}

.heroc .infobis h1 strong {
    font-size: 4rem; /* Taille de police imposante pour "COULIBALY" */
    font-family: 'Arial', sans-serif; /* Remplace par une police compatible */
    font-weight: bold; /* Pour des contours nets */
    color: transparent; /* Rend l'intérieur transparent */
    -webkit-text-stroke: 2px #a200d4; /* Définit la couleur et l'épaisseur du contour */
    text-transform: uppercase; /* Force le texte en majuscules */
}

.heroc .infobis h1 strong {
    font-size: 2rem; /* Taille de police légèrement plus petite */
}


/* Styles pour les petits écrans */
@media (max-width: 768px) {
  .container {
    flex-direction: column; /* Pour téléphone, les éléments s’empilent */
	max-width: 100%; /* Empêche les éléments de dépasser */
    box-sizing: border-box; /* Inclut les bordures et marges dans la largeur */
  }
  
  .stage-imagee {
  display: flex;
  justify-content: left;
  align-items: center;
}
	
  img, video {
    max-width: 100%;
    height: auto;
}
	
  body {
    font-size: 13px; /* Réduction de la taille du texte */
  }

  .element {
  margin: 0 auto; /* Centrer proprement */
}
	
.hero {
    height: 80vh; /* Hauteur de la section à la hauteur de l'écran */
    display: flex;
    justify-content: center; /* Centre horizontalement */
    align-items: center; /* Centre verticalement */
    text-align: center; /* Centre le texte à l'intérieur de l'élément */
    flex-direction: column; /* Aligne les éléments en colonne */
}
	
  .hero h1 {
    z-index: 999;
    animation: fadeIn 2s ease-out forwards;
}

  .hero .info h1 {
    font-size: 0.8rem;
    font-weight: normal;
    line-height: 1.5;
    color: #aaa; /* Texte blanc */
}

  .hollow-text {
    font-family: 'Poppins', sans-serif;
    color: transparent;
    -webkit-text-stroke: 1px white;
    text-transform: uppercase;
}

  .hero .infobis {
    font-family: 'Arial', sans-serif; /* Remplace par une police compatible */
    font-weight: bold; /* Pour des contours nets */
    color: transparent; /* Rend l'intérieur transparent */
    -webkit-text-stroke: 1px #a200d4; /* Définit la couleur et l'épaisseur du contour */
    text-transform: uppercase; /* Force le texte en majuscules */
}

  .hero .info h1 strong {
    font-size: 4rem; /* Taille de police imposante pour "COULIBALY" */
    font-family: 'Arial', sans-serif; /* Remplace par une police compatible */
    font-weight: bold; /* Pour des contours nets */
    color: transparent; /* Rend l'intérieur transparent */
    -webkit-text-stroke: 2px white; /* Définit la couleur et l'épaisseur du contour */
    text-transform: uppercase; /* Force le texte en majuscules */
}

  .hero .info h2.student {
    font-size: 1rem; /* Taille plus petite pour "ETUDIANT" */
    font-weight: normal;
    color: #aaa; /* Texte gris clair pour "ETUDIANT" */
    line-height: 2.5;
    margin-top: 2.5rem; /* Espacement au-dessus du texte "ETUDIANT" */
}


  .hero .infobis h1 strong {
    font-size: 2rem; /* Taille de police légèrement plus petite */
}

.heroc {
    height: 40vh; /* Hauteur de la section à la hauteur de l'écran */
    display: flex;
    justify-content: center; /* Centre horizontalement */
    align-items: center; /* Centre verticalement */
    text-align: center; /* Centre le texte à l'intérieur de l'élément */
    flex-direction: column; /* Aligne les éléments en colonne */
}
	
.heroc .infobis {
    font-family: 'Arial', sans-serif; /* Remplace par une police compatible */
    font-weight: bold; /* Pour des contours nets */
    color: transparent; /* Rend l'intérieur transparent */
    -webkit-text-stroke: 1px #a200d4; /* Définit la couleur et l'épaisseur du contour */
    text-transform: uppercase; /* Force le texte en majuscules */
}

.heroc .infobis h1 strong {
    font-size: 4rem; /* Taille de police imposante pour "COULIBALY" */
    font-family: 'Arial', sans-serif; /* Remplace par une police compatible */
    font-weight: bold; /* Pour des contours nets */
    color: transparent; /* Rend l'intérieur transparent */
    -webkit-text-stroke: 1px #a200d4; /* Définit la couleur et l'épaisseur du contour */
    text-transform: uppercase; /* Force le texte en majuscules */
}

.heroc .infobis h1 strong {
    font-size: 2rem; /* Taille de police légèrement plus petite */
}
	
  .hero .info a.clickable {
  display: inline-block;
  text-decoration: none;
}

.hero .info a.clickable:hover {
  font-size: 4rem;
  text-decoration: none;
  -webkit-text-stroke: 1px white;
}	

.big-text {
    background-color: #000;/* Fond sombre pour rester dans le style */
    padding: 4rem 2rem;
    text-align: center;
    margin: 0 auto; /* Centrage de la section */
}

.big-text p {
    font-size: 2rem; /* Taille de police grande */
    font-weight: bold; /* Texte en gras */
    color: #fff; /* Texte en blanc */
	line-height: 1; /* Espacement entre les lignes */
    margin: 10px;
}

	
	
/* Section Showcase */
.showcase {
    display: flex;
    justify-content: center; /* Centre tout horizontalement */
    align-items: center; /* Centre tout verticalement */
    padding: 4rem 2rem;
    background-color: #111; /* Fond sombre */
    color: #fff;
    gap: 3rem; /* Espacement entre les éléments */
    text-align: center;
}

.showcase .content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem; /* Espacement horizontal entre texte et images */
    max-width: 1200px; /* Limite la largeur pour éviter que le contenu soit trop étiré */
    width: 100%;
}

.showcase .text {
    flex: 1;
    max-width: 600px; /* Limite la largeur du texte */
}

.showcase .text h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.showcase .text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #aaa;
    margin-bottom: 1.5rem;
}

.showcase .text .btn {
    display: inline-block;
    padding: 0.7em 1.5em;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.showcase .text .btn:hover {
	cursor: pointer; /* Affichage du curseur de clic (main) */
}


.showcase .images {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.showcase .images img {
    width: 100%;
    max-width: 300px; /* Limite la taille des images */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); /* Effet d'ombre */
}
	
.showcase .content {
    display: flex;
    flex-wrap: wrap; /* Permet de gérer l'empilement sur plusieurs lignes */
    justify-content: center;
    align-items: center;
    gap: 3rem; /* Espacement horizontal entre texte et images */
    max-width: 1200px;
    width: 100%;
}

.showcase .images {
    order: -1; /* Place l'image avant le texte */
    width: 100%; /* S'assure que l'image occupe toute la largeur disponible */
    text-align: center; /* Centre l'image */
}

.showcase .images img {
    max-width: 300px; /* Limite la largeur des images */
    margin: 0 auto; /* Centre l'image */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.showcase .text {
    flex: 1;
    max-width: 600px;
    width: 100%; /* S'adapte pour un affichage harmonieux */
}

.contact-box {
            margin: 20px auto;
            padding: 20px;
            max-width: 70%;
            background: #000; /* Fond noir */
            border: 2px solid #a200d4; /* Contour violet */
            border-radius: 8px;
            text-align: left;
            color: #fff; /* Texte blanc */
			font-weight: bold;
			transform: scale(1); /* Échelle initiale */
        }

.contact-box p {
            margin: 30px 0;
            display: flex;
            align-items: center;
            gap: 30px;
			justify-content: center;
			font-size: 18px;
        }

.contact-box i {
            color: #fff; /* Couleur des icônes en violet */
            font-size: 18px;
        }
	
.contact-box a {
	margin: 30px 0;
            display: flex;
            align-items: center;
            gap: 30px;
			justify-content: center;
			font-weight: bold;
			font-size: 18px;
			color: #fff
}
	
.contact-box:hover {
	transform: scale(1); /* Agrandir légèrement au survol */
}

#bubbleSection {
    display: flex;
    justify-content: center;
    align-items: center;
	padding-top: 50px;
	padding-bottom: 150px;
}

    .bubble-container {
        display: flex;
        flex-wrap: wrap; /* Permet aux bulles de passer à la ligne */
        gap: 10px; /* Espacement entre les bulles */
        justify-content: center; /* Centre horizontalement les bulles */
        width: 80%; /* Section centrée horizontalement */
    }

    .bubble {
        display: inline-flex; /* Ajuste automatiquement la taille au texte */
        align-items: center;
        justify-content: center;
        background-color: #a200d4; /* Couleur violette */
        color: white; /* Texte blanc */
        font-size: 10px;
        font-weight: bold;
        padding: 10px 15px; /* Ajuste l'espace autour du texte */
        border-radius: 25px; /* Coins arrondis */
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Ombre subtile */
        white-space: nowrap; /* Empêche le retour à la ligne */
    }
	
/* Section Stage */
#stage {
    padding: 5rem 2rem;
    background-color: #222; /* Fond sombre */
    color: #fff;
    text-align: center;
}

#stage .container {
    max-width: 1200px;
    margin: 0 auto; /* Centre le contenu */
}

#stage .content {
    display: flex;
    flex-direction: column; /* Organise les éléments verticalement */
    align-items: center; /* Centre tous les éléments horizontalement */
    gap: 2rem; /* Ajoute un espacement entre chaque élément */
}

#stage h2 {
    order: 0; /* Titre en haut */
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0; /* Suppression de la marge par défaut */
    padding: 0; /* Suppression du padding si nécessaire */
    margin-bottom: 1rem; /* Espacement sous le titre */
}

#stage .text {
    display: flex; /* Utilisation de flex pour organiser les éléments */
    flex-direction: column; /* Organise verticalement les paragraphes et l'image */
    flex: 1;
    max-width: 600px; /* Limite la largeur du texte */
    text-align: left; /* Aligne le texte à gauche */
    gap: 1.5rem; /* Espacement entre les éléments */
}

#stage .description:first-of-type {
    order: 1; /* Premier paragraphe */
    font-size: 1.2rem;
    line-height: 1.6;
    color: #bbb;
    margin-bottom: 1.5rem;
}

#stage .image {
    order: 2; /* Image entre les paragraphes */
    align-self: center; /* Centre l'image horizontalement */
    margin: 1rem 0; /* Ajoute un espacement autour de l'image */
}

#stage .image img {
    width: auto; /* Supprime la contrainte de largeur fixe */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); /* Effet d'ombre */
}

#stage .description:last-of-type {
    order: 3; /* Deuxième paragraphe */
    font-size: 1rem;
    line-height: 1.6;
    color: #bbb;
    margin-bottom: 1.5rem;
	text-align: left;
}

#stage .cta {
    order: 4; /* Bouton en bas */
    align-self: center; /* Centre le bouton */
    margin-top: 2rem; /* Espacement au-dessus du bouton */
}

#stage .cta .btn {
    display: inline-block;
    padding: 0.8em 2em;
    background-color: #03a9f4;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
    -webkit-appearance: none; /* Supprime le style par défaut sur iOS */
    appearance: none;
}

#stage .cta .btn:hover {
    background-color: #0288d1;
    cursor: pointer; /* Affichage du curseur de clic (main) */
}
	
.nav-menu {
        display: none; /* Masque le menu par défaut */
        flex-direction: column; /* Permet un alignement vertical */
        background-color: #000; /* Fond noir pour le menu déroulant */
        position: absolute; /* Permet un positionnement fixe */
        top: 100%; /* Position en dessous du header */
        left: 0;
        width: 100%; /* Prend toute la largeur de l'écran */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
        z-index: 999;
    }

    .menu-toggle {
        display: block; /* Affiche le bouton hamburger */
        background: none;
        border: none;
        color: #fff;
        font-size: 1.5rem;
        cursor: pointer;
    }

    .menu-toggle.open + .nav-menu {
        display: flex; /* Affiche le menu */
    }
	/* Ajout d'une transition fluide */

.nav-menu {
    display: none; /* Masqué par défaut */
    flex-direction: column; /* Alignement vertical */
    align-items: center; /* Centre horizontalement les éléments */
    justify-content: center; /* Centre verticalement si nécessaire */
    background-color: #333; /* Fond gris foncé */
    position: absolute; /* Position relative au parent */
    top: 100%; /* Juste en dessous du header */
    left: 0;
    width: 100%; /* Prend toute la largeur de l'écran */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.8); /* Ombre subtile */
    z-index: 999; /* S'assure que le menu est au-dessus */
    padding: 1rem 0; /* Espacement intérieur vertical */
    border-top: 2px solid #fff; /* Bordure supérieure pour le contraste */
    border-bottom: 2px solid #fff;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out; /* Animation fluide */
    transform: translateY(-10px); /* Effet de décalage avant l'apparition */
    opacity: 0;
}

.nav-menu ul {
    display: flex; /* Permet un affichage en ligne si besoin */
    flex-direction: column; /* Aligne les items verticalement */
    justify-content: center; /* Centre verticalement */
    align-items: center; /* Centre horizontalement */
    margin: 0;
    padding: 0;
    list-style: none; /* Supprime les puces */
}

.nav-menu.open {
    display: flex; /* Rend le menu visible */
    transform: translateY(0); /* Position normale */
    opacity: 1; /* Pleine opacité */
}



.nav-menu ul li {
    padding: 0.5rem; /* Espacement interne pour chaque élément */
    text-align: center; /* Centre le texte */
	border-bottom: 1px #bbb;
}

.nav-menu ul li a {
    color: #fff; /* Texte blanc */
    font-size: 1rem; /* Taille du texte */
    display: block; /* Prend toute la largeur cliquable */
    transition: background-color 0.3s ease; /* Animation fluide au survol */
}

.nav-menu ul li a:hover {
    background-color: #555; /* Fond gris plus clair au survol */
}

	
	
#skills {
    padding: 4rem 2rem;
    background-color: #222;
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center; /* Centrer les éléments horizontalement */
}

.container {
    width: 90%; /* Ajuster la largeur de la section */
    max-width: 1000px;
	display: flex;
    padding: 20px;
}

.skills-columns {
    display: flex;
    flex-direction: column; /* Permet d'empiler les colonnes verticalement */
    align-items: center; /* Centrer les colonnes horizontalement */
    gap: 2rem; /* Espacement entre les colonnes */
    width: 100%;
}

.skills-column {
    width: 85%; /* Largeur de chaque colonne */
    padding: 1.5rem; /* Réduit l'espacement interne global */
    border: 2px solid #000; /* Cadre noir autour de chaque colonne */
    border-radius: 10px; /* Bords légèrement arrondis */
    background-color: #222; /* Fond sombre pour les colonnes */
    margin-top: 0; /* S'assure qu'il n'y a pas de marge excessive en haut */
}

.skills-column h2 {
    margin-top: 0; /* Retirer la marge au-dessus du titre */
    font-size: 1.4rem;
    margin-bottom: 1rem; /* Espacement sous le titre */
}

.skills-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

.skill {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.skill span {
    font-size: 1.2rem;
    font-weight: bold;
    width: 150px;
}

	

}

/* Styles pour les écrans plus grands */
@media (min-width: 769px) {
    .menu-toggle {
        display: none; /* Cache le bouton hamburger */
    }

    .nav-menu {
        display: flex; /* Affiche toujours le menu horizontalement */
    }
}



/* Media Queries pour petits écrans */
@media (max-width: 768px) {
    #stage .content {
        flex-direction: column; /* Organisation verticale */
        align-items: center; /* Centre les éléments */
        gap: 1.5rem; /* Réduit l'espacement sur petits écrans */
    }

    #stage .cta {
        margin-top: 2rem; /* Maintient un espacement suffisant au-dessus */
    }
}

	
