* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
  background: #ffffff;
  color: #000;
  line-height: 1.6;
}

/* ================= MENU ================= */

.menu {
  position: fixed;
  top: 20px;
  left: 20px;
  font-size: 14px;
  z-index: 3000;
}

.menu a {
  display: block;
  margin-bottom: 6px;
  text-decoration: none;
  color: black;
}

.site-name {
  font-family: "Cormorant Unicase", serif;
  font-style: italic;
  font-size: 20px;
  letter-spacing: 0.04em;
}

/* ================= PAGE ================= */

.page {
  max-width: 900px;
  margin: 140px auto;
  padding: 0 40px;
}

.page.hidden {
  display: none;
}

/* ================= BLOCS ================= */

.text-block {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ================= IMAGE ================= */

.image-block {
  width: 100%;
  height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}

.image-block img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.legend {
  margin-top: 12px;
  font-size: 13px;
  color: #444;
  text-align: center;
  max-width: 80%;
}

/* ================= TITRES ================= */

h1 {
  font-family: "Cormorant Unicase", serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.04em;
  font-size: 48px;
  margin-bottom: 30px;
}

/* ================= TEXTES ================= */

.credit {
  margin-top: 40px;
  font-size: 14px;
}

/* ================= BIO PANEL ================= */

.bio-panel {
  display: block;
  position: fixed;
  top: 140px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 600px;
  width: calc(100% - 80px);
  background: white;
  padding: 0;
  z-index: 1000;
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
  pointer-events: none;
}

/* ================= SALLES ================= */

.room {
  display: none;
}

.room.active {
  display: block;
}

/* ================= BOUTON SECRET ================= */

.secret-container {
  position: relative;
  width: 100%;
  margin-top: 80px;
  display: flex;
  justify-content: flex-end;
}

.secret-button {
  width: 140px;
  max-width: 40vw;
  cursor: pointer;
  opacity: 0.85;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%   { opacity: 0.4; }
  50%  { opacity: 1; }
  100% { opacity: 0.4; }
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .page {
    margin: 100px auto;
    padding: 0 20px;
  }

  h1 {
    font-size: 36px;
  }

  .menu {
    position: static;
    margin: 20px;
  }

  .bio-panel {
    position: static;
    max-width: none;
    margin: 20px;
  }

  .text-block {
    max-width: 92vw;
  }

  .image-block img {
    max-width: 95vw;
  }
.site-name {
  font-family: "Cormorant Unicase", serif;
  font-style: italic;
  font-size: 22px;       /* + léger */
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
#bio h1 {
  font-size: 36px;
  margin-top: 0;
}
#bio {
  padding-top: 160px;
}

