/* =========================
   1 Mouse Marketing — Dark UI (Bootstrap-safe)
   ========================= */
:root{
  --surface: #252525;
  --surface-2: #2e2e2e;
  --border: #3a3a3a;
  --text: #e0e0e0;
  --muted: #b8b8b8;
  --muted-2: #8a8a8a;
  --heading: #ffffff;
  --accent: #7fe0e3; /* cyan accent per brand */
  --link: #7fe0e3;
  --link-hover: #aaf4f2;
  --shadow: 0 10px 30px rgba(0,0,0,.25);
}

/* Base */
html, body { background: var(--surface); color: var(--text); }
a { color: var(--link); text-decoration: none; }
a:hover, a:focus { color: var(--link-hover); text-decoration: underline; }
img { max-width: 100%; height: auto; }

/* Blockquote (fixed margins; no centering) */
blockquote { 
  color: var(--muted); 
  border-left: 3px solid var(--accent); 
  padding: .75rem 1rem; 
  margin: 1rem 0;            /* <- FIX: avoid auto-centering that breaks in sidebars */
  background: transparent;
}

/* Sections */
.section { padding: 4rem 1rem; }
.section--surface { background: var(--surface); color: var(--text); }
.section--contrast { background: var(--surface-2); color: var(--text); }
.section--center { text-align: center; }
.section--narrow { max-width: 900px; margin: 0 auto; }
.section--shadow { box-shadow: var(--shadow); }

/* Typography */
h1, h2, h3 { color: var(--heading); line-height: 1.2; margin: 0 0 .75rem; }
p.lead { font-size: 1.25rem; color: var(--muted); }
p.subtle { font-size: 1rem; color: var(--muted-2); }
.small { font-size: .9rem; color: var(--muted-2); }

/* ---- IMPORTANT ----
   Custom grid is SCOPED to avoid Bootstrap collisions.
   Use .omm-row / .omm-col* inside your components.
--------------------- */
.omm-row { display: flex; flex-wrap: wrap; gap: 1.25rem; }

/* Flexible column that can shrink/grow; base min width for cards */
.omm-col { flex: 1 1 260px; min-width: 0; }

/* Fixed-width helper (optional) */
.omm-col-fixed-300 { flex: 0 0 300px; max-width: 300px; }
.omm-col-fixed-360 { flex: 0 0 360px; max-width: 360px; }

/* Card-style column variant */
.omm-col--card { 
  background: var(--surface-2); 
  border: 1px solid var(--border); 
  border-radius: 12px; 
  padding: 1rem; 
}

/* Buttons (these intentionally style .btn to match brand) */
.btn { 
  display: inline-block; 
  font-weight: 600; 
  padding: .75rem 1.1rem; 
  border-radius: 10px; 
  border: 1px solid transparent; 
  transition: transform .08s ease, opacity .2s ease; 
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: #3b82f6; color: #fff; }
.btn-primary:hover { opacity: .95; }
.btn-success { background: #22c55e; color: #fff; }
.btn-success:hover { opacity: .95; }
.btn-light { background: #ffffff; color: #111; }
.btn-light:hover { opacity: .9; }
.btn-outline-light { background: transparent; color: #fff; border-color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,.08); }
.btn-accent { background: var(--accent); color: #111; }
.btn-accent:hover { filter: brightness(1.05); }

/* Accents */
.accent { color: var(--accent); }
hr.divider { border: 0; height: 1px; background: var(--border); margin: 2rem auto; max-width: 900px; }

/* Spacing utils */
.mt-0{margin-top:0!important;} .mt-1{margin-top:.5rem!important;} .mt-2{margin-top:1rem!important;} .mt-3{margin-top:1.5rem!important;} .mt-4{margin-top:2rem!important;}
.mb-0{margin-bottom:0!important;} .mb-1{margin-bottom:.5rem!important;} .mb-2{margin-bottom:1rem!important;} .mb-3{margin-bottom:1.5rem!important;} .mb-4{margin-bottom:2rem!important;}
.pt-0{padding-top:0!important;} .pt-2{padding-top:1rem!important;} .pt-4{padding-top:2rem!important;}
.pb-0{padding-bottom:0!important;} .pb-2{padding-bottom:1rem!important;} .pb-4{padding-bottom:2rem!important;}

/* Accessibility & motion */
:focus-visible { outline: 2px dashed var(--accent); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce){
  * { animation: none !important; transition: none !important; }
}

/* Responsive tweaks */
@media (min-width: 992px){
  .section { padding: 4.5rem 2rem; }
  .hero h1 { font-size: 3rem; }
}

/* ---- Bootstrap harmony helpers (optional) ----
   If you want card styling on Bootstrap columns without touching .col:
------------------------------------------------*/
.bt-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
}
