/**
 * Dataseed CSS - Modular Architecture
 *
 * This file imports all CSS modules in the correct order.
 *
 * Module Structure:
 * 1. Variables - CSS custom properties
 * 2. Base - Reset, typography, base elements
 * 3. Layout - Container, sections, grid
 * 4. Buttons - All button variants
 * 5. Header - Navigation and header
 * 6. Sections - All page sections (hero, footer, cards, etc.)
 * 7. Forms - Form elements and validation
 * 8. Animations - Scroll reveal, glassmorphism, loading
 * 9. Utilities - Helper classes, image optimization
 * 10. Responsive - All media queries
 *
 * Total: ~2400 lines → 10 maintainable modules
 *
 * @author Dataseed
 * @version 2.0.0
 * @updated 2025-11-29
 */

/* 1. CSS Variables - Design tokens */
@import '_variables.css';

/* 2. Base - Reset and typography */
@import '_base.css';

/* 3. Layout - Container and section structure */
@import '_layout.css';

/* 4. Buttons - All button styles */
@import '_buttons.css';

/* 5. Header - Navigation */
@import '_header.css';

/* 6. Sections - Page sections and components */
@import '_sections.css';

/* 7. Forms - Contact form and validation */
@import '_forms.css';

/* 8. Animations - Visual effects */
@import '_animations.css';

/* 9. Utilities - Helper classes */
@import '_utilities.css';

/* 10. Responsive - Media queries */
@import '_responsive.css';
