@font-face {
  font-family: 'Blooms Hand';
  src: url('/uploads/fonts/BloomsHand-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --bg: #20262b;
  --panel: rgba(10, 16, 20, .35);
  --text: #ffffff;
  --muted: #cbd5e1;
  --gold: #f5a623;
  --line: rgba(255,255,255,.12);
}
* { box-sizing: border-box; }
html, body { margin: 0; width: 100%; min-height: 100%; background: #111; color: var(--text); }
body { font-family: system-ui, -apple-system, Segoe UI, sans-serif; }
.screen {
  width: 1080px;
  min-height: 1920px;
  margin: 0 auto;
  padding: 78px 80px 70px;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.06), transparent 26%),
    linear-gradient(90deg, rgba(0,0,0,.5), rgba(0,0,0,.12)),
    var(--bg);
}
.header { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; }
.date-block { min-width: 0; flex: 1; }
.eyebrow { margin: 0 0 8px; color: var(--gold); font-size: 28px; letter-spacing: .08em; text-transform: uppercase; }
.top-logo { max-width: 410px; max-height: 130px; object-fit: contain; object-position: left center; display: block; margin-bottom: 18px; }
h1 { margin: 0; font-size: 58px; line-height: 1.05; }
.header-time { color: white; font-family: system-ui, -apple-system, Segoe UI, sans-serif; font-size: 44px; line-height: 1; font-weight: 850; letter-spacing: .01em; white-space: nowrap; text-align: right; margin-top: 32px; }
.preview-label { display: block; color: var(--muted); font-family: system-ui, sans-serif; font-size: 18px; font-style: normal; margin-top: 12px; text-transform: uppercase; letter-spacing: .08em; }
.help { text-align: right; color: var(--gold); font-size: 58px; font-family: 'Blooms Hand', 'Segoe Print', 'Comic Sans MS', cursive; font-style: normal; line-height: .95; min-width: 250px; text-transform: none; letter-spacing: 0; }
.help span { text-transform: none; }
.banner { margin-top: 48px; padding: 28px 32px; border: 1px solid var(--line); border-radius: 18px; background: var(--panel); }
.banner strong { display: block; color: var(--gold); font-size: 28px; margin-bottom: 8px; }
.banner p { margin: 0; font-size: 28px; line-height: 1.25; }
.banner.subtle { background: transparent; }
.bookings { margin-top: 44px; display: grid; gap: 20px; }
.booking { padding: 26px 30px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 350px; gap: 24px; background: rgba(255,255,255,.02); }
.booking.current { border-left: 8px solid var(--gold); background: rgba(245,166,35,.08); }
.booking.tentative h2, .booking.tentative .meta { font-style: italic; }
.booking.harvest h2, .booking.harvest .room { color: var(--gold); }
.booking.unavailable { opacity: .72; }
.booking h2 { margin: 0 0 8px; font-size: var(--booking-title-size, 30px); line-height: 1.15; }
.booking p { margin: 0; color: var(--muted); font-size: var(--booking-notes-size, 20px); }
.meta { display: grid; justify-items: end; align-content: start; gap: 8px; text-align: right; font-size: var(--booking-room-size, 22px); }
.time { color: white; font-weight: 850; font-size: var(--booking-time-size, 28px); line-height: 1.1; }
.room { color: var(--gold); font-weight: 700; }
.available { margin-top: 80px; padding: 42px; border: 1px solid var(--line); border-radius: 22px; background: rgba(245,166,35,.08); display: grid; grid-template-columns: 1fr 220px; gap: 34px; align-items: center; }
.available h2 { margin: 0 0 18px; font-size: 44px; color: var(--gold); }
.available p { margin: 0; font-size: 30px; line-height: 1.3; }
.hire-qr { width: 220px; height: 220px; object-fit: contain; background: white; padding: 12px; border-radius: 16px; }
footer { margin-top: auto; display: flex; justify-content: space-between; align-items: end; gap: 40px; border-top: 1px solid var(--line); padding-top: 28px; }
.brand { font-size: 34px; color: var(--muted); min-width: 280px; }
.brand span { color: white; font-weight: 800; }
.bottom-logo { max-width: 330px; max-height: 110px; object-fit: contain; object-position: left center; display: block; }
.whats-on { color: white; font-weight: 800; font-size: 30px; text-align: right; }
.whats-on small { display: block; color: var(--gold); font-size: 17px; margin-top: 4px; }
@media (max-width: 1100px) {
  .screen { width: 100vw; min-height: 100vh; }
}
.room-list { color: var(--gold); font-weight: 700; font-size: var(--booking-room-size, 22px); display: flex; flex-wrap: wrap; justify-content: flex-end; column-gap: 14px; row-gap: 0; align-items: center; }
.room-name { display: inline-flex; align-items: center; gap: 8px; }
.room-icon { display: inline-flex; width: 30px; height: 30px; color: inherit; vertical-align: middle; }
.room-icon svg { width: 100%; height: 100%; fill: currentColor; display: block; }
