/* ===== KORALLTT — main.css ===== */

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* Header shadow on scroll (toggled via JS) */
#site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

/* Rich text (Wagtail content) */
.prose h2 { font-size: 1.25rem; font-weight: 700; color: #111827; margin-top: 1.5rem; margin-bottom: .5rem; }
.prose h3 { font-size: 1.1rem; font-weight: 600; color: #1f2937; margin-top: 1.25rem; margin-bottom: .4rem; }
.prose p  { margin-bottom: .75rem; line-height: 1.7; }
.prose ul { list-style: disc; padding-left: 1.4rem; margin-bottom: .75rem; }
.prose ul li { margin-bottom: .3rem; }
.prose ol { list-style: decimal; padding-left: 1.4rem; margin-bottom: .75rem; }
.prose strong { font-weight: 700; }
.prose a { color: #E05A3A; text-decoration: underline; }

/* Wagtail image tags */
img { max-width: 100%; height: auto; }

/* Active nav link highlight */
.nav-active { color: #E05A3A !important; }

/* Focus visible for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid #E05A3A;
  outline-offset: 2px;
}

/* Schedule booking grid */
.booking-table-header {
  background: #f9fafb;
  border-radius: 12px 12px 0 0;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  border: 1px solid #f3f4f6;
  border-bottom: none;
}
.booking-slot {
  position: relative;
  border-left: 1px solid #f3f4f6;
  border-right: 1px solid #f3f4f6;
}
.booking-slot:last-child {
  border-bottom: 1px solid #f3f4f6;
  border-radius: 0 0 12px 12px;
}
.booking-hour-label {
  font-size: 11px;
  color: #9ca3af;
  width: 40px;
  text-align: right;
  padding-right: 8px;
  flex-shrink: 0;
}
.booking-bar-busy {
  background: #fee2e2;
  border: 1px solid #fca5a5;
  color: #dc2626;
}
.booking-bar-free {
  background: #dcfce7;
  border: 1px solid #86efac;
  color: #16a34a;
}

/* Mobile tap highlight removal */
* { -webkit-tap-highlight-color: transparent; }

/* Prevent layout shift on mobile when mobile menu opens */
body.menu-open { overflow: hidden; }
