/* ===================================
   POSLOVED - MAIN CSS FILE
   ===================================
   
   This file imports all CSS modules for the project.
   Individual components are organized in separate files.
*/

/* Import Base Layout & Typography */
@import url('layout/base.css');

/* Import Layout Components */
@import url('layout/layout.css');

/* Import UI Components */
@import url('components/components.css');

/* Import Navigation */
@import url('components/navigation.css');

/* Import Academic Content */
@import url('pages/academic.css');

/* Import Archive Page Styles */
@import url('pages/archive.css');

/* ===================================
   CUSTOM OVERRIDES & ADDITIONS
   =================================== */

/* Additional custom styles can be added here */
/* These will override any imported styles if needed */

/* Hero Section Customizations */
.hero-section {
    background: var(--color-background);
    color: var(--color-text-primary);
    padding: var(--spacing-2xl) 0;
    border-bottom: 1px solid var(--color-border);
}

/* Page-specific customizations can go here */


