/**
 * @file
 * MarketMind accent layer for the front-end theme.
 *
 * No dark background: the front-end keeps the default light surface. This layer
 * only adds the brand accent (teal/neon primary, link colour, button polish)
 * via Bootstrap 5 CSS custom properties, so component markup stays on stock
 * Bootstrap classes. Loaded globally by marketmind_theme; Gin is unaffected.
 */

:root {
  /* Brand accent — teal "market mind", readable on a light surface. */
  --bs-primary: #0fa6ad;
  --bs-primary-rgb: 15, 166, 173;
  --bs-primary-text-emphasis: #0a767b;

  --bs-link-color: #0a8f97;
  --bs-link-color-rgb: 10, 143, 151;
  --bs-link-hover-color: #075f64;
  --bs-link-hover-color-rgb: 7, 95, 100;
}

/* Primary button → brand gradient with a soft lift. */
.btn-primary {
  --bs-btn-bg: #0fa6ad;
  --bs-btn-border-color: #0fa6ad;
  --bs-btn-hover-bg: #0c8c92;
  --bs-btn-hover-border-color: #0c8c92;
  --bs-btn-active-bg: #0a767b;
  --bs-btn-color: #ffffff;
  --bs-btn-hover-color: #ffffff;
  background-image: linear-gradient(135deg, #12b6bd 0%, #3d8bff 100%);
  border: 0;
  box-shadow: 0 2px 12px rgba(18, 182, 189, 0.28);
  font-weight: 600;
}

.btn-primary:hover {
  box-shadow: 0 4px 18px rgba(18, 182, 189, 0.42);
}

.btn-outline-primary {
  --bs-btn-color: #0a8f97;
  --bs-btn-border-color: rgba(15, 166, 173, 0.6);
  --bs-btn-hover-bg: rgba(15, 166, 173, 0.12);
  --bs-btn-hover-border-color: #0fa6ad;
  --bs-btn-hover-color: #0a767b;
}

/* Brand-coloured icons in the main menu. */
.navbar .nav-link .fa-solid,
.navbar .nav-link .fa-regular {
  color: var(--bs-primary);
}

/* Cards lift gently on hover. */
.card {
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.card:hover {
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
}
