/* Theme CSS for LoWorks Contracting landing page */
/* Color tokens are defined inline in the template for brand coherence */
:root {
  --bg: #F9F6F1;
  --accent: #B8431D;
}

/* Smooth transitions on interactive elements */
a, button { transition: all 0.2s ease; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* Text selection */
::selection { background: rgba(184, 67, 29, 0.15); color: var(--fg); }