/* Base CSS for Amanindo Theme */

/* CSS Reset for better consistency across browsers */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  line-height: 1.5;
  font-family: var(--font-family-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

/* Base styles with fallbacks for older browsers */
body {
  background-color: #f8f5ee; /* Fallback for hsl(var(--background)) */
  background-color: hsl(var(--background));
  color: #1a1a1a; /* Fallback for hsl(var(--foreground)) */
  color: hsl(var(--foreground));
}
