#page-home {
  display: flex;
  flex-direction: column;
  font-family: 'Montserrat', sans-serif;
  width: 100%;
  box-sizing: border-box;

  p {
    align-self: center;
    color: #5c1c1c;
    font-size: 1.2rem;
    margin: 0 0 4rem 0;
    font-style: italic;
    font-weight: bold;
    text-align: justify;
    padding: 0 1rem;
    max-width: 1100px;
  }

  .container-nouveautes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem;
    padding: 2rem 2.5rem 5rem 2.5rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    .item {
      display: block;
    }

    img {
      display: block;
      width: 100%;
      height: auto;
      max-width: 600px;
      margin: 0 auto;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
      transition: transform 0.25s ease;
    }

    img:hover {
      transform: scale(1.02);
    }
  }
  */
  
  /* Solution avec flexbox */
  .container-temporaire {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    margin: 0 auto;
    gap: 2rem;
    padding: 2rem;
    padding-top: 1rem;
    
    .image-gauche, .image-droite, .image-centre {
      height: 700px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: visible;
    }
    
    .image-gauche, .image-droite {
      width: 28%;
      
      img {
        width: 100%;
        height: 100%;
        display: block;
        filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.2)) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
        object-fit: contain;
      }
    }
    
    .image-centre {
      width: 28%;
      
      img {
        width: 100%;
        height: 100%;
        display: block;
        filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.2)) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
        object-fit: contain;
      }
    }
  }
}

@media screen and (max-width: 900px) {
  #page-home {
    .container-nouveautes {
      grid-template-columns: 1fr;
      gap: 6rem;
      padding: 0 1rem 4rem 1rem;
    }
  }
}

/* ─── Animation chargement ───────────────────────────────── */

@keyframes expoFadeIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Prochaine exposition ─────────────────────────────── */

#expo-prochaine {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5rem 4rem 8rem;

  & + #site-footer {
    margin-top: 0;
  }
  background-color: #fdf9f7;
  animation: expoFadeIn 0.95s cubic-bezier(0.22, 0.61, 0.36, 1) 0.08s both;

  /* ── En-tête centré ── */
  .expo-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4.5rem;
  }

  .expo-label {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.42em;
    font-size: 0.65rem;
    text-transform: uppercase;
    color: #c07640;
    margin: 0 0 0.9rem;
  }

  .expo-header-line {
    width: 100px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(192, 118, 64, 0.55), transparent);
  }

  /* ── Layout côte à côte ── */
  .expo-body {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    width: 100%;
    max-width: 1200px;
  }

  .expo-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    padding-right: 5rem;

    img {
      display: block;
      width: 100%;
      max-width: 540px;
      height: auto;
      box-shadow:
        0 24px 64px rgba(60, 25, 8, 0.16),
        0 4px 16px rgba(60, 25, 8, 0.09);
    }
  }

  /* Ligne séparatrice verticale + contenu */
  .expo-content {
    flex: 1;
    padding-left: 5rem;
    border-left: 1px solid rgba(192, 118, 64, 0.22);
  }

  /* ── Titres ── */
  .expo-titles {
    margin-bottom: 0;
  }

  .expo-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 4.4rem;
    color: #160803;
    line-height: 1;
    margin: 0;
    letter-spacing: -0.01em;
  }

  .expo-title-lieu {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 2.4rem;
    color: #5c1c1c;
    margin: 0.1rem 0 0.5rem;
    line-height: 1.1;
  }

  .expo-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 1.25rem;
    color: #c07640;
    margin: 0 0 0;
    letter-spacing: 0.02em;
  }

  /* ── Séparateurs internes ── */
  .expo-sep {
    width: 50px;
    height: 1px;
    background: rgba(192, 118, 64, 0.4);
    margin: 2rem 0;

    &--short {
      width: 30px;
      margin: 1.6rem 0;
    }
  }

  /* ── Dates & horaires ── */
  .expo-details {
    p { margin: 0; }
  }

  .expo-dates {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: #2e1508;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-bottom: 0.35rem !important;
  }

  .expo-jours {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    color: #9a7060;
    letter-spacing: 0.1em;
    margin-bottom: 0.55rem !important;
  }

  .expo-rdv {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #5c1c1c;
    text-decoration: none;
    border: 1px solid rgba(92, 28, 28, 0.35);
    padding: 0.3rem 0.85rem;
    margin-top: 1rem;
    margin-bottom: 0.8rem;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;

    &:hover {
      background-color: #5c1c1c;
      color: #fff;
      border-color: #5c1c1c;
    }
  }

  .expo-horaires {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    font-weight: 400;
    color: #c07640;
    line-height: 1;
    margin-bottom: 0.4rem !important;
  }

  .expo-autres-jours {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 400;
    font-style: italic;
    color: #9a7060;
    letter-spacing: 0.05em;
    margin: 0 !important;
  }

  /* ── Lieu ── */
  .expo-lieu {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;

    .lieu-nom {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: #2e1508;
    }

    .lieu-adresse {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.75rem;
      font-weight: 400;
      color: #7a5a48;
      letter-spacing: 0.06em;
    }
  }

  /* ── Bouton Itinéraire ── */
  .expo-itineraire {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: 2.2rem;
    padding: 0.85rem 2.2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background-color: #c07640;
    border: none;
    transition: background-color 0.3s ease, transform 0.25s ease,
                box-shadow 0.3s ease;

    i { font-size: 0.75rem; }

    &:hover {
      background-color: #5c1c1c;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(92, 28, 28, 0.28);
    }
  }
}

/* ── Responsive mobile ── */
@media screen and (max-width: 900px) {
  #expo-prochaine {
    padding: 4rem 1.6rem 6rem;

    .expo-header { margin-bottom: 3rem; }

    .expo-body {
      flex-direction: column;
      gap: 3rem;
    }

    .expo-image-wrapper {
      flex: none;
      width: 100%;
      padding-right: 0;
      justify-content: center;
    }

    .expo-content {
      border-left: none;
      border-top: 1px solid rgba(192, 118, 64, 0.22);
      padding-left: 0;
      padding-top: 3rem;
      text-align: center;
      width: 100%;
    }

    .expo-sep {
      margin-left: auto;
      margin-right: auto;
    }

    .expo-lieu {
      align-items: center;
    }

    .expo-rdv {
      display: block;
      text-align: center;
    }

    .expo-title { font-size: 3.2rem; }
    .expo-title-lieu { font-size: 1.9rem; }
    .expo-horaires { font-size: 1.6rem; }

    .expo-itineraire {
      width: 100%;
      justify-content: center;
    }
  }
}



