﻿/* ============================================================
   Halls Booking — Availability Calendar, Inquiry Form,
   Process Steps, Admin Panel styles
   Colors follow the April 2026 palette:
     --primary-gold: #C9A646   --warm-brown: #2C1810
     --cream: #FAF7F2          --bulgarian-red: #D62612
   ============================================================ */

/* ─── How-It-Works Steps ─────────────────────────────────────── */
.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin: 48px 0 16px;
}
.process-step {
  flex: 1 1 180px;
  max-width: 220px;
  text-align: center;
  padding: 28px 20px;
  background: #FAF7F2;
  border: 1.5px solid rgba(201,166,70,0.3);
  border-radius: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44,24,16,0.12);
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, #C9A646, #a07c2f);
  color: #fff;
  font-family: 'Orthodox', serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 12px;
}
.step-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 12px;
}
.process-step h3 {
  font-family: 'Orthodox', serif;
  font-size: 1rem;
  color: #2C1810;
  margin-bottom: 8px;
}
.process-step p {
  font-size: 0.875rem;
  color: #666;
  font-family: 'PT Serif', serif;
  line-height: 1.5;
}
.process-arrow {
  align-self: center;
  font-size: 1.5rem;
  color: #C9A646;
  padding: 0 8px;
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .process-arrow { display: none; }
  .process-steps { gap: 16px; }
}

