/* footer.css : styles pour le pied de page du site */

footer {
  background: linear-gradient(120deg, #232946 0%, #3a4be7 60%, #6c63ff 100%);
  color: #fff;
  padding: 2rem 1rem 1.2rem 1rem;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  margin-top: 3rem;
  box-shadow: 0 -8px 32px 0 rgba(35,41,70,0.18), 0 1.5px 0 #fff2 inset;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.2em;
  font-size: 1.08em;
  margin-bottom: 0.3em;
  text-shadow: 0 1px 0 #fff2;
}
.footer-content a {
  color: #b8c1ec;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s, text-shadow 0.2s;
}
.footer-content a:hover {
  color: #f7c873;
  text-shadow: 0 2px 12px #f7c87399;
}
.footer-note {
  color: #f7c873;
  font-size: 1em;
  margin-bottom: 0.2em;
  font-style: italic;
  text-shadow: 0 1px 0 #fff2;
}
