/* Critical CSS for above-the-fold content - loaded inline for page speed */

/* Brand colors and fonts */
:root {
  --uk-blue: #1e3a8a;
  --uv-orange: #f97316;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Hero section optimization */
.hero-gradient {
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

/* Typography optimization */
.uk-blue { color: var(--uk-blue); }
.uv-orange { color: var(--uv-orange); }

/* Font loading optimization */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfAZ9hiJ-Ek-_EeA.woff2') format('woff2');
}

/* Critical layout styles */
body {
  font-family: var(--font-family);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* Header optimization */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Button optimization */
.btn-primary {
  background-color: var(--uk-blue);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.2s;
}

.btn-primary:hover {
  background-color: #1e40af;
}

/* Image optimization */
img {
  max-width: 100%;
  height: auto;
}

/* Responsive utilities */
@media (max-width: 768px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}