  /* Importation des polices */
  @font-face {
    font-family: 'Amusette';
    src: url('font/amustte/Amusette-Regular.ttf') format('truetype');
  }

  @font-face {
    font-family: 'Amusette';
    src: url('font/amustte/Amusette-Italic.ttf') format('truetype');
    font-style: italic;
  }

  @font-face {
    font-family: 'Amusette Outline';
    src: url('font/amustte/AmusetteOutline-Regular.ttf') format('truetype');
  }

  @font-face {
    font-family: 'Amusette Outline';
    src: url('font/amustte/AmusetteOutline-Italic.ttf') format('truetype');
    font-style: italic;
  }

  @font-face {
    font-family: 'White Smile';
    src: url('font/white-smile/White-Smile.otf') format('opentype');
  }



/*header*/

body {
    margin: 0;
    position: relative;
  }

  a {
    text-decoration: none;
    color: #ffffff;
  }

  .site-header {
    background-color: #175732;
    border-bottom: 1px solid #ccc;
    padding: .5em 1em;
    display: flex;
    justify-content: space-between;
  }

  .site-identity h1 {
    margin: .1em 0;
    display: inline-block;
  }

  .site-navigation ul,
  .site-navigation li {
    margin: 0;
    padding: 0;
  }

  .site-navigation li {
    display: inline-block;
    margin: 1.7em 1.5em 1.5em 1.5em;
  }

  .logo {
    width: 100%;
    height: 120px;
  }

  .nav {
    font-size: 20pt;
    font-family: 'Amusette', sans-serif;
  }

  /*corp + footer*/

  body {
    font-family: Arial, sans-serif;
    background-color: #e0fbe8;
    color: #333;
  }



  .site-footer {
    background-color: #175732;
    color: white;
    text-align: center;
    padding: 20px 0;
  }

  .footer-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
  }

  .footer-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    margin: 0 10px;
  }

  .footer-links a:hover {
    text-decoration: underline;
  }

  /* ICONES RÉSEAUX SOCIAUX */
  .footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .footer-socials a {
    display: flex;
    align-items: center;
  }

  .footer-socials img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
  }

  .footer-socials img:hover {
    transform: scale(1.2);
  }