/* ─── Availability Calendar ──────────────────────────────────── */
.avail-calendar-wrap {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 32px 0 24px;
}
.cal-month-block {
  flex: 1 1 260px;
  max-width: 300px;
  background: #FAF7F2;
  border: 1.5px solid rgba(201,166,70,0.3);
  border-radius: 12px;
  overflow: hidden;
}
.cal-month-header {
  background: #2C1810;
  color: #C9A646;
  font-family: 'Orthodox', serif;
  font-size: 0.95rem;
  text-align: center;
  padding: 12px 8px;
  letter-spacing: 0.05em;
}
.cal-dow-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: rgba(44,24,16,0.08);
}
.cal-dow {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: #2C1810;
  padding: 6px 0;
  font-family: 'Open Sans', sans-serif;
}
.cal-days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  padding: 8px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-family: 'Open Sans', sans-serif;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.18s ease;
  position: relative;
  color: #2C1810;
  background: rgba(250,247,242,0.5);
}
.cal-day.empty { cursor: default; background: transparent; }
.cal-day.past  { color: #bbb; cursor: default; background: transparent; }
.cal-day.today {
  border: 2px solid #003893;
  font-weight: 700;
  color: #003893;
}
.cal-day.available:hover {
  background: rgba(201,166,70,0.2);
  transform: scale(1.1);
  z-index: 1;
}
.cal-day.available.selected {
  background: #C9A646;
  color: #fff;
  font-weight: 700;
  transform: scale(1.1);
  z-index: 1;
}
.cal-day.booked {
  background: rgba(214,38,18,0.12);
  color: #D62612;
  cursor: not-allowed;
  text-decoration: line-through;
  opacity: 0.7;
}
.cal-day.pending {
  background: rgba(201,166,70,0.25);
  color: #8a6a00;
  cursor: not-allowed;
}
.cal-day.pending::after {
  content: '';
  position: absolute;
  bottom: 3px; right: 3px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #C9A646;
}
.cal-day.held {
  background: rgba(44,24,16,0.12);
  color: #888;
  cursor: not-allowed;
}

.cal-legend {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 8px 0 32px;
  font-size: 0.82rem;
  font-family: 'Open Sans', sans-serif;
  color: #555;
}
.cal-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.cal-legend-dot {
  width: 14px; height: 14px;
  border-radius: 3px;
  flex-shrink: 0;
}
.cal-legend-dot.available { background: rgba(201,166,70,0.2); border: 1.5px solid #C9A646; }
.cal-legend-dot.pending   { background: rgba(201,166,70,0.25); }
.cal-legend-dot.booked    { background: rgba(214,38,18,0.15); }
.cal-legend-dot.held      { background: rgba(44,24,16,0.12); }

.cal-offline-msg {
  text-align: center;
  padding: 40px 20px;
  color: #888;
  font-family: 'PT Serif', serif;
  font-size: 0.95rem;
  background: #FAF7F2;
  border-radius: 12px;
  border: 1.5px dashed rgba(201,166,70,0.4);
}
.cal-offline-msg strong { display: block; font-size: 1.05rem; color: #2C1810; margin-bottom: 8px; }

/* ─── Inquiry Form ───────────────────────────────────────────── */
.inquiry-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}
@media (max-width: 900px) {
  .inquiry-layout { grid-template-columns: 1fr; }
}

.inquiry-form {
  background: #FAF7F2;
  border: 1.5px solid rgba(201,166,70,0.3);
  border-radius: 14px;
  padding: 36px 32px;
}
@media (max-width: 600px) {
  .inquiry-form { padding: 24px 18px; }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 620px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #2C1810;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.form-group label .req { color: #D62612; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid rgba(44,24,16,0.18);
  border-radius: 8px;
  font-size: 0.93rem;
  font-family: 'Open Sans', sans-serif;
  color: #2C1810;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #C9A646;
  box-shadow: 0 0 0 3px rgba(201,166,70,0.15);
}
.form-group input.invalid,
.form-group select.invalid {
  border-color: #D62612;
  box-shadow: 0 0 0 3px rgba(214,38,18,0.1);
}
.form-group textarea { resize: vertical; min-height: 90px; }

/* ─── Field hint text ────────────────────────────────────────── */
.field-hint {
  display: block;
  font-size: 0.74rem;
  color: #999;
  font-family: 'Open Sans', sans-serif;
  font-weight: normal;
  text-transform: none;
  letter-spacing: 0;
  margin: -2px 0 5px;
  line-height: 1.4;
}

/* ─── Section dividers inside the form ──────────────────────── */
.form-section-label {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  color: #C9A646;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 26px 0 14px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(201,166,70,0.35);
}

/* ─── Timing block ───────────────────────────────────────────── */
.timing-block {
  background: rgba(44,24,16,0.03);
  border: 1px solid rgba(44,24,16,0.1);
  border-radius: 10px;
  padding: 16px 16px 4px;
  margin-bottom: 4px;
}

/* ─── Radio pill buttons (alcohol yes/no) ────────────────────── */
.radio-row {
  display: flex;
  gap: 10px;
  margin-top: 5px;
  flex-wrap: wrap;
}
.radio-option {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 0.88rem;
  font-family: 'Open Sans', sans-serif;
  color: #2C1810;
  font-weight: normal;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
  padding: 9px 14px;
  border: 1.5px solid rgba(44,24,16,0.15);
  border-radius: 8px;
  background: #fff;
  transition: border-color 0.18s, background 0.18s;
  white-space: nowrap;
}
.radio-option:hover { border-color: #C9A646; background: rgba(201,166,70,0.07); }
.radio-option input[type="radio"] {
  accent-color: #C9A646;
  width: 15px; height: 15px;
  flex-shrink: 0;
}

/* ─── Add-on service cards ───────────────────────────────────── */
.addons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 4px;
}
.addon-check {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 12px 14px;
  border: 1.5px solid rgba(44,24,16,0.12);
  border-radius: 8px;
  background: #fff;
  transition: border-color 0.18s, background 0.18s;
}
.addon-check:hover { border-color: #C9A646; background: rgba(201,166,70,0.06); }
.addon-check input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: #C9A646;
  cursor: pointer;
  flex-shrink: 0;
}
.addon-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.3;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.88rem;
  color: #2C1810;
}
.addon-price {
  font-size: 0.74rem;
  color: #C9A646;
  font-weight: 600;
}

/* ─── Addon qty expand (linens / chairs) ────────────────────── */
.addon-expandable { flex-direction: column; align-items: stretch; cursor: default; }
.addon-main-row { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.addon-qty-expand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(44,24,16,0.08);
  flex-wrap: wrap;
}
.addon-qty-label { font-size: 0.82rem; font-weight: 600; color: #2C1810; font-family: 'Open Sans', sans-serif; white-space: nowrap; }
.addon-qty-input {
  width: 72px;
  padding: 5px 8px;
  border: 1.5px solid rgba(44,24,16,0.2);
  border-radius: 6px;
  font-size: 0.9rem;
  text-align: center;
  color: #2C1810;
  background: #fff;
}
.addon-qty-input:focus { outline: none; border-color: #C9A646; box-shadow: 0 0 0 2px rgba(201,166,70,0.2); }
.addon-qty-hint { font-size: 0.74rem; color: #999; font-family: 'Open Sans', sans-serif; }

.inquiry-submit-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #2C1810, #4a2a1a);
  color: #C9A646;
  font-family: 'Orthodox', serif;
  font-size: 1rem;
  letter-spacing: 0.06em;
  border: 2px solid #C9A646;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 8px;
}
.inquiry-submit-btn:hover {
  background: #C9A646;
  color: #2C1810;
  border-color: #C9A646;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,166,70,0.35);
}
.inquiry-submit-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.form-offline-note {
  background: rgba(201,166,70,0.1);
  border: 1px solid rgba(201,166,70,0.4);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.84rem;
  color: #6b4e00;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 20px;
  display: none;
}
.form-offline-note.visible { display: block; }

/* ─── Quote Panel ────────────────────────────────────────────── */
.quote-panel {
  background: #2C1810;
  color: #fff;
  border-radius: 14px;
  padding: 28px 24px;
  position: sticky;
  top: 80px;
}
.quote-panel-title {
  font-family: 'Orthodox', serif;
  font-size: 1rem;
  color: #C9A646;
  text-align: center;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}
.quote-panel-subtitle {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 20px;
}
.quote-divider {
  height: 1px;
  background: rgba(201,166,70,0.3);
  margin: 16px 0;
}
.quote-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.88rem;
  font-family: 'Open Sans', sans-serif;
  color: rgba(255,255,255,0.75);
  margin-bottom: 10px;
}
.quote-row .qlabel { flex: 1; }
.quote-row .qamt   { font-weight: 600; color: rgba(255,255,255,0.9); }
.quote-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 4px;
}
.quote-total-label {
  font-family: 'Orthodox', serif;
  font-size: 0.95rem;
  color: #C9A646;
}
.quote-total-amt {
  font-family: 'Orthodox', serif;
  font-size: 1.5rem;
  color: #C9A646;
}
.quote-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  font-family: 'Open Sans', sans-serif;
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}
.quote-empty-msg {
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-family: 'PT Serif', serif;
  font-size: 0.88rem;
  padding: 20px 0;
  font-style: italic;
}

