    footer {
    background-color: #12086F;
    color: white;
    text-align: center;
    padding: 60px 20px 20px 20px;
    position: relative;
    overflow: hidden;
  }

  footer h2 {
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: normal;
    font-family: "Comfortaa", sans-serif;
    color: white;
  }

  footer .phone {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  footer .email {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 30px;
    display: block;
    color: white;
  }

  footer .links {
    font-size: 14px;
    margin-top: 20px;
  }

  footer .links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-weight: bold;
  }

  footer .links a:hover {
    text-decoration: underline;
  }
   nav {
            background-color: #12086F; /* bleu foncé */           
            text-align: center;
            padding-bottom: 61px;
            padding-top: 61px;
            
        }

        nav a {
            color: white;
            text-decoration: none;
            font-weight: bold;
            margin: 0 20px;
            font-size: 25px;
            
        }

        nav a:hover {
            color: #C4C1DB; /* gris clair au survol */
            cursor: pointer;
        }


  .hidden{
    display: none;
  }      
   .logo-mb{
    display: flex;
    position: absolute;
    top: 10px;
    left: 20px;
    width: 150px;
  }

  /*menu burger*/
.burger {
  font-size: 24px;
  background-color: white;
  cursor: pointer;
  display: none; /* caché sur grand écran */
}



/* Version mobile */
@media (max-width: 768px) {
  .burger {
    display: block;
    width: fit-content;
    padding: 5px;
    font-size: 40px;
    background-color: #12086F;
    color: white;
  }
  nav {
    background-color: #12086F;
    display: flex;
    justify-content: end;
  }
  .nav-links {
    display: none;
    background-color: #12086F;
  }
  .nav-links a {
    color: white;
    font-size: 25px;
    text-decoration: none;
    margin: 15px 0;
    font-weight: bold;
    display: block;
    text-align: center;
   
  }
  .nav-links a.active{
    color: #C4C1DB;
  }
  .nav-links a:first-child {
    color: #C4C1DB;
  }
  .nav-links a:nth-child(2) {
    padding: 10px 20px;
    border-radius: 4px;
  }

  }
  .close {
    color: white;
    justify-content: end;
    font-size: 70px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
  }

  .active {
    display: flex; /* s'affiche quand actif */
    flex-direction: column;
  }
  .hidden {
    display: none;
  }
  .fullscreen{
    position: absolute;
    /* display: block; */
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-evenly;
    top: 0px
  }

 

 



