/*
 * WildFree Adventures — DaisyUI Custom Theme
 *
 * Applied via <html data-theme="wildfree"> on all layouts.
 * Overrides DaisyUI's default light theme with brand colors.
 * DaisyUI CSS loaded via WebJar; this file bridges the custom theme.
 */
[data-theme="wildfree"] {
  color-scheme: light;

  /* Brand colors */
  --color-primary: #ffc800;
  --color-primary-content: #212529;
  --color-secondary: #212529;
  --color-secondary-content: #ffffff;
  --color-accent: #cca000;
  --color-accent-content: #212529;

  /* Neutral palette (dark navbar, light backgrounds) */
  --color-neutral: #212529;
  --color-neutral-content: #ffffff;
  --color-base-100: #ffffff;
  --color-base-200: #f8f9fa;
  --color-base-300: #e9ecef;
  --color-base-content: #212529;

  /* Semantic colors (matching Bootstrap's defaults for visual continuity) */
  --color-info: #0dcaf0;
  --color-info-content: #212529;
  --color-success: #198754;
  --color-success-content: #ffffff;
  --color-warning: #ffc107;
  --color-warning-content: #212529;
  --color-error: #dc3545;
  --color-error-content: #ffffff;

  /* Border radius — matching Bootstrap's defaults */
  --radius-selector: 0.375rem;
  --radius-field: 0.375rem;
  --radius-box: 0.5rem;

  /* Component sizing */
  --size-selector: 0.25rem;
  --size-field: 0.25rem;

  /* Border width */
  --border: 1px;

  /* Effects */
  --depth: 1;
  --noise: 0;
}
