/**
 * CSS Reset and Base Styles
 * This file contains fundamental reset styles and base element styling
 */

/* Universal reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, sans-serif;
}

/* Base body styles */
body {
  background-color: #f5f5f3;
  min-height: 100vh;
  color: #333;
}

/* Accessibility helpers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.skip-to-content {
  position: absolute;
  left: -9999px;
  top: -9999px; /* Move completely off-screen when hidden */
  z-index: 999;
  padding: 1em;
  background-color: white;
  color: #333;
  text-decoration: none;
}

.skip-to-content:focus {
  left: 1em;
  top: 1em;
}

/* Container query support for modern layouts */
@container (min-width: 320px) {
  .container-responsive {
    container-type: inline-size;
  }
}