/*
  getcv / getcarvice.ca consumer theme.
  Deliberately separate identity from the Carvice dealer app / CentralHub
  theme - own palette, own component styles. Everything keys off these
  CSS variables so swapping in final brand colors later is a one-file change.
*/

:root {
  --gc-navy-900: #0b1d33;
  --gc-navy-800: #12294a;
  --gc-navy-700: #1b3a63;
  --gc-teal-500: #16b8a6;
  --gc-teal-600: #0f9a8b;
  --gc-amber-500: #f5a623;
  --gc-bg: #f6f8fb;
  --gc-surface: #ffffff;
  --gc-text: #16233a;
  --gc-text-muted: #5c6b82;
  --gc-border: #e2e8f0;
  --gc-success: #1fa971;
  --gc-danger: #d9483a;

  --gc-radius: 12px;
  --gc-shadow: 0 4px 20px rgba(11, 29, 51, 0.08);
}

body {
  background: var(--gc-bg);
  color: var(--gc-text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.gc-navbar {
  background: var(--gc-navy-900);
}

.gc-navbar .navbar-brand {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.gc-hero {
  background: linear-gradient(135deg, var(--gc-navy-900), var(--gc-navy-700));
  color: #fff;
  padding: 4.5rem 0 5rem;
}

.gc-hero h1 {
  font-weight: 800;
}

.gc-hero p.lead {
  color: rgba(255, 255, 255, 0.82);
}

.gc-vin-form {
  background: var(--gc-surface);
  border-radius: var(--gc-radius);
  box-shadow: var(--gc-shadow);
  padding: 1.5rem;
}

.gc-vin-form input.form-control {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.btn-gc-primary {
  background: var(--gc-teal-500);
  border-color: var(--gc-teal-500);
  color: #fff;
  font-weight: 600;
}

.btn-gc-primary:hover,
.btn-gc-primary:focus {
  background: var(--gc-teal-600);
  border-color: var(--gc-teal-600);
  color: #fff;
}

.gc-card {
  background: var(--gc-surface);
  border: 1px solid var(--gc-border);
  border-radius: var(--gc-radius);
  box-shadow: var(--gc-shadow);
}

.gc-card-header {
  background: var(--gc-navy-900);
  color: #fff;
  border-radius: var(--gc-radius) var(--gc-radius) 0 0;
  padding: 1rem 1.25rem;
  font-weight: 700;
}

.gc-badge-soon {
  background: rgba(245, 166, 35, 0.15);
  color: #a5670d;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  display: inline-block;
}

.gc-price {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--gc-navy-900);
}

.gc-muted {
  color: var(--gc-text-muted);
}

/* Some vendor field values (option codes, long descriptions) have no
   natural break point - without this they overflow their grid cell and
   visually overlap the neighboring column instead of wrapping. */
.gc-spec-value,
.gc-spec-list li {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.gc-spec-list li {
  padding: 0.375rem 0;
  border-bottom: 1px solid var(--gc-border);
}

.gc-spec-list li:last-child {
  border-bottom: none;
}

.gc-footer {
  background: var(--gc-navy-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 2rem 0;
  margin-top: 4rem;
}

.gc-footer a {
  color: rgba(255, 255, 255, 0.85);
}
