/* HEADER */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between; /* logo à gauche, bouton à droite */
  height: 64px;
  padding: 0 24px;
  background-color: #0e1116;
  color: white;
  position: sticky;
  top: 0;
  z-index: 9999;
  box-sizing: border-box;
}

/* GAUCHE : logo */
.logo {
  height: 36px;
  width: auto;
}

/* CENTRE : titre */
.center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* DROITE : bouton sobre */
.btn {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 10px;   /* un peu plus petit pour rester discret */
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.3); /* juste un contour léger */
  background: transparent; /* pas de fond coloré */
  transition: background 0.2s, border-color 0.2s;
}

.btn:hover {
  background: rgba(255, 255, 255, 0.08); /* léger fond au hover */
  border-color: rgba(255, 255, 255, 0.5); /* contour un peu plus visible */
}
