/**
 * main.css
 * Main CSS entry point that imports all stylesheets
 */

/* Import order matters - from general to specific */
@import 'theme.css';
@import 'layout.css';
@import 'components.css';

/*
 * This is the main CSS file that will eventually replace:
 * - unified.css
 * - styles.css
 * - pages.css
 * - services.css
 * 
 * Benefits of this new structure:
 * - Clear separation of concerns
 * - Reduced code duplication
 * - Better maintainability
 * - Simpler debugging
 * - More consistent theme implementation
 */

/* Global Page Styles */
body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
}

/* Page Header Styles */
.page-header {
  background: linear-gradient(var(--page-header-overlay), var(--page-header-overlay)), var(--page-header-bg) !important;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--page-header-gradient);
  z-index: 1;
}

.page-header .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-header h1 {
  color: var(--light-text);
  margin-bottom: 1.5rem;
  font-size: 3.5rem;
  font-weight: 700;
}

.page-header p {
  color: var(--light-text);
  opacity: 0.95;
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}