/* =========================
   BarnMD Brand Foundation
   ========================= */

/* CSS Variables */
:root {
  --bmd-primary: #2F80ED;
  --bmd-black: #111111;
  --bmd-white: #ffffff;
  --bmd-light-gray: #f5f7fa;
  --bmd-border: #e5e7eb;
}

/* Base */
body {
  background-color: var(--bmd-light-gray);
  color: var(--bmd-black);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  color: var(--bmd-black);
  font-weight: 600;
  line-height: 1.3;
}

/* Links */
a {
  color: var(--bmd-primary);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Buttons */
.button,
.wp-block-button__link {
  background-color: var(--bmd-primary);
  color: var(--bmd-white);
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 500;
  border: none;
}

.wp-block-button__link:hover {
  opacity: 0.9;
}

/* Sections */
.section {
  padding: 4rem 1.5rem;
}

/* Cards */
.card {
  background: var(--bmd-white);
  border: 1px solid var(--bmd-border);
  border-radius: 10px;
  padding: 2rem;
}