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

html, body {
  height: 100%;
  font-family: 'Gabarito', sans-serif;
  background-color: #fff;
  color: #000;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding-inline: 20px; /* marges latérales min 20px */
  max-width: 100%;
}

.beemo-image {
  max-width: 270px;
  height: auto;
  margin-bottom: 1.5rem;
}

.title {
  font-size: 7.25rem; /* ~116px */
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  word-break: break-word;
  max-width: 100%;
  text-align: center;
}

/* Réduction du titre sur petits écrans */
@media (max-width: 480px) {
  .title {
    font-size: 4.5rem; /* ~72px */
  }
}

.info-line {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  font-size: 1.5rem; /* 24px */
  font-weight: 400;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.info-link {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

.info-link:hover {
  color: #00f;
}

.separator {
  font-size: 1.5rem;
  font-weight: 400;
}