@charset "UTF-8";

/* Reset de base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Bordure verte autour de toute la page */
html, body {
  height: 100%;
  border: 10pt solid #2D5C3D;
}

body {
  background-color: #FAF5ED;
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #2D5C3D;
  padding: 50px;
  text-align: center;
}

/* Section de la démoreel */
section.demoreel {
  margin: 30px auto;
  max-width: 800px;
}

/* Champ de mot de passe et bouton */
input[type="password"] {
  padding: 10px;
  font-size: 16px;
  margin: 10px 10px 20px;
}

button {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #2D5C3D;
  color: white;
  border: none;
  cursor: pointer;
}

button:hover {
  background-color: #24492F;
}

/* Vidéo responsive */
video {
  width: 80%;
  max-width: 80%;
  height: auto;
  border-radius: 1rem;
  margin: 20px auto;
  display: block;
}

/* RESPONSIVE STYLES */
@media screen and (max-width: 768px) {
  body {
    padding: 20px;
    border: 6pt solid #2D5C3D;
  }

  h1, h2 {
    font-size: 1.4rem;
  }

  input[type="password"], button {
    width: 90%;
    max-width: 300px;
    font-size: 14px;
  }

  video {
    border-radius: 0.8rem;
  }
}

#videoContainer {
  display: none;
}

@media screen and (max-width: 480px) {
  body {
    padding: 10px;
    border: 4pt solid #2D5C3D;
  }

  h1 {
    font-size: 1.2rem;
  }

  h2 {
    font-size: 1rem;
  }

  input[type="password"], button {
    font-size: 13px;
  }
}