/* Intégration de la police Vogun */
@font-face {
  font-family: 'Vogun';
  src: url('/fonts/vogun.woff2') format('woff2'),
       url('/fonts/vogun.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #0f0f0f;
  --fg: #f2f2f2;
  --muted: #bdbdbd;
  --accent: #ffffff;
}
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial, 'Vogun', sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.5;
  display: grid;
  place-items: center;
}
.wrap {
  width: min(940px, 92vw);
  padding: 48px 24px 64px;
}
header { text-align: center; margin-bottom: 32px; }

/* Le SVG hérite de la couleur du thème */
.mark {
  color: var(--fg);
  display: block;
  width: 100%;
  max-width: 620px;
  margin: 0 auto 8px;
}

address {
  font-style: normal;
  margin: 16px 0 4px;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.row { display: flex; gap: 14px; align-items: center; justify-content: center; flex-wrap: wrap; }

/* Icône Instagram suit la couleur du texte (visible en dark mode) */
.icon { width: 22px; height: 22px; display: inline-block; vertical-align: middle; fill: currentColor; }

footer { margin-top: 40px; text-align: center; color: var(--muted); font-size: 14px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.seo-list { display: none; }

/* --- Layout mobile plus propre pour l'adresse --- */
.addr { display: inline-flex; flex-direction: column; align-items: center; gap: 4px; }
.addr .locality { white-space: nowrap; }
.addr .city { word-break: keep-all; }
.addr .linebreak { display: block; height: 0; }
@media (min-width: 480px){
  .addr { flex-direction: row; gap: 8px; }
  .addr .linebreak { display: none; }
}

/* --- Catégories : simple liste, sans séparateurs --- */
.pill-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .35rem .9rem;   /* espace horizontal/vertical confortable */
}
.pill-list li {
  white-space: nowrap; /* chaque item reste d'un bloc */
}

@media (prefers-color-scheme: light) {
  :root { --bg: #ffffff; --fg: #0a0a0a; --muted: #666; --accent: #000; }
  body { background: var(--bg); color: var(--fg); }
}
