/* ============================================================================
   BRANDKIT.CSS - Main Entry Point
   ============================================================================

   Yellowkey Real Estate Management Platform
   Version: 2.0 - Modular Architecture
   Last Updated: 2025-12-14

   This file imports all brandkit modules in the correct order.
   Load this FIRST before any other CSS files.

   Module Structure:
   ├── brandkit-tokens.css       # CSS custom properties (design tokens)
   ├── brandkit-typography.css   # Base typography & heading styles
   ├── brandkit-utilities.css    # Utility classes
   ├── brandkit-components.css   # Reusable UI components
   └── brandkit-overrides.css    # Bootstrap overrides

   ============================================================================ */

/* Design Tokens - CSS Variables (colors, spacing, typography tokens) */
@import url('brandkit-tokens.css');

/* Typography - Base styles, headings, heading variants */
@import url('brandkit-typography.css');

/* Utilities - Helper classes (spacing, display, flex, text) */
@import url('brandkit-utilities.css');

/* Components - Buttons, cards, alerts, badges */
@import url('brandkit-components.css');

/* Overrides - Bootstrap customizations (load last) */
@import url('brandkit-overrides.css');

/* ============================================================================
   END OF BRANDKIT.CSS - Main Entry Point
   ============================================================================ */
