/* Sidebar : masquer les articles, afficher uniquement les sections */
.md-nav--primary .md-nav__item .md-nav__list {
  display: none !important;
}

/* Tags : masquer la position par défaut (en haut) */
.md-tags:not(.md-tags--bottom) {
  display: none !important;
}

/* Tags en bas de l'article */
.md-tags--bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--md-default-fg-color--lightest);
}


/* Supprimer "Made with Material for MkDocs" */
.md-copyright a[href*="squidfunk"],
.md-copyright a[href*="mkdocs-material"],
.md-copyright a[href*="material-for-mkdocs"] {
  display: none !important;
}

/* Bouton play YouTube sur les liens avec image */
a[href*="youtube.com"],
a[href*="youtu.be"] {
  position: relative;
  display: inline-block;
}

a[href*="youtube.com"]::after,
a[href*="youtu.be"]::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 68 48'%3E%3Cpath d='M66.52 7.74c-.78-2.93-2.49-5.41-5.42-6.19C55.79.13 34 0 34 0S12.21.13 6.9 1.55c-2.93.78-4.63 3.26-5.42 6.19C.06 13.05 0 24 0 24s.06 10.95 1.48 16.26c.78 2.93 2.49 5.41 5.42 6.19C12.21 47.87 34 48 34 48s21.79-.13 27.1-1.55c2.93-.78 4.64-3.26 5.42-6.19C67.94 34.95 68 24 68 24s-.06-10.95-1.48-16.26z' fill='%23f00'/%3E%3Cpath d='M45 24L27 14v20' fill='%23fff'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

/* Titres h1 */
article.md-content__inner h1 {
  color: #0091eb;
}


/* Watermark */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/header.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}
