main { position: relative; z-index: 1; }

.page-placeholder {
  height: calc(100dvh - 68px);
  margin-top: 68px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.25rem;
}

.page-placeholder h1 {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700;
  color: rgb(var(--page-color));
  letter-spacing: -0.02em;
}

.page-placeholder p {
  color: var(--muted);
  font-size: 1rem;
}

/* Onglet actif dans la navbar */
.nav-tag.active {
  color: #fff !important;
}
.nav-tag-event.active { background: rgb(var(--r-event)); }
.nav-tag-wood.active  { background: rgb(var(--r-wood));  }
.nav-tag-tech.active  { background: rgb(var(--r-tech));  }

