/* Revolve Bar / YOTEL Edinburgh — brand: #49004E aubergine, #FFFFFF white, #7F7F7F grey */

/* Right Grotesk is a paid font — drop the files into public/fonts/.
   Expected names: RightGrotesk-Bold.woff2 (preferred) or RightGrotesk-Bold.otf.
   If missing, the browser silently falls back to the sans stack below. */
@font-face {
  font-family: 'Right Grotesk';
  src: url('/fonts/RightGrotesk-Bold.woff2') format('woff2'),
       url('/fonts/RightGrotesk-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Right Grotesk';
  src: url('/fonts/RightGrotesk-Regular.woff2') format('woff2'),
       url('/fonts/RightGrotesk-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --aubergine: #49004E;
  --white: #FFFFFF;
  --grey: #7F7F7F;
  /* Tints/shades of the three brand colours only (alpha blends) */
  --ink-70: rgba(255, 255, 255, 0.70);
  --ink-45: rgba(255, 255, 255, 0.45);
  --panel: rgba(255, 255, 255, 0.07);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --line: rgba(255, 255, 255, 0.16);
  --shadow: rgba(0, 0, 0, 0.35);
  --heading: 'Right Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --body: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }

html, body {
  background: var(--aubergine);
  color: var(--white);
  font-family: var(--body);
  min-height: 100%;
}

h1, h2, h3, .heading {
  font-family: var(--heading);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brandbar {
  text-align: center;
  padding: 20px 16px 6px;
}
.brandbar .venue {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.brandbar .sub {
  color: var(--grey);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 4px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  margin: 14px 0;
}

label { display: block; font-size: 0.8rem; color: var(--ink-70); margin: 14px 0 6px; letter-spacing: 0.04em; }

input[type="text"], input[type="email"], input[type="number"], input[type="password"] {
  width: 100%;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.10);
  color: var(--white);
  font-family: var(--body);
  font-size: 1rem;
}
input::placeholder { color: var(--ink-45); }
input:focus { outline: 2px solid var(--white); outline-offset: -1px; }

.btn {
  display: inline-block;
  width: 100%;
  padding: 14px 18px;
  border: none;
  border-radius: 12px;
  background: var(--white);
  color: var(--aubergine);
  font-family: var(--heading);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}
.btn:active { transform: scale(0.98); }
.btn.ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--line);
}
.btn.danger {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--grey);
}
.btn.small { width: auto; padding: 8px 14px; font-size: 0.85rem; border-radius: 9px; }

.checkbox-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 16px 0;
  padding: 12px;
  border-radius: 10px;
  background: var(--panel);
  border: 1px solid var(--line);
  cursor: pointer;
}
.checkbox-row input { width: 22px; height: 22px; flex: none; margin-top: 1px; accent-color: var(--white); }
.checkbox-row span { font-size: 0.88rem; color: var(--ink-70); line-height: 1.45; }

.pill {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 50;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 99px;
  border: 1px solid var(--line);
  background: var(--aubergine);
  color: var(--ink-70);
}
.pill.ok { color: var(--white); border-color: var(--white); }
.pill.bad { color: var(--white); background: var(--grey); border-color: var(--grey); }

.error-msg { color: var(--white); background: rgba(255,255,255,0.14); border: 1px solid var(--grey); border-radius: 10px; padding: 10px 12px; font-size: 0.88rem; margin-top: 12px; }
.hidden { display: none !important; }

.footer-note { text-align: center; color: var(--grey); font-size: 0.7rem; padding: 20px 16px 30px; letter-spacing: 0.05em; }
