/* Korice i sadržaj. Ista tipografija i paleta kao u poglavljima. */

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

:root {
  --sea-900: #071620;
  --sea-800: #0c2331;
  --parch: #f4ece0;
  --accent: #c08a3c;
  --accent-soft: #d9bd7d;
  --rule: rgba(217, 189, 125, 0.34);
  --serif: 'Iowan Old Style', 'Palatino Linotype', Palatino, Georgia, 'Times New Roman', serif;
  --sans: 'Avenir Next', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--sea-900);
  color: var(--parch);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

/* prekidač jezika — isti kao u poglavljima */

.lang {
  position: fixed;
  top: 16px;
  right: 18px;
  z-index: 60;
  display: flex;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: rgba(7, 22, 32, 0.82);
  backdrop-filter: blur(8px);
}

.lang button {
  font: 600 12px/1 var(--sans);
  letter-spacing: 0.14em;
  padding: 8px 13px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--parch);
  opacity: 0.55;
  cursor: pointer;
}

.lang button[aria-pressed='true'] {
  background: var(--accent);
  color: #1a0f06;
  opacity: 1;
}

/* korice */

.cover {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 90px;
  position: relative;
  overflow: hidden;
}

.cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 34%, rgba(217, 189, 125, 0.09) 0%, transparent 62%),
    linear-gradient(180deg, #06131b, #0a2131 62%, #071620);
  z-index: -1;
}

.cover-kicker {
  font: 700 11px/1 var(--sans);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.cover h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(34px, 6.4vw, 74px);
  line-height: 1.08;
  letter-spacing: 0.005em;
  max-width: 16ch;
  margin: 24px 0 20px;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}

.cover-authors {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 24px);
  color: var(--accent-soft);
}

.cover-imprint {
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(244, 236, 224, 0.5);
}

.cover-intro {
  margin-top: 40px;
  max-width: 56ch;
  color: rgba(244, 236, 224, 0.75);
}

.cover-start {
  margin-top: 44px;
  display: inline-block;
  padding: 14px 28px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent-soft);
  text-decoration: none;
  font: 700 11px/1 var(--sans);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s;
}

.cover-start:hover {
  background: var(--accent);
  color: #1a0f06;
}

/* sadržaj */

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 90px 24px 110px;
}

.toc {
  list-style: none;
  display: grid;
  gap: 16px;
}

.toc-item a {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 26px;
  align-items: stretch;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  background: rgba(244, 236, 224, 0.03);
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}

.toc-item a:hover {
  border-color: var(--accent);
  background: rgba(244, 236, 224, 0.06);
  transform: translateX(4px);
}

.toc-cover {
  overflow: hidden;
  background: #0a1a24;
}

.toc-cover img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
  opacity: 0.82;
  transition: opacity 0.25s, transform 0.4s;
}

.toc-item a:hover .toc-cover img {
  opacity: 1;
  transform: scale(1.04);
}

.toc-body {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 22px 26px 22px 0;
  justify-content: center;
}

.toc-num {
  font: 700 10px/1 var(--sans);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.toc-title {
  font-family: var(--serif);
  font-size: clamp(21px, 2.5vw, 29px);
  line-height: 1.16;
}

.toc-years {
  font: 600 11.5px/1 var(--sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 236, 224, 0.45);
  margin-top: 2px;
}

.toc-dek {
  margin-top: 6px;
  font-size: 15px;
  color: rgba(244, 236, 224, 0.7);
}

.cover-source {
  margin-top: 46px;
  font-size: 13px;
  color: rgba(244, 236, 224, 0.45);
  max-width: 70ch;
}

@media (max-width: 700px) {
  body {
    font-size: 16px;
  }

  .lang {
    top: auto;
    bottom: 14px;
    right: 14px;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.55);
  }

  main {
    padding: 60px 18px 90px;
  }

  .toc-item a {
    grid-template-columns: 1fr;
  }

  .toc-cover img {
    min-height: 130px;
    max-height: 170px;
  }

  .toc-body {
    padding: 20px 20px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .toc-item a,
  .toc-cover img {
    transition: none;
  }
}
