/* ---------------------- */
/* Reset & Box sizing     */
/* ---------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* ---------------------- */
/* Police locale          */
/* ---------------------- */
@font-face {
  font-family: "AllianceNo2";
  src: url("../fonts/AllianceNo2-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "AllianceNo2";
  src: url("../fonts/AllianceNo.2-Regular-Italic.otf") format("opentype");
  font-weight: normal;
  font-style: italic;
}
/* ---------------------- */
/* Variables couleurs     */
/* ---------------------- */
:root {
  --fbc-blue-60: #0060df;
  --fbc-blue-70: #003eaa;
  --fbc-gray-20: #ededf0;
  --fbc-light-gray: #F0F0F4;
  --fbc-white: #ffffff;
  --fbc-primary-text: #15141A;
  --fbc-secondary-text: #5B5B66;
}
/* ---------------------- */
/* Body global            */
/* ---------------------- */
body {
  font-family: "AllianceNo2", sans-serif;
  font-size: 13px;
  line-height: 16px;
  font-weight: 400;
  color: #222;
  background-color: var(--fbc-white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
}
/* ---------------------- */
/* Header & Menu          */
/* ---------------------- */
header {
  width: 100%;
  position: sticky;
  top: 0;
  background-color: var(--fbc-white);
  z-index: 100;
}
.menu {
  list-style: none;
  display: flex;
  gap: 2rem;
  padding: 1rem 2rem;
}
.menu li a {
  text-decoration: none;
  color: #070707;
  font-weight: normal;
}
.menu li a:hover {
  text-decoration: underline;
}
/* ---------------------- */
/* Contenu générique      */
/* ---------------------- */
.page {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  flex: 1;
  display: flex;
  padding: 2rem;
  gap: 2rem;
  background-color: var(--fbc-white);
}
/* ---------------------- */
/* Page Infos             */
/* ---------------------- */
.infos-content {
  max-width: 700px;
  background-color: var(--fbc-white);
  padding: 2rem;
  border-radius: 8px;
  line-height: 1.6;
  text-align: justify;
}
.infos-content a {
  color: inherit;
  text-decoration: none;
  font-weight: normal;
  transition: color 0.2s;
}
.infos-content a:hover {
  color: #555;
}
/* ---------------------- */
/* Page Portfolio         */
/* ---------------------- */
.portfolio-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.portfolio-links li {
  margin-bottom: 10px;
}
.portfolio-links a {
  color: inherit;
  text-decoration: none;
  font-weight: normal;
  transition: color 0.2s;
}
.portfolio-links a:hover {
  color: #555;
}
/* ---------------------- */
/* Liste à gauche         */
/* ---------------------- */
.oeuvres-list {
  width: 200px;
}
.oeuvres-list ul {
  list-style: none;
  padding: 0;
}
.oeuvres-list li {
  margin-bottom: 0.5rem;
  cursor: pointer;
}
.oeuvres-list li.active {
  font-weight: bold;
  text-decoration: underline;
}
/* ---------------------- */
/* Footer                 */
/* ---------------------- */
footer {
  background-color: var(--fbc-white);
  text-align: center;
  padding: 1rem 0;
  font-size: 8pt;
  color: #666;
  border-top: 1px solid #ddd;
}
/* ---------------------- */
/* Responsive             */
/* ---------------------- */
@media (max-width: 768px) {
  .page {
    flex-direction: column;
  }
  .oeuvres-list {
    width: 100%;
    margin-bottom: 1rem;
  }
}