/* ============================================================
   shared.css — Barber Sped Hub
   Global styles shared across all hub pages.
   Page-specific styles remain in each file's <style> block.
   ============================================================ */

/* ── FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&family=Nunito+Sans:wght@400;600&display=swap');

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── CSS VARIABLES ── */
:root {
  --navy: #1F4E79;
  --navy-dark: #14365A;
  --navy-light: #D6E4F0;
  --blue: #2E75B6;
  --blue-light: #EBF4FB;
  --green: #2E7D32;
  --green-light: #E8F5E9;
  --amber: #E65100;
  --amber-light: #FFF3E0;
  --teal: #00695C;
  --teal-light: #E0F2F1;
  --purple: #5E35B1;
  --purple-light: #EDE7F6;
  --indigo: #4B0082;
  --indigo-mid: #6A0DAD;
  --indigo-light: #EEE5F8;
  --pink: #AD1457;
  --pink-light: #FCE4EC;
  --gray: #546E7A;
  --gray-light: #ECEFF1;
  --bg: #F0F4F8;
  --white: #FFFFFF;
  --text: #1A2733;
  --text-muted: #546E7A;
  --border: #DDE3EA;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 2px 12px rgba(31,78,121,0.10);
  --shadow-hover: 0 6px 24px rgba(31,78,121,0.16);
}

/* ── BASE BODY ── */
body {
  font-family: 'Nunito Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

/* ── HEADER ── */
header {
  background: var(--navy);
  color: white;
  padding: 0 2rem;
  height: 68px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-left  { display: flex; align-items: center; gap: 14px; }
.header-right { display: flex; align-items: center; gap: 10px; }

/* ── LOGO BADGE ── */
.logo-badge {
  background: var(--indigo);
  color: #FFF9C4;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 8px;
  letter-spacing: 0.5px;
  line-height: 1.2;
  text-align: center;
  flex-shrink: 0;
}

/* ── HEADER TEXT ── */
.header-title { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 18px; line-height: 1.2; color: white; }
.header-sub   { font-size: 12px; opacity: 0.75; font-weight: 400; margin-top: 2px; color: white; }

/* ── BACK TO HUB BUTTON ── */
.header-back {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  border-radius: 7px;
  padding: 6px 13px;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 12.5px;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.15s;
  white-space: nowrap;
}
.header-back:hover { background: rgba(255,255,255,0.22); }
