/* sophie-boost.css — Waternet.co.uk upgrade
   Google Fonts, consistent typography, mobile scaling
   Injected into all pages by web_fixer.py */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&family=Montserrat:wght@400;600;700;800&display=swap');

/* ── Typography base ──────────────────────────────────────── */
body, html {
  font-family: 'Lato', Arial, sans-serif !important;
  -webkit-text-size-adjust: 100%;
}

/* Headings — Montserrat */
h1, h2, h3, h4, h5, h6,
.Style311, .Style328, .Style349 {
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em;
}

/* Body text — Lato */
p, span, a, li, td, th, div,
.Style312, .Style313, .Style317, .Style318, .Style346 {
  font-family: 'Lato', Arial, sans-serif !important;
}

/* Navigation links */
.ewnavmenu a, .ewnavmenu li, #navigation_menu0 a {
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── Mobile scaling wrapper ────────────────────────────────── */
/* Applied by sophie-boost.js at runtime based on viewport width */
.sophie-mobile-scale {
  transform-origin: top left;
  transition: transform 0.2s ease;
}

/* ── Booking button (injected into nav) ───────────────────── */
.sophie-book-btn {
  display: inline-block;
  background: #0077cc;
  color: #fff !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-left: 10px;
  transition: background 0.2s ease;
  white-space: nowrap;
}
.sophie-book-btn:hover {
  background: #005599 !important;
  color: #fff !important;
}

/* ── Mobile banner (shown only on small screens) ─────────── */
.sophie-mobile-bar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: #0077cc;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
  text-align: center;
  line-height: 1.5;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.sophie-mobile-bar a {
  color: #fff !important;
  text-decoration: underline;
  margin: 0 6px;
}

@media only screen and (max-width: 768px) {
  .sophie-mobile-bar { display: block; }
  body { padding-top: 48px; }
}

/* ── Print improvements ───────────────────────────────────── */
@media print {
  .sophie-mobile-bar, .sophie-book-btn { display: none !important; }
}
