/* Performance Optimizations - Prevent Layout Shifts */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-display: swap;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
}

/* Preload critical elements to prevent repaints */
header, nav, .hero-section, .container {
  will-change: transform;
}

/* Prevent flash of unstyled content */
.hero-section {
  min-height: 60vh;
  background-color: #f9fafb; /* Fallback while image loads */
}

/* Ensure fonts load smoothly */
.font-family-primary {
  font-family: 'Quicksand', system-ui, -apple-system, sans-serif;
}

.font-family-heading {
  font-family: 'Varela Round', system-ui, -apple-system, sans-serif;
}
