/*
 * Main Stylesheet
 *
 * This file imports all the modular CSS partials.
 * The import order is crucial for the cascade.
 *
 * 1. Variables: Define all reusable CSS variables (colors, fonts, etc.).
 * 2. Base: Global styles for html, body, typography, etc.
 * 3. Background: Styles for the animated background effect.
 * 4. Components: Reusable UI elements like buttons and cards.
 * 5. Header: Styles for the main site navigation and header.
 * 6. Sections: Styles for the distinct sections of the main page.
 * 7. Footer: Styles for the main site footer.
 * 8. Responsive: All media queries for responsive adjustments.
*/

@import url('_variables.css');
@import url('_base.css');
@import url('_background.css');
@import url('_components.css');
@import url('_header.css');
@import url('_sections.css');
@import url('_footer.css');
@import url('_responsive.css');