/**
 * Master Theme CSS File
 * This file imports all theme CSS files in the correct order.
 * DO NOT add styles directly here - add them to the appropriate module file.
 * 
 * To add a new CSS file:
 * 1. Create your CSS file in this directory (packages/Webkul/MotorbikeTheme/src/Resources/assets/css/)
 * 2. Add an @import statement below in the appropriate position (respecting loading order)
 * 3. Run: php artisan vendor:publish --tag=public --force
 * 
 * IMPORTANT: After making changes, always run the publish command to copy assets to public directory.
 */

/* Base Theme Styles (must load first for CSS variables) */
@import url('style.css');

/* Header Styles (contains :root CSS variables - must load early) */
@import url('header.css');

/* Navigation Styles */
@import url('navigation.css');

/* Footer Styles */
@import url('footer.css');

/* Homepage Styles */
@import url('homepage.css');

/* Hero Section Styles */
@import url('hero-section.css');

/* Customer Styles */
@import url('customer.css');