header {
  background-color: #2d2d2d; /* Fond du header supp */
  padding: 20px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3), 1px 1px 4px 10px rgba(244, 195, 0, 0.25); /* Ombre jaune */
  border-radius: 2px;
  position: sticky;
  top: 0;
  z-index: 10;
}

nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-link {
  color: #F4C300; /* Texte bandeau */
  border: 2px solid transparent;
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 600;
}

.nav-link:hover,
.nav-link.active {
  border-color: #F4C300;           /* Jaune CV */
  background-color: #F4C300;       /* Jaune CV */
  color: #2d2d2d;                  /* Texte foncé pour le contraste */
  box-shadow: inset 0 0 8px rgba(0,0,0,0.2);
}


/* Le body occupe toute la hauteur de l’écran, impose le footer au pied */
html, body {
  height: 100%;
  margin: 0;
}

/* Le body devient une colonne verticale */
body {
  display: flex;
  flex-direction: column;
}

/* Le contenu principal prend toute la place disponible */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

footer {
  font-size: 0.8rem;
  font-style: italic;
  text-align: center;
  padding: 25px;
  color: #F4C300; /* Texte foncé (lisible sur fond clair) */
  border-top: 1px solid #F4C300; /* Liseré jaune CV */
  background: linear-gradient(180deg, #2d2d2d 0%, #1f1f1f 100%); /* Gris clair CV */
  margin-top: auto;
  animation: fadeInUp 1s ease;
}


@media (max-width: 600px) {
  nav {
    gap: 10px;
  }
}

a {
  text-decoration: none;
  color: inherit;
}

/* Bandeau supérieur */
.footer-top {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  color: #F4C300; /* Accent jaune CV */
}
