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

html, body {
  height: 100%;
  font-family: sans-serif;
  background-color: #3f2727;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Container principal */
.coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
}

/* Logo */
.logo {
  width: 250px; /* Ajustable selon ton SVG */
  max-width: 80vw;
  height: auto;
}

/* Texte principal */
.coming-soon h1 {
  color: #e2dcd2;
  font-size: 2rem;
  line-height: 1.4;
  max-width: 90vw;
}

/* Sous-titre */
.coming-soon .subtitle {
  color: #e2dcd2;  /* même couleur que le H1 */
  font-size: 1.5rem;  /* un peu plus petit que le H1 */
  margin-bottom: 20px;
}

/* Bouton contact */
.btn {
  display: inline-block;
  background-color: #f2a652;
  color: #3f2727;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #e49e3e;
}