.specific_room{
clear:both;
}

  /* ── MODAL OVERLAY ───────────────────────────────────────────── */
  #gallery-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.92);
    align-items: center;
    justify-content: center;
  }
  #gallery-modal.open {
    display: flex;
  }

  /* ── IMAGE STAGE ─────────────────────────────────────────────── */
  #gallery-stage {
    position: relative;
    width: 100vw;
    height: 100vh;
  }
  #gallery-stage img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    padding: 60px 80px;
    box-sizing: border-box;
  }
  #gallery-stage img.active {
    opacity: 1;
  }

  /* ── CLOSE ───────────────────────────────────────────────────── */
  #gallery-close {
    position: fixed;
    top: 18px;
    right: 22px;
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: background 0.2s, transform 0.2s;
  }
  #gallery-close:hover { background: rgba(255,255,255,0.28); transform: rotate(90deg); }

  /* ── ARROWS ──────────────────────────────────────────────────── */
  .gallery-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    color: #fff;
    zfont-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: background 0.2s, opacity 0.2s;
    user-select: none;
  }
  .gallery-arrow:hover { background: rgba(255,255,255,0.28); }
  .gallery-arrow.hidden { opacity: 0; pointer-events: none; }
  #gallery-prev { left: 16px; }
  #gallery-next { right: 16px; }



  /* ── COUNTER ─────────────────────────────────────────────────── */
  #gallery-counter {
    position: fixed;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.5);
    font: 13px/1 system-ui, sans-serif;
    letter-spacing: 0.06em;
    z-index: 10001;
  }

  /* ── TRIGGER IMAGE ON PAGE ───────────────────────────────────── */
  .gallery-trigger {
    cursor: zoom-in;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .gallery-trigger:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  }
#gallery-caption {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.85);
    font: 14px/1.4 system-ui, sans-serif;
    text-align: center;
    max-width: 70%;
    z-index: 10001;
    pointer-events: none;
}






