/* Importation des polices de caractères */
@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");

p.title,
p,
h1,
h2,
h3,
h4,
h5,
h6,
li {
  font-family: "Poppins", sans-serif;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  /* Désactive l'agrandissement automatique du texte sur les navigateurs mobiles */
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Début squelette site Web */
body {
  position: relative;
  margin: 0%;
  padding: 0%;
  background-color: #e4e4e4;
  /* Désactive l'agrandissement automatique du texte sur les navigateurs mobiles */
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body * {
  box-sizing: border-box;
}

/* Centrage du contenu principal en desktop */
@media (min-width: 992px) {
  main {
    background-color: #e4e4e4;
    background-image: url("/img/backgrounds/ng_dots_background.avif");
    background-repeat: repeat;
    font-size: 23px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
  }
}

/* Mobile */
main {
  background-color: #e4e4e4;
  background-image: url("/img/backgrounds/ng_dots_background.avif");
  background-repeat: repeat;
}

/* CSS Grid Header
(Mobile First) */
header {
  /* Le version iPad Air ne fait pas de sens */
  color: rgb(255, 255, 255);
  background-color: #2a6bc0;
  display: grid;
  grid-template-columns:1fr auto;
  grid-template-areas: "nomSite menuHamburger";
  align-items: center;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.28);
}

header nav ul li {
  padding-right: 10px;
  display: inline;
}

/* Mobile */
@media (max-width: 991px) {
  header a {
    display: inline;
    font-size: 35px; /* POUR LE DÉBORDEMENT EN MODE MOBILE */
  }
}

/* Desktop */
@media (min-width: 992px) {
  header {
    color: rgb(255, 255, 255);
    background-color: #2a6bc0;
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns:6fr 10fr;
    grid-template-areas: "nomSite navigation";
    font-size: 23px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.28);
  }

  header,
  header .logo img,
  header .nomSite h1 {
    transition: all 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
  }

  /* Logo Mii dans le header : taille normale */
  header .logo img {
    max-width: 70px;
    min-width: 70px;
  }

  /* Logo Mii réduit lors du scroll */
  header.header-reduit .logo img {
    max-width: 40px;
    min-width: 40px;
  }

  /* Header réduit lors du scroll */
  header.header-reduit {
    padding: 5px 20px;
    min-height: 60px;
  }

  header.header-reduit .nomSite h1 {
    font-size: 28px;
  }
}

/* NAVIGATION */
/* CSS Navigation
(Mobile First) */
section.navigation a {
  margin: 10px;
}

/* CSS Navigation
(Desktop) */
@media (min-width: 992px) {
  section.navigation a {
    margin: 3px;
    font-size: 25px;
  }
}

/* NAVIGATION */
section.navigation {
  grid-area: navigation;
  display: none; /* Masqué par défaut en mobile */
}

@media (min-width: 992px) {
  section.navigation {
    display: flex; /* Affiche la navigation en desktop */
    justify-content: flex-end;
    align-items: center;
  }
}

section.navigation a {
  text-decoration: none;
  color: rgb(255, 255, 255);
}

section.navigation a:hover {
  text-decoration: none;
  cursor: pointer;
  transition: 0.4s;
  color: #fa8072;
}

span.barre {
  color: #5bd5fe;
}

/* MENU HAMBURGER */
.menuHamburger {
  grid-area: menuHamburger;
  display: flex;
  justify-content: flex-end; /* Aligne à droite */
  align-items: center;
}

@media (max-width: 991px) {
  .menuHamburger nav {
    display: flex;
    align-items: center;
    height: 100%;
  }

  #menuToggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  #menuToggle span:last-of-type {
    margin-bottom: 0;
  }
}

/* Cache le menu hamburger sur les écrans larges */
@media (min-width: 992px) {
  .menuHamburger {
    display: none;
  }
}

/* Cacher le menu navigation sur les écrans plus petit */
section.navigation {
  display: none;
}

#menuToggle {
  display: block;
  position: relative; /* Position relative pour garder le bon alignement */

  z-index: 9999; /* Toujours au-dessus du menu */
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;

  -webkit-user-select: none;
  user-select: none;
}

