/* General */
/* ------------------------------------------------------------------------ */

header {
  min-width: 320px;
  width: 100%;
  margin-top: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #323232;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  min-width: 320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
  font-family: "rift-soft", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
}

/* Logo */
/* ------------------------------------------------------------------------ */

header .logo h1 {
  color: #ffffff;
  font-size: 28px;
  text-transform: uppercase;
}

header .logo h1 a {
  color: #ffffff;
}

header .logo h1 a span {
  color: #cc6a80;
}

/* Liens */
/* ------------------------------------------------------------------------ */

header nav ul.desktop-menu {
  display: flex;
  align-items: center;
  justify-content: center;
}

header nav ul.desktop-menu li a,
header nav ul.desktop-menu li#button-menu {
  color: #ffffff;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-left: 12px;
  margin-right: 12px;
}

header nav ul.desktop-menu li.link a:hover {
  color: #cc6a80;
}

header nav ul.desktop-menu li#button-menu {
  background: rgb(195, 78, 104);
  background: linear-gradient(90deg, rgba(195, 78, 104, 1) 0%, rgba(118, 60, 127, 1) 100%);
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 8px;
  padding-bottom: 8px;
  border-radius: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

header nav ul.desktop-menu li#button-menu:hover {
  background: rgb(204, 106, 128);
  background: linear-gradient(90deg, rgba(204, 106, 128, 1) 0%, rgba(142, 78, 152, 1) 100%);
}

header nav ul.desktop-menu li#button-menu .mobile {
  display: none;
}

header nav ul.desktop-menu li#button-menu .desktop {
  display: block;
}

/* Colorful Menu */
/* ------------------------------------------------------------------------ */

.colorful-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  min-width: 320px;
  max-width: 520px;
  width: 100%;
  overflow-y: auto;
  z-index: 8000;
  background-color: #141414;
  padding-top: 60px;
  padding-bottom: 60px;
}

.visible {
  display: block;
}

.slide-in,
.visible:not(.slide-out) {
  animation: slide-in 0.5s ease-in-out forwards;
}

@keyframes slide-in {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

.slide-out {
  animation: slide-out 0.5s ease-in-out forwards;
}

@keyframes slide-out {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}

.close-menu {
  background: rgb(195, 78, 104);
  background: linear-gradient(180deg, rgba(195, 78, 104, 1) 0%, rgba(118, 60, 127, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 32px;
  cursor: pointer;
  margin-left: 32px;
  margin-right: 16px;
}

.close-menu:hover {
  background: rgb(204, 106, 128);
  background: linear-gradient(180deg, rgba(204, 106, 128, 1) 0%, rgba(142, 78, 152, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 32px;
  cursor: pointer;
}

.colorful-menu .header {
  display: flex;
  align-items: center;
  justify-content: left;
  margin-bottom: 32px;
}

/* Colorful Menu - Liens */
/* ------------------------------------------------------------------------ */

header .colorful-menu nav ul.links li a {
  color: #ffffff;
  font-size: 24px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  border-bottom: 1px solid #505050;
  flex-wrap: wrap;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 32px;
  padding-right: 32px;
}

header .colorful-menu nav ul.links li a:hover {
  border-bottom: 1px solid #cc6a80;
  background: rgb(195, 78, 104);
  background: linear-gradient(180deg, rgba(195, 78, 104, 1) 0%, rgba(118, 60, 127, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Media Queries */
/* ------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------ */

/* Mobile */
/* ------------------------------------------------------------------------ */

@media only screen and (min-width: 0px) and (max-width: 480px) {
  /* General */
  /* ------------------------------------------------------------------------ */
  header nav ul.desktop-menu li#button-menu .mobile {
    display: flex;
  }

  header nav ul.desktop-menu li#button-menu .desktop {
    display: none;
  }

  header nav ul li.link {
    display: none;
  }
}

/* Mobile Paysage */
/* ------------------------------------------------------------------------ */
@media only screen and (min-width: 481px) and (max-width: 640px) {
  /* General */
  /* ------------------------------------------------------------------------ */
  header nav ul.desktop-menu li#button-menu .mobile {
    display: flex;
  }

  header nav ul.desktop-menu li#button-menu .desktop {
    display: none;
  }

  header nav ul li.link {
    display: none;
  }
}

/* Tablette Portrait */
/* ------------------------------------------------------------------------ */
@media only screen and (min-width: 641px) and (max-width: 800px) {
  /* General */
  /* ------------------------------------------------------------------------ */
  header nav ul.desktop-menu li#button-menu .mobile {
    display: flex;
  }

  header nav ul.desktop-menu li#button-menu .desktop {
    display: none;
  }
}

/* Tablette paysage */
/* ------------------------------------------------------------------------ */
@media only screen and (min-width: 800px) and (max-width: 960px) {
  /* General */
  /* ------------------------------------------------------------------------ */
}

/* Petit écran */
/* ------------------------------------------------------------------------ */
@media only screen and (min-width: 961px) and (max-width: 1279px) {
  /* General */
  /* ------------------------------------------------------------------------ */
}
