/* =========================================================================
   MGCC Website — Stylesheet Entry Point (development convenience)
   -------------------------------------------------------------------------
   Lets a page link ONE stylesheet during local development instead of
   ~17 <link> tags. Must load AFTER Bootstrap 5, AOS's CSS, and Font
   Awesome's CSS — see docs/DEVELOPMENT-GUIDE.md for the exact <head>
   order.

   PRODUCTION NOTE (Brief §13 / Volume 5 Performance — "minify CSS"):
   @import adds a network round-trip per file and blocks rendering until
   each resolves — fine on localhost, not for production. Before launch,
   concatenate the files below in the listed order and minify the result
   into a single main.min.css, then link that instead of this file. Any
   CLI minifier (clean-css-cli, Lightning CSS, esbuild) works — no
   particular build tool is required by the spec.
   ========================================================================= */

@import url('base/variables.css');
@import url('base/reset.css');
@import url('base/typography.css');

@import url('layout/header.css');
@import url('layout/footer.css');
@import url('layout/page-banner.css');

@import url('components/buttons.css');
@import url('components/cards.css');
@import url('components/forms.css');
@import url('components/hero.css');
@import url('components/cta.css');
@import url('components/statistics.css');
@import url('components/testimonials.css');
@import url('components/partners.css');
@import url('components/ui-elements.css');

@import url('utilities/animations.css');
@import url('utilities/helpers.css');
