/* DIV */

/* Overlay plein écran */
.overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 2000;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Contenu centré */
.overlay-content {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  width: 50%;
  max-width: 500px;
  max-height: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* 💡 centre verticalement */
  position: relative;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
  overflow-y: auto; /* 💡 si le contenu dépasse */
}

.overlay-content img {
margin-top: 40px;
  max-width: 100%;
  height: auto;
  margin-bottom: 2rem;
}

.overlay-content button {
  background: #e9e2e2;
  color: #fff;
  /* padding: 0.6rem 1.2rem; */
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.overlay-content button:hover {
  background: #555;
}

.close-btn {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 1.8rem;
  color: #218fb1 !important;
  cursor: pointer;
  border: none;
  background: transparent;
}

.contact-details {
  margin-top: 1rem;
  font-weight: bold;
  display: none;
}


.descr{
    font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", serif;
    text-align: left;
    font-size: 1.3rem;
    color: red;
    font-style: italic;
    /* background-color: #fff; */
    text-shadow: 2px 2px 4px white;  
}

.descr2{
    text-align: left;
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
    font-weight: lighter;
    margin-top: 10px;
}

/* 📱 Version mobile */
@media (max-width: 768px) {
  .overlay-content {
    width: 90%;
    max-height: 90%;
  }
}

/* END DIV */
