/* ===== ISTANBUL AUTREMENT — REVUE BASE (FINAL) ===== */

/* Font (Google Fonts'u HTML'de çağırmak yerine buradan da yükleyelim) */
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&display=swap');

:root{
  --bg: #ffffff;
  --text: #111111;
  --muted: #6b6b6b;
  --rule: #e8e8e8;
}

/* Reset */
*{ box-sizing: border-box; }
html, body{ margin:0; padding:0; }

body{
  background: var(--bg);
  color: var(--text);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 16px;
  line-height: 1.65;
}

/* Layout */
.wrap{
  max-width: 680px;
  margin: 0 auto;
  padding: 56px 22px 80px;
}

/* Headings */
h1{
  font-size: 30px;
  line-height: 1.25;
  margin: 0 0 22px;
  font-weight: 700;
}

/* Text blocks */
.subtitle{
  max-width: 62ch;
}
.subtitle p{
  margin: 0 0 18px;
}

/* Links: never blue */
a, a:visited{
  color: var(--text);
  text-decoration: none;
}
a:hover{
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Vertical menu (line by line) */
.menu-vertical{
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
}
.menu-vertical a{
  font-size: 15px;
}

/* thin rule under menu */
.menu-rule{
  border: none;
  border-top: 1px solid var(--rule);
  margin: 0 0 26px;
}

/* Carnet sommaire */
.kicker{
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 8px;
}

.toc{
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  max-width: 62ch;
}
.toc li{
  padding: 8px 0;
  border-bottom: 1px solid #ededed;
}
.toc li:last-child{ border-bottom: none; }
.toc a, .toc a:visited{
  color: var(--text);
}

/* Mail line */
.email-line{ margin-top: 10px; }



/* ===== GLOBAL PAGE SEPARATOR ===== */

/* Menüden sonra her sayfada çizgi hissi */
.menu-vertical + .menu-rule,
.menu-vertical + hr {
  display: block;
}

/* Eğer bazı sayfalarda hr yoksa,
   başlık öncesi otomatik boşluk hissi */
.menu-vertical + h1 {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid #e8e8e8;
}
