.font-display { font-family: 'Fraunces', serif; }
.font-mono-num { font-family: 'IBM Plex Mono', monospace; }

/* Kartu kamar bergaya gantungan kunci (signature UI) */
.room-tag {
  position: relative;
  border: 1px solid #e7e5e4;
  border-radius: 1rem;
  background: #fff;
  padding: 1.4rem 1rem 1rem 1rem;
  transition: box-shadow .15s ease;
}
.room-tag:hover { box-shadow: 0 4px 16px rgba(15,23,23,.08); }
.room-tag::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #fafaf9;
  border: 1px solid #e7e5e4;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,27,25,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 50;
}