#menuToggle a {
  text-decoration: none;
  color: #e4e4e4;
  display: list-item;

  transition: color 0.3s ease;
}

#menuToggle a:hover {
  color: #e4e4e488;
}

#menuToggle input {
  display: block;
  width: 80px; /* plus large */
  height: 80px; /* plus haut pour couvrir toute la croix */
  position: absolute;
  top: -15px; /* centré verticalement */
  right: -10px; /* centré horizontalement */
  cursor: pointer;
  opacity: 0;
  z-index: 10000; /* Priorité maximale pour la zone de clic */
  -webkit-touch-callout: none;
  pointer-events: auto; /* garantit la prise en compte des clics */
  touch-action: manipulation;
}

#menuToggle span {
  display: flex;
  width: 66px;
  height: 8px;
  margin-bottom: 10px;
  position: relative;

  background: #ffffff;
  border-radius: 3px;

  z-index: 1;
  will-change: transform, opacity;

  transform-origin: 4px 0px;

  transition: transform 0.24s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.24s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
}

#menuToggle span:first-child {
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(-4px, -4px);
  background: #232323;

  z-index: 300;
}

#menuToggle input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);

  z-index: 300;
}

#menuToggle input:checked ~ span:nth-last-child(2) {
  transform: rotate(-45deg) translate(0, -1px);

  z-index: 300;
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  max-width: 400px;
  padding: 50px;
  padding-top: 125px;
  border-radius: 135px;
  background: #fa8072;
  background-repeat: repeat;
  list-style-type: none;
  transform: translateX(100%);
  will-change: transform;
  transition: transform 0.24s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 200;
  pointer-events: none;
  box-shadow: 0 4px 16px -4px rgba(0, 0, 0, 0.18);
}

#menuToggle input:checked ~ ul {
  transform: translateX(35%);
  pointer-events: auto;
}

#menu li {
  padding: 10px 5px;
  font-size: 35px;
}

#menu li a {
  display: flex;
  align-items: center;
  gap: 8px;
}

#menu li a img {
  height: 1em;
  width: auto;
  flex-shrink: 0;
  /* Ajustement de la couleur pour les icônes 01 */
  filter: brightness(0) saturate(100%) invert(92%) sepia(7%) saturate(81%)
    hue-rotate(187deg) brightness(102%) contrast(91%);
  transition: filter 0.2s ease, opacity 0.2s ease;
}

#menu li a:hover img {
  /* Ajustement de la couleur pour les icônes 02 */
  opacity: 0.55;
}

#menu li label {
  cursor: pointer;
}

/* CSS Grid Section présentation
(Mobile First) */
section.presentation {
  text-align: center;
  color: #000000c8;
  display: grid;
  grid-template-rows: auto auto auto;
  grid-template-columns: 100%;
  grid-template-areas:
    "imageNicolasG"
    "titreNicolasG"
    "descriptionNicolasG";
  overflow: hidden; /* Empêche l'animation d'agrandir la page sur mobile */
}

/* CSS Grid Section présentation
(Desktop) */
@media (min-width: 992px) {
  section.presentation {
    text-align: left;
    color: #000000c8;
    display: grid;
    grid-template-rows: auto auto;
    grid-template-columns: minmax(320px, 520px) minmax(0, 1fr);
    grid-template-areas:
      "imageNicolasG titreNicolasG"
      "imageNicolasG descriptionNicolasG";
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    max-width: 1500px;
    padding: 25px;
    column-gap: 30px;
  }
}

/* Section Image Nicolas G
(Mobile First) */
section.imageNicolasG {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-area: imageNicolasG;
}

/* Section Image Nicolas G
(Desktop) */
@media (min-width: 992px) {
  section.imageNicolasG {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    grid-area: imageNicolasG;
    grid-row: 1 / 3; /* L'image occupe les 2 rangées */
  }
}

section.imageNicolasG img {
  max-width: fit-content;
  width: 100%;
}

