/* Styles de base pour retirer marges et débordement */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    font-family: 'righteous', sans-serif;
    letter-spacing: 2px;
  }
  
  .header-text .portfolio {
    opacity: 0.5; /* Ajustez cette valeur (0.1 à 1) */
  }
  
  .header-text {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #fff;
    font-size: 24px;
  }
  
  h1 {
    font-family: 'righteous', sans-serif;
    letter-spacing: 3px;
  }
  
  /* La vidéo en fond */
  .video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }
  
  /* Conteneur principal centré */
  .content {
    position: relative;
    z-index: 1;
    text-align: center;
    min-height: 100vh;
    color: white;
  }
  
  /* Bouton "Entrer" sans bordure, affiché en style h1 */
  /* Positionné avec bottom pour être juste au-dessus du bouton mute */
  .enter-button {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    color: white;
    font-size: 15px;
    position: absolute;
    bottom: 100px;  /* Ajustez cette valeur pour placer le bouton par rapport au bas */
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    transition: transform 0.2s ease;
  }
  
  /* Appliquer le style h1 au texte du bouton */
  .enter-button h1 {
    margin: 0;
    font-size: 2em;
    position: relative;
    z-index: 1;
  }
  
  /* Pseudo-élément pour l'effet de balayage au hover */
  .enter-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
    z-index: 0;
  }
  
  .enter-button:hover::before {
    left: 100%;
  }


  
  /* Animation de rebond vers le haut lors du clic */
  @keyframes bounce-up {
    0%   { transform: translateX(-50%) translateY(0); }
    30%  { transform: translateX(-50%) translateY(-15px); }
    50%  { transform: translateX(-50%) translateY(0); }
    70%  { transform: translateX(-50%) translateY(-7px); }
    100% { transform: translateX(-50%) translateY(0); }
  }
  
  .enter-button.animate {
    animation: bounce-up 0.5s ease-out;
  }
  
  /* Bouton pour le son, positionné en bas au centre */
  .mute-button {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 2;
  }
  
  /* Taille de l'image du bouton son */
  .mute-button img {
    width: 50px;
    height: auto;
  }
  