/*
Theme Name: GeneratePress Child - ניהול בקליק
Template: generatepress
Version: 1.0
Text Domain: generatepress-child
*/

:root {
  --nbc-blue-dark: #114b6b;
  --nbc-blue: #1c7293;
  --nbc-teal: #2f9aa8;
  --nbc-cyan: #5cc4d1;
  --nbc-blue-pale: #eaf6f8;
  --nbc-blue-border: #a9d4dc;
}

/* Site-wide: every element inherits font-family from body by default, so
   this alone covers headings, paragraphs, menus, widgets etc. - the
   explicit list on top is only for the handful of elements GeneratePress's
   own CSS resets to a fixed system-font stack instead of inheriting
   (button, input, select, textarea), so nothing on the page is left on the
   old font. */
body,
button,
input,
select,
textarea {
  font-family: 'Open Sans Hebrew Condensed', Arial, 'Segoe UI', sans-serif;
}

a {
  color: var(--nbc-blue-dark);
}

a:hover {
  color: var(--nbc-teal);
}

.site-header,
.main-navigation {
  background-color: var(--nbc-blue-pale);
  border-bottom: 1px solid var(--nbc-blue-border);
}

.main-navigation a {
  color: var(--nbc-blue-dark);
}

.site-title a {
  color: var(--nbc-blue-dark);
  font-weight: 700;
}

.button,
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  background-color: var(--nbc-blue);
  border-color: var(--nbc-blue-dark);
  color: #fff;
}

.button:hover,
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  background-color: var(--nbc-blue-dark);
}
