/* Boutons */
a {
  color: var(--accent-warm);
  text-decoration: none;
}

a:hover {
  color: var(--accent-cold);
  text-decoration: none;
}

::selection {
  background: rgba(180, 0, 255, .45);
  color: #FFFFFF;
}

.sbtn, .contact-form .sbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 19px;
  border-radius: 999px;
  border: 1px solid rgba(217, 164, 65, .46);
  background:
    linear-gradient(135deg, rgba(244, 239, 225, .14), rgba(180, 0, 255, .16)),
    rgba(8, 0, 13, .72);
  color: var(--text);
  font-weight: 800;
  letter-spacing: .02em;
  cursor: pointer;
  text-decoration: none;
  transition: transform .08s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease, color .25s ease;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}

.sbtn::before, .contact-form .sbtn::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(90deg, transparent, rgba(244, 239, 225, .38), transparent);
  transition: transform .55s ease;
}

.sbtn:hover, .contact-form .sbtn:hover {
  background: var(--accent-color);
  border-color: rgba(244, 239, 225, .82);
  color: #09000E;
  transform: translateY(-1px);
  box-shadow:
    0 0 18px rgba(180, 0, 255, .42),
    0 0 26px rgba(217, 164, 65, .32),
    0 12px 30px rgba(0, 0, 0, .32);
}

.sbtn:hover::before, .contact-form .sbtn:hover::before {
  transform: translateX(120%);
}

.sbtn:active, .contact-form .sbtn:active {
  transform: translateY(0);
}
