/* ==========================================================================
   Naslovna strana (interni spisak lokala) i stranica 404.
   Stranice menija ne koriste ovaj fajl — one učitavaju menu.css + svoju temu.
   ========================================================================== */

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

body {
  margin: 0;
  background: #fbfaf8;
  color: #1c1917;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

:where(a):focus-visible { outline: 2px solid #8a6a2f; outline-offset: 3px; }

/* --- Spisak lokala ------------------------------------------------------- */

.index-wrap {
  max-width: 34rem;
  margin-inline: auto;
  padding: clamp(2.5rem, 9vw, 5rem) 1.25rem;
}

.index-wrap h1 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #78716c;
  margin: 0 0 1.25rem;
}

.index-list { list-style: none; margin: 0; padding: 0; }

.index-list li {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  border-top: 1px solid #e7e2da;
  padding: .9rem .25rem;
}

.index-list li:last-child { border-bottom: 1px solid #e7e2da; }

.index-list a {
  font-size: 1.1rem;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.index-list a:hover { border-bottom-color: currentColor; }

.index-list span { margin-left: auto; font-size: .85rem; color: #78716c; }

/* --- 404 ----------------------------------------------------------------- */

.error-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  background: #17110d;
  color: #faf6ee;
  padding: 2rem;
}

.error-page h1 {
  font-family: Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  margin: 0 0 .75rem;
}

.error-page p { margin: 0; color: rgb(250 246 238 / 70%); }
