/*
 * halodoctor.css
 * Brand overrides on top of Bootstrap 4.3.1 (loaded via CDN in index.html).
 * Mirrors the visual style of https://www.halodoctor.pl/
 *
 * TODO: once client provides exact brand assets, update:
 *   — --hd-brand-primary  (exact blue hex)
 *   — --hd-brand-font     (if custom typeface is used)
 *   — logo image path
 */

/* ── BRAND TOKENS ───────────────────────────────────────────────────────── */

:root {
  --hd-brand-primary:  #007bff; /* Bootstrap default; update if client uses custom blue */
  --hd-brand-font:     -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ── BASE ───────────────────────────────────────────────────────────────── */

body {
  font-family: var(--hd-brand-font);
  color: #212529;
}

a {
  color: var(--hd-brand-primary);
}

a:hover {
  color: #0056b3;
}

/* ── BUTTONS ────────────────────────────────────────────────────────────── */

.btn-primary {
  background-color: var(--hd-brand-primary);
  border-color: var(--hd-brand-primary);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #0069d9;
  border-color: #0062cc;
}

/* ── TYPOGRAPHY SCALE ───────────────────────────────────────────────────── */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--hd-brand-font);
  font-weight: 700;
}
