/**
 * WP Dynamic Design Framework (WDD)
 * Core CSS Variables Reset & Fluid Typography
 */

:root {
  --wdd-primary: #2563eb;
  --wdd-primary-hover: #1d4ed8;
  --wdd-secondary: #4f46e5;
  --wdd-accent: #f59e0b;
  --wdd-surface: #ffffff;
  --wdd-bg: #f8fafc;
  --wdd-text: #0f172a;
  --wdd-text-muted: #64748b;
  --wdd-border: #e2e8f0;
  --wdd-radius: 12px;
  --wdd-font-base: 'Inter', system-ui, -apple-system, sans-serif;
  --wdd-font-heading: 'Plus Jakarta Sans', system-ui, sans-serif;
  --wdd-container-max: 1280px;

  /* Fluid typography clamps */
  --wdd-h1-size: clamp(2rem, 5vw, 3.5rem);
  --wdd-h2-size: clamp(1.5rem, 3.5vw, 2.25rem);
  --wdd-h3-size: clamp(1.25rem, 2.5vw, 1.5rem);
  --wdd-body-size: clamp(0.9375rem, 1.5vw, 1.0625rem);

  /* Fluid spacing clamps */
  --wdd-space-sm: clamp(0.5rem, 1vw, 0.75rem);
  --wdd-space-md: clamp(1rem, 2vw, 1.5rem);
  --wdd-space-lg: clamp(2rem, 4vw, 3.5rem);
}

/* Global Reset for WDD components */
.wdd-component {
  box-sizing: border-box;
  font-family: var(--wdd-font-base);
  color: var(--wdd-text);
  line-height: 1.6;
}

.wdd-component *,
.wdd-component *::before,
.wdd-component *::after {
  box-sizing: border-box;
}

/* Utility Helpers */
.hidden {
  display: none !important;
}
