/* 
======================================
    MD Računovodstvo - Main Stylesheet
    v3.0 - 2025
    
    This file imports all modular CSS files
    in the correct order for proper cascading
======================================
*/

/* 1. CSS Variables and Theme Configuration */
@import url('variables.css');

/* 2. Base Styles and Typography */
@import url('base.css');

/* 3. Layout and Structure */
@import url('layout.css');

/* 4. UI Components */
@import url('components.css');

/* 5. Animations and Effects */
@import url('animations.css');

/* 6. Mobile and Responsive Styles */
@import url('responsive.css');

/* 
    File Structure:
    
    css/
    ├── normalize.css      (already exists - CSS reset)
    ├── cookies.css        (already exists - cookie banner styles)
    ├── variables.css      (CSS custom properties and themes)
    ├── base.css           (base styles and typography)
    ├── layout.css         (layout structure: header, sections, footer)
    ├── components.css     (reusable UI components)
    ├── animations.css     (GSAP-related styles and animations)
    ├── responsive.css     (media queries and mobile styles)
    └── main.css           (this file - imports all others)
    
    Benefits of this structure:
    - Better organization and maintainability
    - Easier to find and update specific styles
    - Improved caching (unchanged files don't reload)
    - Better collaboration in team environments
    - Clearer separation of concerns
*/