/* Base Global Styles - Static Public Asset */
/* This file ensures page content is visibly rendered even when Tailwind is not loaded */

html {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  min-height: 100vh;
  background-color: #fafafa;
  color: #171717;
  line-height: 1.5;
}

main {
  display: block;
}

/* Minimum visibility baseline */
* {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 600;
  line-height: 1.2;
  color: #0a0a0a;
}

p {
  margin: 0 0 1rem 0;
  color: #404040;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: inherit;
}

/* Ensure layout structure renders properly */
#main-content {
  min-height: calc(100vh - 300px);
}