/* ============================================================
   global.css — MyVaak shared stylesheet
   Replaces: inline per-page header CSS + assets/footer.css
   Included via <link rel="stylesheet"> in all public pages.
   ============================================================ */

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

/* DESIGN TOKENS */
:root {
  --navy: #062d50;
  --mid:  #0a4a7c;
  --teal: #0d8a6e;
  --sky:  #7dd3fc;
  --bg:   #f4f7fc;
  --bdr:  #dde4f0;
  --r:    11px;
  --w:    #fff;
  --text: #1a1a2e;
  --muted:#5a7080;
  --gold: #f59e0b;
}

/* BASE */
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── HEADER ──────────────────────────────────────────────── */
.site-header {
  background: var(--navy);
  border-bottom: 3px solid var(--teal);
  padding: 14px 20px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.site-header img { height: 40px; width: auto; display: block; }

.site-tagline {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--sky);
}

.header-login {
  display: block;
  text-align: center;
  margin-top: 4px;
}
.header-login a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #216970;
  text-decoration: none;
  background: #ddfc74;
  border: 1px solid #0d8a6e;
  border-radius: 5px;
  padding: 3px 10px;
}
.header-login a:hover { background: #0d8a6e; color: #fff; }

/* ── FOOTER ──────────────────────────────────────────────── */
.mv-footer {
  background: linear-gradient(180deg, #0a3d6b 0%, #062d50 100%);
  color: rgba(255,255,255,0.80);
  padding: 18px 20px 14px;
  border-top: 3px solid #0d8a6e;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}
.mv-footer-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}
.mv-footer-logo { margin-bottom: 2px; }
.mv-footer-logo img { height: 38px; width: auto; }

.mv-footer-wordmark {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
}
.mv-footer-wordmark span { color: var(--sky); }

.mv-footer-credentials {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
}

.mv-footer-primary {
  font-size: 13px;
  color: white;
  line-height: 1.6;
}
.mv-footer-primary a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
}
.mv-footer-primary a:hover { text-decoration: underline; }

.mv-footer-links {
  font-size: 12px;
  color: rgba(255,255,255,0.60);
}
.mv-footer-links a {
  color: rgba(255,255,255,0.60);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.mv-footer-links a:hover { color: var(--sky); }

.mv-footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
}
.mv-footer-social a {
  color: rgba(255,255,255,0.55);
  transition: color 0.15s, transform 0.15s;
  display: flex;
  align-items: center;
}
.mv-footer-social a:hover { color: var(--sky); transform: translateY(-2px); }

.mv-footer-chamber {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.mv-chamber-label {
  font-size: 11px;
  color: white;
  font-style: italic;
}
.mv-footer-chamber img { height: 42px; width: auto; opacity: 0.9; }
.mv-chamber-fallback {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 4px 12px;
  border-radius: 4px;
}

.mv-footer-copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}

.mv-footer-feedback {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}

.mv-footer-legal {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  max-width: 540px;
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 10px;
  margin-top: 2px;
}
.mv-footer-legal strong { color: rgba(255,255,255,0.55); }
