/* Haoupa — hero v5 : photo plein écran + pastel + dots ; marque style footer (sobre) */
:root {
  --ink: #111;
  --glass: rgba(255, 255, 255, 0.85);   /* fond type footer */
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; }
body {
  font-family: "Courier New", Courier, monospace;   /* rétro HTML */
  background: #fff;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
.stage {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
/* Fond photo plein écran — adoucie pastel + grille de points */
.backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: saturate(0.72) contrast(0.95) brightness(1.07);   /* pastel */
}
.backdrop .tint {
  position: absolute;
  inset: 0;
  background: rgba(255, 252, 246, 0.28);
  mix-blend-mode: screen;
  z-index: 1;
}
.backdrop .dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(17, 17, 17, 0.18) 1.1px, transparent 1.9px);
  background-size: 15px 15px;          /* grid de points — discret */
  z-index: 2;
}
/* Marque — haut gauche, style footer : fond blanc translucide, Courier */
.brand {
  position: absolute;
  top: 1.1rem;
  left: 1.2rem;
  z-index: 3;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  color: rgba(10, 10, 10, 0.95);
  background: var(--glass);
  padding: 0.45rem 0.8rem;
  user-select: none;
}
/* Portail — lien sobre style footer (moodboard : pas de brutalisme) */
.portal {
  position: absolute;
  bottom: 3rem;
  left: 0; right: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0 1rem;
}
.portal-link {
  font-family: "Courier New", Courier, monospace;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: rgba(10, 10, 10, 0.95);
  background: var(--glass);
  padding: 0.45rem 0.9rem;
  text-decoration: none;
  user-select: none;
}
.portal-link:hover, .portal-link:focus {
  background: rgba(255, 255, 255, 0.95);
  text-decoration: underline;
}
/* Pied de page */
.foot {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 4;
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: rgba(17, 17, 17, 0.6);
  background: var(--glass);
  padding: 0.5rem;
  border-top: 1px solid rgba(17, 17, 17, 0.15);
}
.foot-link {
  color: rgba(17, 17, 17, 0.6);
  text-decoration: none;
}
.foot-link:hover, .foot-link:focus {
  color: #111;
  text-decoration: underline;
}
@media (max-width: 560px) {
  .brand { font-size: 0.9rem; top: 0.9rem; left: 1rem; }
}