/* Section Titre Nicolas G
(Mobile First) */
section.titreNicolasG {
  font-size: 34px;
  margin: 20px;
  grid-area: titreNicolasG;
}

/* Section Titre Nicolas G
(Desktop) */
@media (min-width: 992px) {
  section.titreNicolasG {
    font-size: 25px;
    margin: 20px;
    margin-bottom: 5px; /* Espace réduit en bas */
    grid-area: titreNicolasG;
    align-self: end; /* Aligne en bas de sa zone */
  }
}

/* Section Description Nicolas G
(Mobile First) */
section.descriptionNicolasG {
  margin: 20px;
  padding: 25px;
  grid-area: descriptionNicolasG;
  text-align: justify;
  color: #000000c8;
  font-size: 42px;
  line-height: 1.5;
}

/* Section Description Nicolas G
(Desktop) */
@media (min-width: 992px) {
  section.descriptionNicolasG {
    font-size: 23px;
    padding: 0px;
    margin: 20px;
    margin-top: 5px; /* Espace réduit en haut */
    padding-right: 70px;
    align-self: start; /* Aligne en haut de sa zone */
  }
}

/* Ajustement iPad Pro / tablettes larges */
@media (min-width: 992px) and (max-width: 1194px) {
  section.presentation {
    grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
    column-gap: 18px;
    padding: 18px;
  }

  section.titreNicolasG {
    margin: 10px;
    margin-bottom: 4px;
  }

  section.descriptionNicolasG {
    margin: 10px;
    padding-right: 0;
    text-align: left;
    line-height: 1.35;
    font-size: 20px;
  }
}

section.descriptionNicolasG strong {
  color: rgb(71, 156, 226);
}

section.nomSite {
  padding-left: 15px;
  grid-area: nomSite;
}
.nomSite a {
  text-decoration: none;
  color: #ffffff;
}

.nomSite a:hover {
  text-decoration: none;
}

.nomSite .extension {
  text-shadow: 0 0 2px #0ff, 0 0 4px #0ff, 0 0 6px #0ff;
  animation: flickerNeon 3s infinite;
}

/* Clignotement irrégulier */
@keyframes flickerNeon {
  0% {
    opacity: 1;
    text-shadow: 0 0 2px #0ff, 0 0 4px #0ff, 0 0 6px #0ff;
  }
  8% {
    opacity: 0.6;
    text-shadow: none;
  }
  10% {
    opacity: 1;
    text-shadow: 0 0 2px #0ff, 0 0 4px #0ff, 0 0 6px #0ff;
  }
  20% {
    opacity: 0.3;
    text-shadow: none;
  }
  22% {
    opacity: 1;
    text-shadow: 0 0 2px #0ff, 0 0 4px #0ff, 0 0 6px #0ff;
  }
  50% {
    opacity: 0.9;
  }
  70% {
    opacity: 0.4;
    text-shadow: none;
  }
  72% {
    opacity: 1;
    text-shadow: 0 0 2px #0ff, 0 0 4px #0ff, 0 0 6px #0ff;
  }
  100% {
    opacity: 1;
  }
}

/* Section CV */
section.telechargerCv {
  text-align: center;
  background-color: #2a6bc027;
  border-radius: 25px;
  padding: 20px;
  margin: 25px;
  color: #000000c8;
  box-shadow: 0 5px 12px -7px rgba(0, 0, 0, 0.2);
}

section.telechargerCv h2 {
  font-size: 45px;
}

/* Desktop */
@media (min-width: 992px) {
  section.telechargerCv {
    text-align: right;
    background-color: #2a6bc027;
    border-radius: 25px;
    padding: 20px;
    margin: 10px;
    color: #000000c8;
  }

  section.telechargerCv h2 {
    font-size: 34.5px;
  }
}

section.telechargerCv a {
  transition: 0.4s;
}

/* Logo CV Mobile First */
section.telechargerCv img {
  width: 140px;
}

/* Logo CV Desktop */
@media (min-width: 992px) {
  section.telechargerCv img {
    width: 50px;
  }
}

