html, body {
  overflow-x: auto;
  width: 100%;
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  background: #fff;
  overflow-x: auto;
  overflow-y: hidden;
  font-family: Verdana, Geneva, sans-serif;
  text-align: justify;
}

.titre {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 36px;
  color: #a38234;
  font-variant: small-caps;
  line-height: 2px;
  position: fixed;
  top: 45px;
  padding: 0px 0px 0px 40px;
  width: 1000px;
}

.info {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 12px;
  color: #444444;
  position: fixed;
  top: 60px;
  padding: 0px 0px 0px 55px;
}

.info a {
  color: #ffb303;
  text-decoration: none;
}

.info a:hover {
  text-decoration: none;
  color: #f77c11;
}

.gallery {
  display: flex;
  flex-direction: row;
  align-items: center;
  white-space: nowrap;
  padding: 10px 10px 10px 40px;
  height: 100vh;
  overflow-x: auto;
  overflow-y: hidden;
}

.gallery img {
  height: min(90vh, 1350px);
  width: auto;
  margin-right: 5px;
  flex-shrink: 0;
}

.poem {
  min-width: 300px;
  max-width: 500px;
  padding: 20px;
  margin-right: 20px;
  font-size: 1.8em;
  font-family: serif;
  color: #111;
  white-space: normal;
  line-height: 1.6;
  text-align: justify;
  background: #ffffff;
  border-left: 0px solid #ccc;
  flex-shrink: 0;
  
}

/* Responsive Mobile */
@media screen and (max-width: 768px) {
  body {
    font-size: 18px !important;
  }

  .titre {
    font-size: 2em !important;
    line-height: 1.2 !important;
    position: fixed !important;
    top: 20px !important;
    left: 10px !important;
    right: 10px !important;
    z-index: 1000 !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .info {
    font-size: 1.1em !important;
    line-height: 1.4 !important;
    position: fixed !important;
    top: 65px !important;
    left: 10px !important;
    right: 10px !important;
    z-index: 999 !important;
    white-space: normal !important;
    text-align: left !important;
  }

  .info a {
    font-size: 1.1em !important;
    padding: 0 5px !important;
  }

  .gallery {
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    padding-top: 120px !important; /* laisse de la place pour titre + info */
    overflow-x: auto !important;
    overflow-y: hidden !important;
    height: auto !important;
  }

  .gallery img {
    height: auto !important;
    max-height: 95vh !important;
    object-fit: contain !important;
    margin-right: 10px !important;
  }

  .poem {
    font-size: 1.2em !important;
    line-height: 1.7 !important;
    max-width: 90vw !important;
    padding: 24px !important;
    margin: 0 16px !important;
    background: #f8f8f8 !important;
    border-left: 3px solid #ccc !important;
  }

  .poem p {
    margin: 0 !important;
    text-align: justify !important;
  }
}

/* Desktop */
.gallery {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  width: max-content;
}

