@import 'tailwindcss';

@source '../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php';
@source '../../storage/framework/views/*.php';

@theme {
  --font-sans: "Inter", sans-serif;
  --font-serif: "DM Serif Display", serif;

  /* YAZ brand tokens — matched to yadvocates.org */
  --color-navy: #281430;       /* dark purple — backgrounds, headings */
  --color-amber: #FF7600;      /* orange — primary CTA, accents */
  --color-teal: #4c00b0;       /* purple — secondary accent */
  --color-gold: #ffc107;       /* gold — highlights */
  --color-green: #059652;      /* green — success, positive stats */
  --color-surface: #f9fcf9;    /* light background */
  --color-body: #252525;       /* body text */
  --color-secondary: #555555;  /* secondary text */
  --color-muted: #888888;      /* muted text */
  --color-border: #e2e0e8;     /* borders */

  /* Tint colours */
  --color-navy-tint: #f0eaf5;
  --color-amber-tint: #fff3e6;
  --color-teal-tint: #ede6f9;
  --color-green-tint: #e6f5ec;

  --animate-marquee: marquee 35s linear infinite;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