section.telechargerCv a:hover {
  filter: drop-shadow(5px 5px 4px #2a6bc0) brightness(1.25);
  transition: 0.2s;
}

div.pastilleAlbum,
div.pastillesSpotify {
  display: flex; /* Active Flexbox pour gérer les éléments */
  flex-direction: column; /* Force l'affichage vertical */
  align-items: center; /* Centre les éléments horizontalement */
  justify-content: center; /* Centre les éléments horizontalement */
  gap: 30px; /* Espace entre les éléments */
  padding: 25px;
}

div.pastillesBandcamp {
  display: flex; /* Active Flexbox pour gérer les éléments */
  flex-wrap: wrap;
  justify-content: center; /* Centre les éléments horizontalement */
  gap: 30px; /* Espace entre les éléments */
  padding: 25px;
}

div.pastilleAlbum iframe,
div.pastillesBandcamp iframe,
div.pastillesSpotify iframe {
  width: 750px; /* Taille fixe pour les pastilles */
  height: 500px; /* Taille cohérente pour tous */
  border: 2px solid #e4e4e4; /* Bordures pour différencier les pastilles */
  border-radius: 10px; /* Coins arrondis pour un effet esthétique */
  background-color: #e4e4e4; /* Couleur de fond pour ressembler à une pastille */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Ombre pour donner un effet de profondeur */
}

/* Section Musiques DESKTOP */
@media (min-width: 992px) {
  section.musiques {
    text-align: center; /* Centrer les titres */
    color: #000000c8;
    padding: 10px;
  }
}

/* Section Musiques MOBILE FIRST */
@media (max-width: 991px) {
  section.musiques {
    text-align: center; /* Centrer les titres */
    font-size: 33px;
    color: #000000c8;
    padding: 10px;
  }
}

div.pastillesBandcamp {
  padding: 20px;
}

/* Section infos supplémentaire */
section.infosSupplementaire {
  color: #000000c8;
  padding: 25px;
  background-size: cover;
}

section.infosSupplementaire h2 {
  font-size: 45px;
}

section.infosSupplementaire li {
  font-size: 40px;
}

section.infosSupplementaire a {
  text-decoration: none;
  font-size: smaller;
  color: #2a6bc0;
  transition: 0.3s;
}

section.infosSupplementaire a:hover {
  text-decoration: none;
  filter: brightness(1.25);
}

@media (max-width: 991px) {
  section.infosSupplementaire a img[src*="icons8-external-link.svg"] {
    width: 30px;
    height: 30px;
  }
}

section.infosSupplementaire div {
  padding: 15px;
}

/* Desktop */
@media (min-width: 992px) {
  section.infosSupplementaire {
    color: #000000c8;
    padding: 10px;
    background-size: cover;
  }

  section.infosSupplementaire h2 {
    font-size: 34.5px;
  }

  section.infosSupplementaire li {
    font-size: 23px;
  }

  section.infosSupplementaire div {
    padding: 0px;
  }
}

/* Contact Mobile First*/
div.contact {
  border: 10px solid black;
  border-radius: 200px;
  text-align: center;
  color: black;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.28);
}

div.contact h2 {
  font-size: 45px;
}

/** Contact Desktop **/
@media (min-width: 992px) {
  div.contact {
    border: 5px solid black;
    border-radius: 100px;
    text-align: center;
    color: black;
    background-color: rgb(255, 255, 255);
  }

  div.contact h2 {
    font-size: 34.5px;
  }
}

/** Contact IMG Mobile First **/
div.contact img {
  margin: 22px;
  height: 100px;
}

/** Contact IMG Desktop **/
@media (min-width: 992px) {
  div.contact img {
    margin: 11px;
    height: 50px;
  }
}

div.contact a {
  cursor: pointer;
  transition: 0.3s;
}

div.contact a:hover {
  cursor: pointer;
  transition: 0.5s;
  height: 50px;
  background-color: #fa8072;
  border-radius: 100%;
  box-shadow: 0 3px 10px 3px #ffa89f;
}

