/* ========================================
   KORTEX & PRODEX WEBSITE - MAIN STYLES
   ======================================== */

/* This file now serves as the main entry point */
/* Individual CSS files should be included separately in HTML for better performance */

/* Load order recommendation:
   1. base.css - Root variables, global styles, basic components
   2. navigation.css - Navbar, dropdown menus, language switcher
   3. homepage.css - Homepage hero, feature cards, CTA sections
   4. pages.css - Page-specific styles (kortex, prodex, contact, integration, security)
   5. footer.css - Footer styles
   6. responsive.css - All responsive design rules
   7. animations.css - Animations, effects, transitions
*/

/* Basic reset to ensure compatibility */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Legacy compatibility - keeping minimal core styles for backward compatibility */
body {
    margin: 0 !important;
    padding-top: 0px !important;
    padding-bottom: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Note: All other styles have been moved to their respective modular files:
   - Variables, glass effects, global styles → base.css
   - Navigation, dropdowns, language switcher → navigation.css
   - Hero sections, feature cards, CTA → homepage.css
   - Page-specific components → pages.css
   - Footer styles → footer.css
   - Responsive breakpoints → responsive.css
   - Animations and transitions → animations.css
*/
