/* Français avec Romain — base styles (mirrors src/app/globals.css) */
* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-sans);
  line-height: var(--leading-body);
  color: var(--text-default);
  background: var(--surface-page);
}

/* Custom scrollbar: gold thumb, blue on hover */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--color-gold); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-blue); }

/* Signature text gradient (decorative text only) */
.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
