/* Party booking modal — standalone (home page uses Avada; no main.css variables). */
#party-modal.modal-backdrop {
  position: fixed;
  inset: 0;
  /* No dim or blur — page around the dialog stays fully visible; sheet still catches outside clicks to close */
  background: transparent !important;
  background-color: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 1rem;
  z-index: 2000001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  overflow-y: auto;
}
#party-modal.modal-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}
/* Inner panel must NOT use class "modal" — Avada/Bootstrap ship `.modal { display: none }` */
#party-modal .lz-dialog-panel {
  position: relative;
  z-index: 1;
  background: linear-gradient(165deg, #0f3d4d 0%, #0a2832 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  width: 100%;
  max-width: 560px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 28px 90px rgba(0, 0, 0, 0.55),
    0 12px 40px rgba(0, 0, 0, 0.35);
  margin-top: 2vh;
}
#party-modal .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
#party-modal .modal-header h2 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #e8f4f0;
}
#party-modal .modal-close {
  background: transparent;
  border: none;
  color: #9bb8b0;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem;
}
#party-modal .modal-close:hover {
  color: #e8f4f0;
}
#party-modal .modal-body {
  padding: 1.25rem 1.25rem 1.5rem;
}
#party-modal .form-group {
  margin-bottom: 1rem;
}
#party-modal .form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: #9bb8b0;
}
#party-modal .form-group input,
#party-modal .form-group textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.25);
  color: #e8f4f0;
  font-size: 1rem;
}
#party-modal .form-group textarea {
  min-height: 120px;
  resize: vertical;
}
#party-modal .form-group input:focus,
#party-modal .form-group textarea:focus {
  outline: 2px solid #e8a23a;
  outline-offset: 1px;
}
#party-modal .hp-field {
  position: absolute;
  left: -5000px;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
#party-modal .form-msg {
  margin-top: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  font-size: 0.95rem;
  display: none;
}
#party-modal .form-msg.is-error {
  display: block;
  background: rgba(204, 68, 68, 0.15);
  border: 1px solid #c44;
  color: #f8c0c0;
}
#party-modal .form-msg.is-ok {
  display: block;
  background: rgba(51, 170, 136, 0.15);
  border: 1px solid #3a8;
  color: #c8f5e8;
}
#party-modal .btn-primary {
  display: inline-block;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.85rem 1.6rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  background: #e8a23a;
  color: #061a22;
}
#party-modal .btn-primary:hover {
  background: #f0b85a;
}
