/*
 * Kannadapustaka.in — Minimal CSS Reset
 * Based on a sensible modern reset; avoids aggressive normalization.
 */

*, *::before, *::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

/* Block elements */
h1, h2, h3, h4, h5, h6,
p, blockquote, figure, figcaption,
ul, ol, dl, dd,
pre, hr, fieldset, legend {
  margin: 0;
  padding: 0;
}

/* Lists */
ul, ol {
  list-style: none;
}

/* Images & media */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* Form elements inherit fonts */
input, button, textarea, select {
  font: inherit;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  appearance: none;
  -webkit-appearance: none;
}

button {
  cursor: pointer;
}

/* Anchors */
a {
  color: inherit;
  text-decoration: none;
}

/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Remove default border on fieldset */
fieldset {
  border: 0;
}

/* Avoid text overflow */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Remove default summary marker */
summary {
  list-style: none;
  cursor: pointer;
}

/* Remove focus outline for mouse users (kept for keyboard nav) */
:focus:not(:focus-visible) {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--color-accent, #C8840A);
  outline-offset: 2px;
}
