@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;
  margin: 0;
  padding: 0;
}

/* En-tête */
#entête {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 30px;
  background: rgba(30, 20, 10, 0.85);
  color: #d4af37;
  border-bottom: 3px solid #8b5a2b;
}

#entête .logo {
  color: #d4af37;
  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);
}

/* Conteneur principal */
.container {
  width: 80%;
  margin: auto;
  padding: 20px;
}

/* Titre */
h1 {
  color: #f5f5dc;
  font-family: 'Playfair Display', serif;
  font-size: 2.5em;
  text-align: center;
}

/* Tableau */
table {
  width: 80%;
  margin: 20px auto;
  border-collapse: collapse;
  background-color: rgba(40, 20, 10, 0.85);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 2px solid #8b5a2b;
}

table, th, td {
  border: 1px solid #74461c;
}

th, td {
  padding: 15px;
  text-align: center;
  font-size: 24px;
}

th {
  cursor: pointer;
  background-color: #8b5a2b;
  color: white;
}

/* Footer */
footer {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  text-align: center;
  margin-top: 50px;
  font-size: 0.9em;
  color: #777;
  font-family: 'Playfair Display', serif;
}