/* Bonito Restaurant — relocation announcement popup styles */
.bonito-reloc-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(29, 72, 127, 0.55); /* navy, semi-transparent */
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-family: "Farro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.bonito-reloc-overlay.is-open {
  display: flex;
}
.bonito-reloc-card {
  position: relative;
  background: #FFFFFF;
  max-width: 440px;
  width: 100%;
  padding: 40px 32px 32px;
  border-radius: 3px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  animation: bonito-reloc-in 0.35s ease-out;
}
@keyframes bonito-reloc-in {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.bonito-reloc-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  font-size: 26px;
  line-height: 1;
  color: #1D487F;
  cursor: pointer;
  padding: 4px;
}
.bonito-reloc-close:hover {
  opacity: 0.7;
}
.bonito-reloc-logo {
  max-width: 130px;
  height: auto;
  margin: 0 auto 16px;
  display: block;
}
.bonito-reloc-wave {
  color: #1D487F;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.bonito-reloc-title {
  color: #1D487F;
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 14px;
  line-height: 1.25;
}
.bonito-reloc-body {
  color: #3A3A3A;
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 24px;
}
.bonito-reloc-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.bonito-reloc-btn {
  display: inline-block;
  padding: 12px 22px;
  font-size: 14px;
  text-decoration: none;
  border-radius: 0px;
  border: 1px solid #1D487F;
  transition: opacity 0.15s ease;
}
.bonito-reloc-btn:hover {
  opacity: 0.85;
}
.bonito-reloc-btn-primary {
  background: #1D487F;
  color: #FFFFFF;
}
.bonito-reloc-btn-secondary {
  background: #E5D6C5;
  color: #333333;
  border-color: #E5D6C5;
}
.bonito-reloc-dismiss {
  background: none;
  border: none;
  color: #3A3A3A;
  font-size: 13px;
  text-decoration: underline;
  cursor: pointer;
  padding: 4px;
}
@media (max-width: 480px) {
  .bonito-reloc-card { padding: 32px 22px 24px; }
  .bonito-reloc-title { font-size: 22px; }
}
