/* Styles généraux */
body {
  margin: 0;
  overflow: hidden;
  color: white;
  min-height: 100vh;
  font-family: Arial, sans-serif;
  background-color: #000000;
  cursor: none;
}

#noise {
  background-image: url('/wp-content/uploads/ComingSoon/src/assets/bgBlack.jpg');
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  mix-blend-mode: lighten;
}

header {
  width: 100vw;
  height: 100vh;
}

.container {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  z-index: 3;
}

.svg-item {
  margin: 10px;
}

.logo {
  width: 60vw;
  height: auto;
}

.subtitle {
  text-transform: uppercase;
  font-size: 18px;
  line-height: 1.9rem;
  letter-spacing: .08em;
  text-align: center;
  overflow: hidden;
  z-index: 3;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  cursor: none;
}

.cursor {
  position: fixed;
  z-index: 99999999999999;
  top: 0;
  left: 0;
  pointer-events: none;
  mix-blend-mode: difference;
}

.cursor__circle {
  display: block;
  width: 10px;
  height: 10px;
  background-color: white;
  border-radius: 50%;
  transform: translateX(-50%) translateY(-50%);
  top: 50%;
  left: 50%;
  transition: 0.5s ease-in-out;
}

.cursor__circle--centered {
  transform: translate(-50%, -50%) scale(4);
  transition: 0.5s ease-in-out;
}

.monFooter {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  margin-bottom: 60px;
  bottom: 0;
  z-index: 3;
}

.social-icons {
  font-size: 24px;
  margin: 0 10px;
  color: white;
  display: inline-block;
  transition: transform 0.3s ease;
  cursor: none;
}

.social-icons:hover {
  transform: scale(1.5);
}

.service-block {
  position: absolute;
  display: flex;
  bottom: 0px;
  margin-bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.9rem;
  letter-spacing: .08em;
  overflow: hidden;
  z-index: 3;
}

.service-block a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  cursor: none;
}

.service-block::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -50%;
  width: 100%;
  height: 2px;
  background-color: white;
  transform: translateX(-60%);
  transition: transform 0.8s ease;
}

.service-block:hover::before {
  transform: translateX(160%);
}

/* Styles pour la vidéo de fond */
.video-container {
  position: fixed;    /* Occupation totale de l'écran */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
}

.video-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;   /* Remplit tout l'espace sans déformation */
  transform: translate(-50%, -50%);
}



/* Styles pour l'overlay vidéo */
.overlay {
  display: none; /* Par défaut caché */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
}

.player_showreel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60vw;
  max-width: 90vw; /* Optionnel : limite la taille sur petits écrans */
  height: auto;
}

/* Styles de bouton Showreel */
.btn-reset {
  border: 0;
  background: 0 0;
  pointer-events: all;
}

button {
  pointer-events: all;
  padding: 0;
  margin: 0;
}

.intro_reel {
  position: relative;
  margin-top: 30px;
  width: 249px;
  height: 45px;
  opacity: 0;
}

.btn_text {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  font-size: 1.4rem;
  line-height: 1.9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  transform: translateY(-50%);
  transition: color .3s ease-out;
  color: white;
  display: block;
  z-index: 1;
}

.btn_svg {
  fill: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.btn_showreel {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: color 0.3s, fill 0.3s;
}

.btn_showreel:hover .btn_svg path {
  fill: white;
}

.btn_showreel:hover .btn_text {
  color: black;
}

.overlay.active {
  display: block;
}


