@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

/* Style général */
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: url("/assets/escape-game-1.png") no-repeat center center fixed;
  background-size: cover;
}

body {
  font-family: 'Great Vibes', cursive;
  color: #f5f5dc;
  background: rgba(0, 0, 0, 0.6);
  margin: 0;
  padding: 0;
}

/* En-tête */
#entête {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: rgba(30, 20, 10, 0.85);
  color: #d4af37;
  border-bottom: 3px solid #8b5a2b;
}

#entête .logo {
  font-size: 2.5em;
  font-weight: bold;
  font-family: 'Playfair Display', serif;
  text-transform: uppercase;
}

#entête nav a {
  color: #d4af37;
  font-size: 1.1em;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  background: rgba(139, 90, 43, 0.7);
  transition: all 0.3s ease-in-out;
}

#entête nav a:hover {
  background: rgba(139, 90, 43, 1);
}

/* Contenu principal */
main {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 700px;
  text-align: center;
  padding: 40px;
  background: rgba(40, 20, 10, 0.85);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  border: 2px solid #8b5a2b;
  font-size: 24px;
}

.form-section h3 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #d4af37;
  font-family: 'Playfair Display', serif;
}

.form-section form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.form-section input {
  width: 80%;
  padding: 12px;
  font-size: 1.1em;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #8b5a2b;
  border-radius: 5px;
  margin-top: 10px;
}

.form-section button {
  padding: 12px 30px;
  font-size: 1.1em;
  background: #8b5a2b;
  color: #f5f5dc;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.form-section button:hover {
  background: #a06f42;
}

/* Pied de page */
footer {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  padding: 10px;
  font-size: 0.9em;
  color: #d4af37;
  background: rgba(30, 20, 10, 0.85);
  width: 100%;
  border-top: 2px solid #8b5a2b;
}