body {
  font-size: 18px;
  overflow-x: hidden;
  height: 100%;
  background-color: #0a0a0a;
  color: #ffffff;
  font-family: "Assistant", sans-serif;
  line-height: 1.3;
}

* {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #ffffff;
}

.item-blur {
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: solid 2px rgba(255, 255, 255, 1);
  border-radius: 15px;
  padding: 25px;
  width: auto;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  display: block;
}

/*Nav*/

.logo {
  width: 54px;
  z-index: 10;
}

.menu-gite > .menu-gite-default > div {
  width: 10px;
  height: 10px;
  margin-right: 10px;
}

.arrow-menu {
  transform: rotate(-90deg);
  transition: transform 0.1s ease;
}

.menu-gite-default {
  display: flex;
  align-items: center;
}

.menu-gite-content {
  display: none;
  position: absolute;
}

.menu-gite-content > a {
  padding-top: 1em;
}

.menu-list {
  display: flex;
  justify-content: space-between;
  list-style-type: none;
}

.menu-list > li {
  cursor: pointer;
}

.menu {
  width: 400px;
  margin-left: 100px;
}

nav {
  display: flex;
  align-items: center;
  padding: 60px;
  position: absolute;
}

.lien-menu {
  transition: transform 0.2s ease;
  position: relative;
  display: block;
}

.span-nav {
  font-size: small;
  font-weight: bold;
}

.burger {
  display: none;
  z-index: 10;
  cursor: pointer;
}

.burger.active .bar:nth-child(1) {
  transform: rotate(-45deg) translate(-8px, 6px);
}

.burger.active .bar:nth-child(2) {
  opacity: 0;
}

.burger.active .bar:nth-child(3) {
  transform: rotate(45deg) translate(-8px, -6px);
}

.bar {
  width: 30px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
  margin: 7px 0;
  transition: 0.2s;
}

/*Titres*/

h1 {
  font-family: "Tangerine", serif;
  font-weight: bold;
  font-size: 100px;
  text-align: center;
  width: 80%;
}

h2 {
  font-family: "Tangerine", serif;
  font-size: 72px;
  text-align: center;
  width: 80%;
}

h3 {
  font-family: "Tangerine", serif;
  font-weight: bold;
  font-size: 170px;
  text-align: center;
  width: 80%;
}

/*Boutons*/

.button-link {
  cursor: pointer;
  outline: none;
  color: inherit;
  font: inherit;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: solid 2px rgba(255, 255, 255, 1);
  border-radius: 15px;
  padding: 15px;
  transition: background-color 0.1s ease;
  margin-top: 50px;
  margin-bottom: 20px;
}

.button-link:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

/* Haut de page (hors accueil)*/

.haut-de-page {
  display: flex;
  height: 100vh;
}

.haut-de-page > div:nth-child(1) {
  width: 67%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.haut-de-page > div:nth-child(1) > p {
  width: 45%;
  text-align: center;
}

.haut-de-page > div:nth-child(2) {
  width: 33%;
}

/*footer*/

footer {
  background-color: #0a0a0a;
  padding: 6em;
}

footer > div:nth-child(1) {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

footer > div:nth-child(1) > hr {
  width: 50%;
  height: 2px;
  color: #ffffff;
  margin-top: 2em;
  margin-bottom: 2em;
}

.logo-footer {
  width: 100px;
  margin-bottom: 1em;
}

footer > div:nth-child(2) {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-link {
  width: 50%;
  display: flex;
  justify-content: space-between;
}

.social-link {
  width: 20px;
  display: inline-block;
}

.pages,
.suivez-nous,
.contactez-nous {
  display: flex;
  flex-direction: column;
}

.flex-link p,
.flex-link a {
  margin-top: 15px;
}

/*caroussel*/

.arrow-navigation {
  width: 60px;
  height: 60px;
  margin: 10px;
}

/*popup*/

.popup-bg {
  position: fixed;
  z-index: 105;
  height: 100%;
  width: 100%;
  background-color: rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(20px);
  display: none;
}

.popup {
  position: absolute;
  height: 900px;
  width: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.popup > img {
  height: 900px;
  width: 720px;
  border-radius: 20px;
}

/* Down Button */

.down {
  margin-top: 5em;
  width: 30px;
  transition: 0.2s ease;
  cursor: pointer;
}

/*Médias queries*/

@media (max-width: 1250px) {
  .flex-link {
    width: 80%;
  }

  footer > div:nth-child(1) > hr {
    width: 80%;
  }

  .popup > img {
    border-radius: 20px;
  }
}

@media (max-width: 1340px) {
  h3 {
    font-size: 120px;
  }
}

@media (max-width: 900px) {
  .burger {
    display: block;
  }

  .menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    z-index: 5;
    background-color: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(20px);
    margin-left: 0;
  }

  .menu-list {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-size: 54px;
    font-weight: 600;
  }

  .menu-gite-content {
    display: none;
    position: absolute;
  }

  nav {
    justify-content: space-between;
    width: 100%;
  }

  .menu-gite-content > a {
    padding-top: 0;
    margin-left: 30px;
  }

  .translate-lien {
    transition: transform 0.2s ease;
  }

  .menu-gite > .menu-gite-default > div {
    width: 20px;
    margin-right: 10px;
  }

  /*Titres*/

  h1 {
    font-size: 80px;
  }

  h2 {
    font-size: 64px;
  }

  /* Footer */
  .flex-link {
    flex-direction: column;
    align-items: center;
  }

  .flex-link > div {
    align-items: center;
    margin-top: 2em;
  }
}

@media (max-width: 750px) {
  nav {
    padding: 40px;
  }
}

@media (max-width: 500px) {
  .menu-list {
    font-size: 36px;
  }

  /*Titres*/

  h1 {
    font-size: 70px;
  }

  h2 {
    font-size: 55px;
  }

  h3 {
    font-size: 95px;
  }

  /* Footer */

  footer {
    padding-left: 1.5em;
    padding-right: 1.5em;
  }
}
