/* ---- reset ---- */

body {
  margin: 0;
  font: normal 75% Arial, Helvetica, sans-serif;
}

canvas {
  display: block;
  vertical-align: bottom;
}

/* ---- particles.js container ---- */

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #f16e00;
  background-image: url("");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}

/* ---- stats.js ---- */

.count-particles {
  background: #000022;
  position: absolute;
  top: 48px;
  left: 0;
  width: 80px;
  color: #13e8e9;
  font-size: 0.8em;
  text-align: left;
  text-indent: 4px;
  line-height: 14px;
  padding-bottom: 2px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
}

.js-count-particles {
  font-size: 1.1em;
}

#stats,
.count-particles {
  -webkit-user-select: none;
  margin-top: 5px;
  margin-left: 5px;
}

#stats {
  border-radius: 3px 3px 0 0;
  overflow: hidden;
}

.count-particles {
  border-radius: 0 0 3px 3px;
}

.logo-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 10;
  pointer-events: none;
}

.logo-container > * {
  pointer-events: auto; /* Permet l'interaction sur les éléments enfants */
}

.logo {
  max-width: 80vw;
  max-height: 80vh;
}

.construction-message {
  color: #fff;
  text-align: center;
  margin-top: 30px;
  font-size: 5rem;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif,
    sans-serif;
}

.notify-form {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  justify-content: center;
}

.notify-form input[type="email"] {
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-size: 1.2rem;
  min-width: 370px;
  text-align: center;
}

.notify-form button {
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  background: #39bdde;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s;
}

.notify-form button:hover {
  background: #333;
}

.form-success {
  color: #fff;
  text-align: center;
  margin-top: 24px;
  font-size: 1.3rem;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif,
    sans-serif;
}

/* --- Responsive styles --- */
@media (max-width: 900px) {
  .construction-message {
    font-size: 2.5rem;
  }
  .logo {
    max-width: 60vw;
    max-height: 30vh;
  }
  .notify-form input[type="email"] {
    min-width: 200px;
    font-size: 1rem;
    padding: 10px;
  }
  .notify-form button {
    font-size: 1rem;
    padding: 10px 18px;
  }
}

@media (max-width: 600px) {
  .construction-message {
    font-size: 1.3rem;
    margin-top: 18px;
  }
  .logo {
    max-width: 80vw;
    max-height: 20vh;
  }
  .notify-form {
    flex-direction: column;
    gap: 8px;
    width: 90vw;
    align-items: center;
  }
  .notify-form input[type="email"] {
    min-width: 0;
    width: 85%;
    font-size: 0.9rem;
    padding: 8px;
  }
  .notify-form button {
    width: auto;
    min-width: 120px;
    align-self: center;
    font-size: 1rem;
    padding: 10px 18px;
  }
  .form-success {
    font-size: 1rem;
    margin-top: 16px;
  }
}
