* { /* RESET */
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.filtre_hero {
  background-color: #FFFFFF;
  z-index: 8;
  position: relative;
  width: 100%;
}

.hero {
  background-color: #FFFFFF;
  background-image: url(../../img/accueil.jpg);
  background-size: cover;
  background-position: center;
  opacity: 0.6;
  width: 100%;
  height: 100vh;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  color: #FFFFFF;
}
.hero p {
  font-size: 40px;
}
.hero h1 {
  font-size: 180px;
  font-family: "Dancing Script", cursive;
  font-weight: 400;
  color: #FFFFFF;
}
.hero a {
  font-size: 40px;
  color: #FFFFFF;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: whitesmoke;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
header .navigation {
  display: grid;
  width: 100%;
  color: #000000;
  grid-template-columns: 125px 1fr 140px;
  grid-template-rows: repeat(2, 1fr);
  grid-template-areas: "tel      horaires   localisation" "navbar    navbar       navbar   ";
}
header .navigation .tel {
  grid-area: tel;
  display: flex;
  align-items: center;
  gap: 5px;
}
header .navigation .tel img {
  height: 15px;
}
header .navigation .horaires {
  grid-area: horaires;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 13px;
}
header .navigation .localisation {
  grid-area: localisation;
  display: flex;
  align-items: center;
  gap: 5px;
}
header .navigation .localisation .adresse {
  display: flex;
  flex-direction: column;
  align-items: center;
}
header .navigation .localisation img {
  height: 15px;
}
header .navigation .navbar {
  grid-area: navbar;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  font-size: 20px;
}
header .navigation .navbar a {
  color: #000000;
}

main {
  width: 100%;
}
main section {
  scroll-margin-top: 74px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  position: fixed;
  bottom: 0;
  z-index: 5;
  width: 100%;
  background-color: whitesmoke;
}
footer img {
  height: 25px;
}
footer .paiement {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 5px;
}
footer .infos {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3px;
  padding: 3px 0;
}
footer .infos a {
  color: #000000;
}
footer .socials {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 5px;
}