body {
  margin: 0;
  padding: 0;
  font-family: system-ui, sans-serif;
  background: #fafafa;
  color: #333;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-sizing: border-box;
}

/* LOGO */
.logo-container {
  margin-bottom: 2rem;
}

.logo {
  width: 160px;
  height: auto;
}

/* BOUTONS */
.choice-container {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 100%;
  max-width: 300px;
}

.choice-btn {
  display: block;
  text-align: center;
  padding: 1rem;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: 0.2s;
}

/* style spécifique */
.choice-btn.pro {
  background: #222;
  color: white;
}

.choice-btn.particulier {
  background: white;
  border: 2px solid #222;
  color: #222;
}

.choice-btn:hover {
  transform: translateY(-2px);
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  opacity: 0.7;
}
