/* CSS du site web de la Boucherie Parisienne */

/* Corps de la page */

body {
  margin: 0;
  background-color: #d8d8d8ff;
  padding-bottom: 70px;
  font-family: Arial, Helvetica, sans-serif;
}

/* Footer de la page */

.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #86012dff;
  color: white;
  text-align: center;
}

/* Logos réseaux sociaux footer */

.fa {
  padding: 10px;
  font-size: 30px;
  width: 30px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
  border-radius: 50%;
}

.fa:hover {
  opacity: 0.7;
}

.fa-facebook {
  color: white;
  float: right;
  margin-right: 20px;
}

.fa-instagram {
  color: white;
  float: right;
  margin-right: 10px;
}

/* Section image avec texte à côté */

.high-section {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 40px;
  background-color: white;
  border-radius: 10px;
}

.high-img {
  width: 45%;
  border-radius: 10px;
}

.high-text {
  width: 55%;
  font-family: Arial, Helvetica, sans-serif;
  font-size: large;
  background-color: white;
  border-radius: 10px;
  padding: 20px;
}

/* Barre de navigation */

ul.topnav {
  position: sticky;
  top: 0;
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #86012dff;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  z-index: 1000;
}

ul.topnav li {
  float: left;
}

ul.topnav li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

ul.topnav li a:hover:not(.active) {
  background-color: #3c0014ff;
}

ul.topnav li a.active {
  background-color: #690124ff;
}

ul.topnav li.right {
  float: right;
}

/* Menu burger sur mobile */

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  width: 25px;
  height: 3px;
  background: black;
}

/* Styles pour les écrans mobile */

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

  * {
    box-sizing: border-box;
  }

  /* Adaptation de la barre de navigation */

  /* menu caché */
  ul.topnav {
    display: none;
    width: 100%;
  }

  /* menu visible */
  ul.topnav.open {
    display: block;
  }

  ul.topnav li {
    float: none;
    text-align: center;
  }

  ul.topnav li.right {
    float: none;
  }

  /* menu burger */

  .burger {
    display: flex;
    margin: 10px;
  }

  /* Adaptation de la section image avec texte à côté */
  .high-section {
    flex-direction: column;
    margin: 20px;
  }

  .high-img {
    width: 100%;
  }

  .high-text {
    width: 100%;
    text-align: center;
  }



}