@charset "UTF-8";
@keyframes neon-pulse {
  0%, 100% {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #0891b2, 0 0 35px #0891b2, 0 0 40px #0891b2, 0 0 50px #0891b2, 0 0 75px #0891b2;
  }
  50% {
    text-shadow: 0 0 2px #fff, 0 0 5px #fff, 0 0 7px #fff, 0 0 10px #0891b2, 0 0 17px #0891b2, 0 0 20px #0891b2, 0 0 25px #0891b2, 0 0 37px #0891b2;
  }
}
.neon-text {
  animation: neon-pulse 1.5s infinite alternate;
}

.bg-animated {
  background: linear-gradient(-45deg, #000000, #1a1a1a, #000033, #003366);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.cyber-grid {
  background-image: linear-gradient(rgba(0, 255, 255, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  animation: cyber-grid-move 20s linear infinite;
}

@keyframes cyber-grid-move {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 20px 20px;
  }
}
.nav-link {
  position: relative;
  overflow: hidden;
}
.nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #0891b2;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.nav-link:hover::before {
  transform: translateX(0);
}
.nav-link::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(100%);
  background: linear-gradient(to bottom, #0891b2, rgb(103, 232, 249));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.3s ease;
}
.nav-link:hover::after {
  transform: translateY(0);
}

.glitch-effect {
  position: relative;
}
.glitch-effect::before, .glitch-effect::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}
.glitch-effect::before {
  left: 2px;
  text-shadow: -2px 0 rgb(236, 72, 153);
  clip: rect(24px, 550px, 90px, 0);
  animation: glitch-anim 3s infinite linear alternate-reverse;
}
.glitch-effect::after {
  left: -2px;
  text-shadow: -2px 0 #0891b2;
  clip: rect(85px, 550px, 140px, 0);
  animation: glitch-anim 2s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
  0% {
    clip: rect(39px, 9999px, 71px, 0);
  }
  20% {
    clip: rect(3px, 9999px, 5px, 0);
  }
  40% {
    clip: rect(6px, 9999px, 38px, 0);
  }
  60% {
    clip: rect(13px, 9999px, 43px, 0);
  }
  80% {
    clip: rect(44px, 9999px, 93px, 0);
  }
  100% {
    clip: rect(54px, 9999px, 47px, 0);
  }
}
#menu-toggle:checked ~ .menu {
  display: block;
}
#menu-toggle:checked ~ .menu-icon .hamburger {
  transform: rotate(45deg);
}
#menu-toggle:checked ~ .menu-icon .hamburger::before {
  transform: translateY(8px) rotate(90deg);
}
#menu-toggle:checked ~ .menu-icon .hamburger::after {
  transform: translateY(-8px) rotate(90deg);
}

.hamburger,
.hamburger::before,
.hamburger::after {
  content: "";
  display: block;
  background: #0891b2;
  height: 3px;
  width: 30px;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.hamburger::before {
  transform: translateY(-8px);
}
.hamburger::after {
  transform: translateY(8px);
}

@media (max-width: 768px) {
  .menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    width: 100%;
    height: 0;
    background: rgba(0, 0, 0, 0.9);
    overflow: hidden;
    transition: height 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    text-align: right;
    padding-right: 20px;
    padding-top: 20px;
  }
  .menu a {
    display: block;
    font-size: 1.2rem;
    padding: 10px 0;
    text-decoration: underline 2px #0891b2;
  }
  .menu a:hover {
    color: #0891b2;
    text-decoration: none;
    cursor: pointer;
  }
  #menu-toggle:checked ~ .menu {
    height: calc(100vh - 60px);
  }
}
@media (max-width: 640px) {
  .no-glitch {
    animation: none !important;
  }
}
/*-------------Invisible Navbar-------------*/
.navbar-hidden {
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
}

.carousel-control {
  position: absolute;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 1rem;
  cursor: pointer;
  outline: none;
}
.carousel-control-prev {
  left: 0;
}
.carousel-control-next {
  right: 0;
}
.carousel-control span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s;
}
.carousel-control span:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
.carousel-control span svg {
  width: 1rem;
  height: 1rem;
  color: white;
}
.carousel-control span .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@keyframes slide-in-right {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.animate-slide-in-right {
  animation: slide-in-right 0.5s ease-out forwards;
}

/*---------- Menu sélectionné ----------*/
.custom-select option:hover {
  background-color: #0891b2;
}

.calendrier-iframe {
  border: 0;
  width: 100%;
  height: 650px;
}

/*------------Style-------------*/
.style-cyan {
  color: #0891b2;
}
.style-cyan:hover {
  color: rgb(236, 72, 153);
}

/* /* ------------------------------------ */
/* ------------- COOKIE POPUP ------------ */
/* --------------------------------------- */
#cookiePopup {
  position: fixed;
  bottom: 10px;
  max-width: 600px;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  padding: 15px 25px 22px;
  transition: right 0.3s ease;
  right: 0;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  z-index: 10;
  border: 5px solid #0b698b;
}
#cookiePopup .en_tete {
  display: flex;
  align-items: center;
  column-gap: 15px;
}
#cookiePopup .en_tete i {
  color: #0b698b;
  font-size: 32px;
  margin-right: 15px;
}
#cookiePopup .en_tete h2 {
  color: #0b698b;
  font-weight: bold;
  font-size: 1.2em;
  padding-top: 0;
  padding-bottom: 0;
}
#cookiePopup .data {
  margin-top: 16px;
}
#cookiePopup .data p {
  color: #6c6b6b;
  font-size: 0.9em;
}
#cookiePopup .data p a {
  color: #0891b2;
  text-decoration: none;
}
#cookiePopup .data p a:hover {
  text-decoration: underline;
}
#cookiePopup .buttons {
  padding-top: 16px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
}
#cookiePopup .buttons .button {
  border: none;
  color: #fff;
  background: #0891b2;
  padding: 8px 0;
  border-radius: 4px;
  cursor: pointer;
  width: calc(50% - 10px);
}
#cookiePopup .buttons .button_refuser {
  border: none;
  color: #fff;
  background: #818b8d;
  padding: 8px 0;
  border-radius: 4px;
  cursor: pointer;
  width: calc(50% - 10px);
}
#cookiePopup .buttons #acceptCookie:hover {
  background: #131212;
}
#cookiePopup .buttons #declineCookie:hover {
  background: #fff;
  border: 2px solid #818b8d;
  color: #0891b2;
}
#cookiePopup button {
  border: none;
  color: #fff;
  background: #818b8d;
  padding: 8px 0;
  border-radius: 4px;
  cursor: pointer;
  width: calc(50% - 10px);
}
#cookiePopup button:hover {
  background: #818b8d;
}

.bx {
  /* --- box icône cookie --- */
  margin-left: 0.125rem;
  bottom: 0;
  width: 2%;
  height: auto;
}

.show {
  visibility: visible;
  bottom: 2em;
  right: 2em;
}

.hide {
  visibility: hidden;
  bottom: 0;
  right: 2em;
}