/* Okumak Hayattır — ortak stiller */

:root {
  --ink:        #10261b;
  --ink-2:      #47614f;
  --ink-3:      #6f8577;
  --parchment:  #f4f1e7;
  --parchment-2:#efeade;
  --paper:      #ffffff;
  --jade:       #24684a;
  --jade-dark:  #17472f;
  --jade-tint:  #e3efe7;
  --gold:       #b08a3e;
  --gold-tint:  #f3ead6;
  --line:       rgba(16, 38, 27, 0.10);
  --line-2:     rgba(16, 38, 27, 0.18);

  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --shell: 760px;
  --radius: 18px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  background: var(--parchment);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--jade); }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.005em;
  margin: 0;
}

p { margin: 0; }

.shell {
  width: min(var(--shell), calc(100vw - 40px));
  margin: 0 auto;
}

/* ------------------------------------------------------------- üst şerit */

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(244, 241, 231, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.topbar .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 62px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
}

.brand img {
  width: 32px;
  height: 32px;
  border-radius: 9px;
}

.topbar nav {
  display: flex;
  gap: 20px;
  font-size: 15px;
}

.topbar nav a {
  color: var(--ink-2);
  text-decoration: none;
}

.topbar nav a:hover { color: var(--jade); }

/* -------------------------------------------------------------- kahraman */

.hero {
  padding: 54px 0 46px;
  text-align: center;
}

.hero img.logo {
  width: 68px;
  height: 68px;
  margin: 0 auto;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(16, 38, 27, 0.16);
}

.hero h1 {
  margin-top: 22px;
  font-size: clamp(38px, 9vw, 60px);
}

.rule {
  width: 48px;
  height: 2px;
  margin: 22px auto;
  background: var(--gold);
  border: 0;
}

.hero .verse {
  max-width: 24ch;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(19px, 4.6vw, 23px);
  line-height: 1.45;
  color: var(--jade-dark);
}

.hero .lede {
  max-width: 50ch;
  margin: 20px auto 0;
  color: var(--ink-2);
}

/* --------------------------------------------------------------- eylemler */

.actions {
  display: grid;
  gap: 14px;
  margin: 34px auto 0;
  max-width: 460px;
}

.action {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1px solid var(--line-2);
  background: var(--paper);
  color: var(--ink);
  text-align: left;
  transition: transform .15s ease, box-shadow .15s ease;
}

.action:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -14px rgba(16, 38, 27, .5);
}

.action:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.action .icon {
  flex: 0 0 46px;
  height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
}

.action.play .icon { background: var(--jade-dark); }
.action.wa .icon { background: #1faa53; }

.action b {
  display: block;
  font-size: 16.5px;
  font-weight: 700;
}

.action span {
  display: block;
  font-size: 14px;
  color: var(--ink-3);
}

.hero .fineprint {
  margin-top: 20px;
  font-size: 14px;
  color: var(--ink-3);
}

/* --------------------------------------------------------------- bölümler */

section.block { padding: 12px 0 48px; }

section.block > .shell > h2 {
  font-size: 27px;
  margin-bottom: 10px;
}

section.block p.body {
  color: var(--ink-2);
  max-width: 62ch;
}

section.block p.body + p.body { margin-top: 14px; }

/* --------------------------------------------------------------- akordeon */

.accordion { margin-top: 18px; }

details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}

details[open] { border-color: var(--line-2); }

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  cursor: pointer;
  font-weight: 700;
  font-size: 16.5px;
  list-style: none;
}

summary::-webkit-details-marker { display: none; }

summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: -3px;
}

summary::after {
  content: "";
  flex: 0 0 10px;
  height: 10px;
  border-right: 2px solid var(--ink-3);
  border-bottom: 2px solid var(--ink-3);
  transform: rotate(45deg);
  transition: transform .2s ease;
  margin-right: 4px;
}

details[open] summary::after { transform: rotate(-135deg); }

.panel {
  padding: 0 18px 18px;
  color: var(--ink-2);
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.panel p + p { margin-top: 12px; }

.panel ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.panel li { margin-bottom: 8px; }

.panel li strong { color: var(--ink); }

/* --------------------------------------------------------------- iletişim */

.contact {
  padding: 26px;
  background: var(--jade-dark);
  color: #dcebe1;
  border-radius: 22px;
}

.contact h2 { color: #fff; font-size: 25px; }

.contact p { color: #c2d8ca; margin-top: 10px; }

.contact a { color: #fff; font-weight: 600; }

.contact-rows {
  margin-top: 18px;
  display: grid;
  gap: 10px;
  font-size: 15.5px;
}

/* ---------------------------------------------------------------- politika */

.doc { padding: 34px 0 12px; }

.doc h1 { font-size: clamp(30px, 7vw, 40px); }

.doc .meta {
  margin-top: 14px;
  padding: 14px 16px;
  background: var(--gold-tint);
  border-radius: 12px;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.6;
}

.toc {
  margin: 26px 0 30px;
  padding: 18px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.toc h2 { font-size: 17px; margin-bottom: 10px; }

.toc ol {
  margin: 0;
  padding-left: 20px;
  font-size: 15.5px;
  columns: 2;
  column-gap: 26px;
}

.toc li { margin-bottom: 5px; break-inside: avoid; }

.doc article {
  padding: 30px 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.doc article h2 {
  font-size: 21px;
  margin: 34px 0 10px;
  padding-top: 4px;
}

.doc article h2:first-child { margin-top: 0; }

.doc article p { color: var(--ink-2); }

.doc article p + p { margin-top: 12px; }

.doc article ul { padding-left: 20px; color: var(--ink-2); }

.doc article li { margin-bottom: 8px; }

.doc article li strong { color: var(--ink); }

.callout {
  margin-top: 16px;
  padding: 18px 20px;
  background: var(--jade-tint);
  border-left: 3px solid var(--jade);
  border-radius: 12px;
}

.callout p { color: var(--ink) !important; }
.callout p + p { margin-top: 6px; }

.back {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.back:hover { text-decoration: underline; }

/* ----------------------------------------------------------------- footer */

footer {
  margin-top: 34px;
  padding: 30px 0 44px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 15px;
  color: var(--ink-3);
}

footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  margin-bottom: 14px;
}

footer nav a { font-weight: 600; text-decoration: none; }
footer nav a:hover { text-decoration: underline; }

/* ------------------------------------------------------------- responsive */

@media (max-width: 640px) {
  body { font-size: 16.5px; }
  .topbar nav { display: none; }
  .hero { padding: 40px 0 36px; }
  .doc article { padding: 24px 20px; }
  .toc ol { columns: 1; }
  .contact { padding: 22px 20px; }
}

@media (min-width: 900px) {
  :root { --shell: 820px; }
  .actions {
    grid-template-columns: 1fr 1fr;
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
