body {
  font-family: "Cormorant Garamond", serif;
  margin: 60px;
  background: white; /* ✔ fond blanc pur */
  color: #111;
}

/* TITRE */

h1 {
  font-size: 64px;
  font-weight: 300;
}

/* MENU */

nav {
  margin-bottom: 60px;
}

nav a {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  margin-right: 25px;
  text-decoration: none;
  color: #777;
}

nav a:hover {
  color: black;
}

/* SECTIONS */

section {
  margin-bottom: 100px;
}

/* GALERIE */

.gallery {
  column-count: 3;
  column-gap: 8px;
}

.item {
  break-inside: avoid;
  margin-bottom: 8px;
  position: relative;
}

.item img {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}

/* CARTELS */

.caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(255,255,255,0.92);
  font-size: 11px;
  padding: 8px;
  opacity: 0;
  transition: 0.3s;
}

.item:hover .caption {
  opacity: 1;
}

/* BIO */

.bio-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.bio-img {
  max-width: 180px;
  width: auto;
  height: auto;
}

/* FOOTER */

footer {
  margin-top: 80px;
  font-size: 11px;
  color: #888;
}

/* LIGHTBOX */

#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white; /* ✔ cohérent avec le site */
  display: none;
  align-items: center;
  justify-content: center;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
}

/* MOBILE */

@media (max-width: 768px) {
  body {
    margin: 25px;
  }

  .gallery {
    column-count: 1;
  }

  .bio-container {
    flex-direction: column;
  }

  .caption {
    position: static;
    opacity: 1;
    background: none;
  }
}