/* Section de la galerie 
(Desktop) */
@media (min-width: 992px) {
  section.galerie {
    text-align: center;
    padding: 10px;
    color: #000000c8;
    background-color: rgb(6, 97, 172);
    background-color: #e4e4e4;
    background-image: url("/img/backgrounds/ng_dots_background.avif");
    background-repeat: repeat;
  }

  section.galerie img {
    margin: 20px;
    border: 8px solid #000000c8;
    border-radius: 15px;
    width: 100%;
    max-width: 615px;
    box-shadow: 0 4px 12px -6px rgba(0, 0, 0, 0.26);
  }

  section.galerie video {
    margin: 20px;
    border: 8px solid #000000c8;
    border-radius: 15px;
    width: 100%;
    max-width: 615px;
    box-shadow: 0 4px 12px -6px rgba(0, 0, 0, 0.26);
  }
}

/* Section de la galerie 
(Mobile First) */
@media (max-width: 991px) {
  section.galerie {
    text-align: center;
    font-size: 33px;
    padding: 10px;
    color: #000000c8;
    background-color: rgb(6, 97, 172);
    background-color: #e4e4e4;
    background-image: url("/img/backgrounds/ng_dots_background.avif");
    background-repeat: repeat;
  }

  section.galerie img {
    margin: 20px;
    border: 12px solid #000000c8;
    border-radius: 15px;
    width: 90%;
    box-shadow: 0 4px 12px -6px rgba(0, 0, 0, 0.26);
  }

  section.galerie video {
    margin: 20px;
    border: 12px solid #000000c8;
    border-radius: 15px;
    width: 90%;
    box-shadow: 0 4px 12px -6px rgba(0, 0, 0, 0.26);
  }
}

/** MEDIAS VIDÉOS **/
div.mp4 {
  padding-top: 60px;
}

#video {
  cursor: pointer;
  transition: 0.3s;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

#video:hover {
  border-color: #fa8072;
  /* Ajoute un effet de zoom */
  transform: scale(1.05);
  /* Ajoute une ombre portée */
  box-shadow: 0 12px 26px -8px rgba(0, 0, 0, 0.38);
}

#video:fullscreen {
  border: none; /* Supprime la bordure en plein écran */
  border-radius: 0px; /* Supprime les coins arrondis en plein écran */
}

/** MEDIAS IMAGES **/
/** À RÉDUIRE! **/
#image01 {
  cursor: pointer;
  transition: 0.3s;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

#image01:hover {
  border-color: #fa8072;
  /* Ajoute un effet de zoom */
  transform: scale(1.05);
  /* Ajoute une ombre portée */
  box-shadow: 0 12px 26px -8px rgba(0, 0, 0, 0.38);
}

#image02 {
  cursor: pointer;
  transition: 0.3s;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

#image02:hover {
  border-color: #fa8072;
  /* Ajoute un effet de zoom */
  transform: scale(1.05);
  /* Ajoute une ombre portée */
  box-shadow: 0 12px 26px -8px rgba(0, 0, 0, 0.38);
}

#image03 {
  cursor: pointer;
  transition: 0.3s;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

#image03:hover {
  border-color: #fa8072;
  /* Ajoute un effet de zoom */
  transform: scale(1.05);
  /* Ajoute une ombre portée */
  box-shadow: 0 12px 26px -8px rgba(0, 0, 0, 0.38);
}

#image04 {
  cursor: pointer;
  transition: 0.3s;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

#image04:hover {
  border-color: #fa8072;
  /* Ajoute un effet de zoom */
  transform: scale(1.05);
  /* Ajoute une ombre portée */
  box-shadow: 0 12px 26px -8px rgba(0, 0, 0, 0.38);
}

#image05 {
  cursor: pointer;
  transition: 0.3s;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

#image05:hover {
  border-color: #fa8072;
  /* Ajoute un effet de zoom */
  transform: scale(1.05);
  /* Ajoute une ombre portée */
  box-shadow: 0 12px 26px -8px rgba(0, 0, 0, 0.38);
}

#image06 {
  cursor: pointer;
  transition: 0.3s;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

