/*
# Provide front matter so Jekyll processes this file as SASS.
*/
@charset "utf-8";

/* Default CSS.
// Don't edit this file.  Put your changes in stylesheet-customizations.scss*/

/* Default background color*/
body {
  /* Fond sombre profond pour le côté OS/IA */
  background-color: #404347;
  /* Motif de points discrets (Dots) */
  background-image: radial-gradient(#ced9e6 1px, transparent 1px);
  background-size: 24px 24px;
  color: #c9d1d9; /* Texte gris clair pour la lisibilité */
  font-family: 'Inter', -apple-system, sans-serif;
  margin: 0;
}

/* Default menubar color
.ui.menu {
  background: adjust-color(silver, $lightness: 10%);
}

Default home page icon color
.icon-color {
  background: adjust-color(silver, $lightness: 10%);
}

*/

/* Full-screen video background */
#bg-video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -2;               /* behind everything */
  object-fit: cover;         /* fill screen, no distortion */
}

/* Optional: dark overlay so text is readable */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);  /* semi-transparent black */
  z-index: -1;
}

/* Make sure main content is above video */
main, header, footer {
  position: relative;
  z-index: 1;
}
/* Prefer space between list items in screen mode.*/
.list-padding {
  ul li { padding: 5px 0px; }
  ol li { padding: 5px 0px; }
}

/* This class is used in the prebuilt bio themes.*/
.no-bottom {
  margin-bottom: 0px !important;
  padding-bottom: 0px !important;
}

.icon-color {
  color: #555 !important;
  transition: color 0.3s ease;
}
.icon-color:hover {
  color: #0077B5 !important; /* Blue hover for all */
}

/* Network specific */
.github.icon-color { color: #333 !important; }
.github.icon-color:hover { color: #000 !important; }
.linkedin.icon-color { color: #0077B5 !important; }
.linkedin.icon-color:hover { color: #005885 !important; }
.rss.icon-color { color: #ff6600 !important; }
.rss.icon-color:hover { color: #e65500 !important; }
.mail.icon-color { color: #db4437 !important; }
.mail.icon-color:hover { color: #c23321 !important; }

