/**
 * minPureCSS Framework
 * A lightweight, modern CSS framework for TYPO3 min_templates
 *
 * Das Framework, das Bootstrap-Bloat den Kampf ansagt.
 * Pure CSS. Keine Abhaengigkeiten. Keine Kompromisse. -- finn
 *
 * Features:
 * - CSS Custom Properties fuer alle Design-Tokens
 * - Tailwind-aehnliche Utility-Klassen
 * - Responsive Prefixe (sm:, md:, lg:, xl:, xxl:)
 * - Moderne Komponenten (Buttons, Cards, Forms)
 * - WCAG 2.2 AA konform
 * - Touch-Target-Ready (min. 44x44px)
 * - prefers-reduced-motion Support
 *
 * Breakpoints:
 * - xs: < 576px (default/mobile-first)
 * - sm: >= 576px
 * - md: >= 768px
 * - lg: >= 992px
 * - xl: >= 1200px
 * - xxl: >= 1400px
 *
 * @version 1.0.0
 * @author minBrain Agententeam
 * @package min_templates
 * @license MIT
 */

/* ==========================================================================
   Core - Resets, Container, Typography & Design Tokens
   ========================================================================== */
@import url('core.css');

/* ==========================================================================
   Utilities - Spacing, Flexbox, Grid, Colors & More
   ========================================================================== */
@import url('utilities.css');

/* ==========================================================================
   Components - Buttons, Cards, Forms & UI Elements
   ========================================================================== */
@import url('components.css');

/* ==========================================================================
   Responsive - Breakpoint Utilities
   ========================================================================== */
@import url('responsive.css');

/* ==========================================================================
   Framework Info (Development only - remove in production)
   ========================================================================== */
/*
  minPureCSS v1.0.0

  Total Size (unminified, estimated):
  - core.css:       ~5KB
  - utilities.css:  ~10KB
  - components.css: ~5KB
  - responsive.css: ~3KB
  ----------------------
  Total:           ~23KB (minified ~15KB, gzipped ~4KB)

  Verwendung:
  <link rel="stylesheet" href="path/to/minpurecss/minpurecss.css">

  Oder einzelne Module importieren:
  @import url('minpurecss/core.css');
  @import url('minpurecss/utilities.css');

  Customization:
  Ueberschreibe CSS Custom Properties in deinem eigenen Stylesheet:

  :root {
    --color-primary: #your-brand-color;
    --font-family-sans: 'Your Font', sans-serif;
  }
*/
