/*
 * Entry point — import order matters here.
 * Tokens must come first so custom properties are available to everything below.
 */

/* 1. Design tokens — all CSS custom properties live here */
@import url('./tokens.css');

/* 2. Reset, body, grid background, typography, shared utilities */
@import url('./base.css');

/* 3. Reusable components: buttons, tags, shine effect */
@import url('./components.css');

/* 4. Page structure: header, nav, lang switcher, section headings */
@import url('./layout.css');

/* 5. Section-specific styles */
@import url('./sections/hero.css');
@import url('./sections/projects.css');
@import url('./sections/skills.css');
@import url('./sections/about.css');
@import url('./sections/recruiter.css');

/* 6. Animations and transitions */
@import url('./animations.css');

/* 7. Print / A4 CV — loaded last to keep it isolated */
@import url('./print.css');
