/* 1. REGOLA BASE: Immagine grande e centrata (per le foto SENZA testo) */

#baguetteBox-overlay .full-image img {
  max-height: 95% !important;
  max-width: 95% !important;
  transform: translateY(0) !important;
}

/* 2. L'ECCEZIONE: Se la foto HA una didascalia (figcaption), allora si rimpicciolisce e si alza */

#baguetteBox-overlay .full-image figure:has(figcaption) img {
  max-height: 65% !important;
  transform: translateY(-5%) !important;
}

/* 3. IL TESTO: Questo rimane uguale a prima, confinato in basso */

#baguetteBox-overlay .full-image figcaption {
  background-color: transparent !important;
  position: absolute !important;
  bottom: 2% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 90% !important;
  max-height: 25% !important;
  overflow-y: auto !important;
  color: #ffffff !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-style: italic !important;
  font-size: 1.4rem !important;
  line-height: 1.4 !important;
  text-align: center !important;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9) !important;
}

/* Nasconde la rotellina di scorrimento fissa per pulizia estetica */

#baguetteBox-overlay .full-image figcaption::-webkit-scrollbar {
  display: none;
}

testo-adattabile {
  font-size: 86px;
}

@media (min-width: 768px) {
  .testo-adattabile {
    font-size: 86px;
  }
}

@media (min-width: 200px) {
  .testo-adattabile {
    font-size: 38px;
  }
}

@media (min-width: 576px) {
  .testo-adattabile {
    font-size: 70px;
  }
}

@media (min-width: 1400px) {
  .testo-adattabile {
    font-size: 86px;
  }
}