#image06:hover {
  border-color: #fa8072;
  /* Ajoute un effet de zoom */
  transform: scale(1.05);
  /* Ajoute une ombre portée */
  box-shadow: 0 12px 26px -8px rgba(0, 0, 0, 0.38);
}

#image07 {
  cursor: pointer;
  transition: 0.3s;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

#image07:hover {
  border-color: #fa8072;
  /* Ajoute un effet de zoom */
  transform: scale(1.05);
  /* Ajoute une ombre portée */
  box-shadow: 0 12px 26px -8px rgba(0, 0, 0, 0.38);
}

/* Arrière plan de la fenêtre (Background) */
.fenetre {
  display: none; /* Cachée par defaut */
  position: fixed; /* Reste en place */
  z-index: 100; /* Reste au dessus */
  padding-top: 100px; /* Emplacement de la boite */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; /* Active de scroll si nécessaire */
  background-color: rgba(0, 0, 0, 0);
  opacity: 0;
  transition: background-color 0.28s ease, opacity 0.28s ease;
}

.fenetre.is-open {
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 1;
}

/* CSS Image affichée dans la fenêtre */
.contenueFenetre {
  margin: auto;
  display: block;
  width: 75%;
  max-width: 75%;
  opacity: 0;
  transform: scale(0.78);
  transform-origin: center center;
  transition: opacity 0.52s ease, transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

/* CSS Information image selectionée */
#infosImage {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  font-size: 30px;
  padding: 10px;
  height: 150px;
  font-family: "Poppins", sans-serif;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.fenetre.is-open.is-ready .contenueFenetre {
  opacity: 1;
  transform: scale(1);
}

.fenetre.is-open.is-ready #infosImage {
  opacity: 1;
  transform: translateY(0);
}

/* Affichage mobile de la fenêtre de la galerie*/
@media only screen and (max-width: 700px) {
  .contenueFenetre {
    width: 100%;
  }
}

/* Bouton retour en haut 
(Mobile First) */
.haut a {
  background-color: #2a6bc0;
  font-size: 80px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  height: 150px;
  width: 150px;
  border: 8px solid #000000c8;
  border-radius: 100%;
  cursor: pointer;
  transition: 0.3s;
  padding: 12px;
  text-decoration: none;
  color: #5bd5fe;
  box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.28);
}

/* Bouton retour en haut 
(Desktop) */
@media (min-width: 992px) {
  .haut a {
    background-color: #5bd5fe;
    font-size: 20px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    height: 60px;
    width: 60px;
    border: 4px solid #2a6bc0;
    border-radius: 100%;
    cursor: pointer;
    transition: 0.3s;
    padding: 12px;
    text-decoration: none;
    color: #2a6bc0;
  }
}

.haut a:hover {
  text-decoration: none;
  color: #000000c8;
  background-color: #fa8072;
  border-color: #000000c8;
}

/* ESSAYER DE RÉGLER LE PROBLÈME D'AFFICHAGE DU BOUTON 
(ENLEVER LES COULEURS POUR VOIR */
button.haut {
  background-color: #001b3f;
  border: 5px solid #001b3f;
}

/** Copyright Mobile First **/
section.copyright {
  height: 130px;
  background-color: #001b3f;
  color: rgb(255, 255, 255);
  text-align: center;
}

/* Copyright Desktop */
@media (min-width: 992px) {
  section.copyright {
    height: 89px;
    font-size: 23px;
    background-color: #001b3f;
    color: rgb(255, 255, 255);
    text-align: center;
  }
}


/** Footer Mobile First **/
footer {
  background-color: #001b3f;
  font-size: 33px;
}

/** Footer Desktop **/
@media (min-width: 992px) {
  footer {
    background-color: #001b3f;
  }
}

/* Affiche la navigation en desktop, cache le menu hamburger */
@media (min-width: 993px) {
  .navigation {
    display: flex !important;
  }
  .menuHamburger {
    display: none !important;
  }
}

/* Affiche le menu hamburger en mobile, cache la navigation */
@media (max-width: 992px) {
  .navigation {
    display: none !important;
  }
  .menuHamburger {
    display: flex !important;
  }
}
