/* =============================================
   WSWA BRAND THEME
   Define global colors, typography, and shared UI elements
   ============================================= */

:root {
  /* ---- Brand Colors ---- */
  --wswa-purple: #600041;       /* Primary */
  --wswa-midnight: #242038;     /* Secondary */
  --wswa-blue: #242038;        /* Accent */
  --wswa-bright-purple: #9453b; /* Accent highlight */
  --wswa-gray: #d3d3d3;         /* Neutral */

  /* ---- Typography ---- */
  --font-primary: 'Mr Eaves Sans', ui-sans-serif, system-ui, -apple-system,
                  'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* =============================================
   FONT IMPORT PLACEHOLDER
   - Once you have local Mr Eaves Sans font files, place them in ./fonts/MrEavesSans/
   - Uncomment and adjust URLs below
   ============================================= */
/*
@font-face {
  font-family: 'Mr Eaves Sans';
  src: url('./fonts/MrEavesSans-Regular.woff2') format('woff2'),
       url('./fonts/MrEavesSans-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}
*/

/* =============================================
   GLOBAL TYPOGRAPHY & BASE STYLES
   ============================================= */
html, body {
  font-family: var(--font-primary);
  color: var(--wswa-midnight);
  background-color: #f9f9f9;
  line-height: 1.5;
}

a {
  color: var(--wswa-purple);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--wswa-bright-purple);
}

/* =============================================
   HEADER STYLES
   ============================================= */
.header-wswa {
  background-color: var(--wswa-purple);
  color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* =============================================
   BUTTON STYLES
   ============================================= */
.btn-primary {
  background-color: var(--wswa-blue);
  color: white;
  font-weight: 600;
  border-radius: 9999px;
  padding: 0.5rem 1.25rem;
  transition: background-color 0.25s ease, transform 0.15s ease;
}

.btn-primary:hover {
  background-color: #5aa659; /* darker green hover */
  transform: translateY(-1px);
}

.btn-primary:focus {
  outline: 2px solid var(--wswa-purple);
  outline-offset: 2px;
}

/* =============================================
   BADGE STYLES (for Featured labels, etc.)
   ============================================= */
.badge-featured {
  background-color: var(--wswa-purple);
  color: white;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 6px;
  padding: 0.15rem 0.5rem;
}

/* =============================================
   CHIP STYLES (filters, state selectors)
   ============================================= */
.chip {
  display: inline-flex;
  align-items: center;
  background-color: #f4eaf3; /* light purple tint */
  color: var(--wswa-purple);
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 500;
}

.chip-clear {
  color: var(--wswa-purple);
  font-size: 0.75rem;
  cursor: pointer;
}

/* =============================================
   UTILITY ELEMENTS
   ============================================= */
.footer-wswa {
  background-color: white;
  color: var(--wswa-midnight);
  border-top: 1px solid var(--wswa-gray);
  text-align: center;
  font-size: 0.75rem;
  padding: 1rem 0;
}

.mark {
  background-color: #fef08a; /* Highlight yellow */
  border-radius: 2px;
  padding: 0 2px;
}
