@media screen and (max-width: 549px) {

  * {
    outline: 1px solid rgb(8, 0, 255);
  }

  div.container {
      max-width: 100%;
  }

  /* RESET */
  body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }

  /* Flex container générique */
  .flex-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0 auto;
    box-sizing: border-box;
  }


  /* Titre principal */

  #name {
    display: flex;
    align-items: center;
    justify-content: baseline;
  }

  #mainDescription {
    color: #2771cd;
    text-align: center;
    font-size: 32pt;
    margin: 0;
  }


  /* Formulaire de réservation */
  #reservationselect {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 250px;
    width: 90%;
    max-width: 350px;
    background-color: rgba(9, 9, 32, 0.9);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 0 6px rgba(202, 228, 225, 0.9), 0 0 30px rgba(69, 96, 215, 0.3);
  }

  #reservationForm {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  #reservationForm input,
  #reservationForm button {
    padding: 10px;
    border-radius: 10px;
    border: none;
    font-size: 14px;
    background-color: transparent;
    color: #fff;
    border: 1px solid #a2a3a3;
  }

  #searchButton {
    background-color: #207fe5;
    color: white;
    margin-top: 10px;
    transition: background-color 0.3s, transform 0.2s;
  }

  #searchButton:hover {
    background-color: #165bb6;
    transform: scale(1.05);
  }

  #sloganText {
    font-size: 24px;
    font-weight: 100;
    text-align: center;
    font-style: italic;
    color:#2771cd;
    font-weight: light !important;
}

  /* Image */
  #pictureMain {
    display: none
  }

    #reservationForm input {
      width: 100%;
    }

    #searchButton {
      width: 100%;
      margin-top: 10px;
    }


    .flex-container {
      padding: 20px 10px;
      gap: 20px;
    }



    @media (max-width: 768px) {
  .miniContainer {
    width: 100%;
  }
}



    .burger {
      display: flex;
      flex-direction: column;
      align-items: end;
      cursor: pointer;
      gap: 5px;
      margin-left: 20px;
    }

    .burger div {
      width: 25px;
      height: 3px;
      background-color: #fff;
      transition: all 0.3s ease;
    }

    .burger.active div:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .burger.active div:nth-child(2) {
      opacity: 0;
    }

    .burger.active div:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    .nav-links {
      position: fixed;
      top: 0;
      left: -250px;
      flex-direction: column;
      background: #333;
      width: 220px;
      height: 100vh;
      padding: 60px 20px;
      gap: 20px;
      transition: left 0.3s ease;
      z-index: 999;
      display: flex;
    }

    .nav-links.show {
      left: 0;
    }

    .nav-links li {
      list-style: none;
    }

    .nav-links li a {
      text-decoration: none;
      color: #fff;
      font-size: 20px;
    }

    .push {
      display: none;
    }
  }