/* ─── Form success / error messages ─────────────────────────── */
.inquiry-result {
  display: none;
  border-radius: 10px;
  padding: 28px 24px;
  text-align: center;
  font-family: 'PT Serif', serif;
  margin-top: 20px;
}
.inquiry-result.success {
  background: rgba(201,166,70,0.12);
  border: 1.5px solid rgba(201,166,70,0.4);
  color: #2C1810;
}
.inquiry-result.error {
  background: rgba(214,38,18,0.08);
  border: 1.5px solid rgba(214,38,18,0.3);
  color: #a01000;
}
.inquiry-result.visible { display: block; }
.inquiry-result-icon { font-size: 2.2rem; margin-bottom: 10px; }
.inquiry-result h3 {
  font-family: 'Orthodox', serif;
  color: #2C1810;
  margin-bottom: 8px;
}

/* ─── Agreement Page ─────────────────────────────────────────── */
.agreement-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}
.agreement-doc {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 44px 48px;
  font-family: 'PT Serif', serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #222;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  margin-bottom: 32px;
}
@media (max-width: 600px) {
  .agreement-doc { padding: 24px 18px; }
}
.agreement-doc h1 {
  font-family: 'Orthodox', serif;
  font-size: 1.4rem;
  color: #2C1810;
  text-align: center;
  margin-bottom: 4px;
}
.agreement-doc .agr-subtitle {
  text-align: center;
  color: #777;
  font-size: 0.85rem;
  margin-bottom: 28px;
}
.agr-hr { border: none; border-top: 1.5px solid #C9A646; margin: 22px 0; }
.agr-section-title {
  font-family: 'Orthodox', serif;
  font-size: 1rem;
  color: #2C1810;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.agr-detail-grid {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 4px 12px;
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.agr-detail-label { font-weight: 700; color: #2C1810; }
.agr-detail-value { color: #333; }
.agr-terms-list {
  list-style: decimal;
  padding-left: 20px;
  font-size: 0.875rem;
  color: #444;
  line-height: 1.65;
}
.agr-terms-list li { margin-bottom: 6px; }

/* Signature area */
.sig-section {
  background: #FAF7F2;
  border: 1.5px solid rgba(201,166,70,0.4);
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 24px;
}
.sig-section h3 {
  font-family: 'Orthodox', serif;
  font-size: 1rem;
  color: #2C1810;
  margin-bottom: 6px;
}
.sig-section p {
  font-size: 0.85rem;
  color: #666;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 14px;
}
.sig-canvas-wrap {
  border: 2px solid rgba(44,24,16,0.2);
  border-radius: 8px;
  background: #fff;
  cursor: crosshair;
  overflow: hidden;
  position: relative;
}
#sig-canvas {
  display: block;
  width: 100%;
  height: 140px;
  touch-action: none;
}
.sig-canvas-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-family: 'PT Serif', serif;
  font-style: italic;
  font-size: 0.9rem;
  pointer-events: none;
}
.sig-actions {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-clear-sig {
  background: none;
  border: 1.5px solid rgba(44,24,16,0.25);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 0.82rem;
  color: #666;
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
  transition: all 0.2s;
}
.btn-clear-sig:hover { border-color: #D62612; color: #D62612; }

.btn-sign-submit {
  flex: 1;
  min-width: 180px;
  padding: 13px 24px;
  background: linear-gradient(135deg, #2C1810, #4a2a1a);
  color: #C9A646;
  font-family: 'Orthodox', serif;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  border: 2px solid #C9A646;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s;
}
.btn-sign-submit:hover {
  background: #C9A646;
  color: #2C1810;
  border-color: #C9A646;
}
.btn-sign-submit:disabled { opacity: 0.5; cursor: not-allowed; }

.agreement-success {
  display: none;
  text-align: center;
  background: rgba(201,166,70,0.1);
  border: 1.5px solid rgba(201,166,70,0.4);
  border-radius: 12px;
  padding: 36px 28px;
  font-family: 'PT Serif', serif;
}
.agreement-success.visible { display: block; }
.agreement-success-icon { font-size: 3rem; margin-bottom: 14px; }
.agreement-success h2 {
  font-family: 'Orthodox', serif;
  color: #2C1810;
  margin-bottom: 10px;
}

/* ─── Admin Panel ────────────────────────────────────────────── */
.admin-wrap { max-width: 1100px; margin: 0 auto; padding: 30px 20px 60px; }
.admin-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid rgba(201,166,70,0.3);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.admin-tab {
  padding: 12px 22px;
  font-family: 'Orthodox', serif;
  font-size: 0.88rem;
  color: #888;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s;
  background: none;
  border-top: none; border-left: none; border-right: none;
}
.admin-tab:hover   { color: #2C1810; }
.admin-tab.active  { color: #2C1810; border-bottom-color: #C9A646; font-weight: 700; }

.admin-panel { display: none; }
.admin-panel.active { display: block; }

.inquiry-card {
  background: #FAF7F2;
  border: 1.5px solid rgba(201,166,70,0.3);
  border-radius: 10px;
  padding: 20px 22px;
  margin-bottom: 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: start;
}
.inquiry-card-meta { font-size: 0.8rem; color: #888; font-family: 'Open Sans', sans-serif; }
.inquiry-card-name { font-family: 'Orthodox', serif; font-size: 1.05rem; color: #2C1810; margin-bottom: 2px; }
.inquiry-card-detail { font-size: 0.88rem; color: #555; font-family: 'PT Serif', serif; }
.inquiry-card-actions { display: flex; flex-direction: column; gap: 7px; align-items: flex-end; }

.status-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.73rem;
  font-weight: 700;
  font-family: 'Open Sans', sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.status-new         { background: rgba(44,24,16,0.1); color: #2C1810; }
.status-agreement_sent { background: rgba(201,166,70,0.25); color: #6b4e00; }
.status-signed      { background: rgba(44,120,44,0.15); color: #1a5c1a; }
.status-confirmed   { background: rgba(44,120,44,0.3); color: #0f400f; }
.status-declined    { background: rgba(214,38,18,0.12); color: #a01000; }

.admin-btn {
  padding: 6px 13px;
  font-size: 0.78rem;
  font-family: 'Open Sans', sans-serif;
  border-radius: 6px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.18s;
  white-space: nowrap;
}
.admin-btn-gold  { background: #C9A646; color: #fff; border-color: #C9A646; }
.admin-btn-gold:hover { background: #a07c2f; }
.admin-btn-outline { background: transparent; color: #2C1810; border-color: rgba(44,24,16,0.3); }
.admin-btn-outline:hover { background: rgba(44,24,16,0.06); }
.admin-btn-red  { background: transparent; color: #D62612; border-color: rgba(214,38,18,0.35); }
.admin-btn-red:hover { background: rgba(214,38,18,0.08); }

.avail-manage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}
@media (max-width: 700px) {
  .avail-manage-grid { grid-template-columns: 1fr; }
}
.avail-list-box {
  background: #FAF7F2;
  border: 1.5px solid rgba(201,166,70,0.3);
  border-radius: 10px;
  padding: 16px;
}
.avail-list-box h4 {
  font-family: 'Orthodox', serif;
  font-size: 0.9rem;
  color: #2C1810;
  margin-bottom: 10px;
}
.avail-date-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  font-family: 'Open Sans', sans-serif;
  color: #444;
  padding: 4px 0;
  border-bottom: 1px solid rgba(44,24,16,0.07);
}
.avail-date-item:last-child { border-bottom: none; }
.avail-date-item button {
  background: none; border: none; color: #D62612; cursor: pointer; font-size: 0.75rem; padding: 2px 6px;
}
.avail-add-row {
  display: flex; gap: 8px; margin-top: 12px;
}
.avail-add-row input {
  flex: 1; padding: 7px 10px; border: 1.5px solid rgba(44,24,16,0.2); border-radius: 6px; font-size: 0.85rem;
  font-family: 'Open Sans', sans-serif; color: #2C1810;
}
.avail-add-row button {
  padding: 7px 14px; background: #C9A646; color: #fff; border: none; border-radius: 6px;
  font-size: 0.82rem; cursor: pointer; font-family: 'Open Sans', sans-serif;
}

/* ─── Hall Availability Calendar (hall-calendar.js) ─────────── */
.hcal-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-bottom: 24px;
}
.hcal-month {
  flex: 1 1 280px;
  max-width: 340px;
  background: #fff;
  border: 1px solid rgba(201,166,70,0.25);
  border-radius: 10px;
  padding: 18px 16px 14px;
  box-shadow: 0 2px 12px rgba(44,24,16,0.07);
}
.hcal-month-name {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 600;
  color: #2C1810;
  text-align: center;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.hcal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.hcal-dow {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  color: #999;
  text-align: center;
  padding: 4px 0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hcal-cell {
  border-radius: 6px;
  padding: 5px 2px 4px;
  text-align: center;
  min-height: 46px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 2px;
}
.hcal-blank { background: transparent; }
.hcal-num {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1;
}
.hcal-status {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1;
}
.hcal-past {
  background: #f4f4f4;
}
.hcal-past .hcal-num { color: #ccc; }
.hcal-past .hcal-status { display: none; }

.hcal-available {
  background: #f0f7f0;
}
.hcal-available .hcal-num  { color: #2a6b2a; }
.hcal-available .hcal-status { color: #3a8a3a; }

.hcal-booked {
  background: #fdf0f0;
  border: 1px solid rgba(180,30,30,0.15);
}
.hcal-booked .hcal-num  { color: #8B1A1A; }
.hcal-booked .hcal-status { color: #b02020; }

/* Nav */
.hcal-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 4px 0 20px;
}
.hcal-nav-btn {
  background: none;
  border: 1.5px solid rgba(44,24,16,0.25);
  padding: 8px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.82rem;
  color: #2C1810;
  transition: border-color 0.2s, background 0.2s;
}
.hcal-nav-btn:hover:not(:disabled) {
  border-color: #C9A646;
  background: rgba(201,166,70,0.08);
}
.hcal-nav-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

/* Legend */
.hcal-legend {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.hcal-legend-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8rem;
  color: #666;
}
.hcal-dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  flex-shrink: 0;
}
.hcal-dot.available { background: #d4edda; border: 1px solid #3a8a3a; }
.hcal-dot.booked    { background: #fdf0f0; border: 1px solid #b02020; }
.hcal-dot.past      { background: #f4f4f4; border: 1px solid #ccc; }