/* STYLE GLOBAL */
body {
  margin: 0;
  font-family: sans-serif;
  background: white;
  color: black;
}

/* CONTENEUR CENTRALISÉ */
.conteneur {
  max-width: 95vw;
  margin: 0 auto;
  padding: 0 10px;
}

/* ENTÊTE */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  position: sticky;
  top: 0;
  background: white;
  z-index: 10;
}

/* LIEN WORK CENTRÉ */
header .work-link {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-decoration: none;
  color: black;
  font-weight: 550;
  font-size: 1em;
}

/* LOGO */
.logo {
  font-weight: 550;
  font-size: 1em;
}

/* NAVIGATION */
nav a {
  color: black;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 550;
  font-size: 1em;
}

/* VIDÉOS */
.realisations {
  display: grid;
  gap: 40px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 ratio */
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

.video-wrapper.playing::after {
  opacity: 0;
}

/* IMAGE */
.image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 ratio */
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

/* PAGE ABOUT */
.about-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 60px;
  padding: 0 20px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
 }
 
 
 .about-layout {
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
  gap: 40px;
  align-items: flex-start;
 }
 
 
 .about-left img {
  max-width: 300px;
  width: 100%;
  height: auto;
 }
 
 
 .about-middle {
  flex: 1;
  min-width: 250px;
  max-width: 500px;
 }
 
 
 .intro {
  font-size: 1.6em;
  line-height: 1.3;
  margin-bottom: 20px;
 }
 

 .about-right {
  font-size: 0.85em;
  line-height: 1.4;
  margin-left: auto;
 }
 
 
 .about-right .exp,
 .about-right .recog {
  margin-bottom: 30px;
 }
 
 
 .right-columns {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex: 1;
 }
 
 
 .exp {
  min-width: 180px;
 }
 
 /* STYLE DU LIEN LINKEDIN */
.linkedin-link {
  color: black; /* Met la couleur du lien en noir */
  text-decoration: none; /* Supprime le soulignement */
  font-weight: bold; /* Met le texte en gras */
  font-size: 1.3em;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-layout {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .about-middle {
    text-align: center;
  }

  .about-right {
    margin-left: 0;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
  }

  .right-columns {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .exp,
  .recog {
    max-width: 300px;
    width: 100%;
    text-align: center;
  }

  .intro,
  .linkedin-link {
    font-size: 1.3em;
  }
}