/* =========================================================
   Memduha Uluevli — "Sıcak Edebî" (3. seçenek, yalnızca ana sayfa)
   Duna'nın sakin giriş kurgusu + Fraunces/Spectral sıcaklığı
   + eylülgörmüş'ün temiz, kitap-odaklı katalog düzeni
   ========================================================= */

:root {
  --paper:  #f6f3ec;   /* sıcak kâğıt zemini */
  --card:   #fffdf8;
  --ink:    #2b2620;   /* sıcak mürekkep */
  --soft:   #6b6258;   /* ikincil metin */
  --line:   #e3dccd;   /* saç-çizgisi */
  --accent: #b06a36;   /* tek, ölçülü sıcak vurgu (gün batımı) */

  --display: 'Fraunces', Georgia, serif;
  --serif:   'Spectral', Georgia, serif;
  --maxw: 1180px;
}

* { box-sizing: border-box; }

html { overflow-x: hidden; }

body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--serif); font-size: 18px; line-height: 1.6; font-weight: 400;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--ink); text-decoration: none; }

.container { max-width: var(--maxw); margin-inline: auto; padding-inline: 32px; }

h1, h2, h3 { font-family: var(--display); font-weight: 400; color: var(--ink); margin: 0; line-height: 1.1; }

.tag {
  display: inline-block; font-family: var(--serif); text-transform: uppercase;
  letter-spacing: .24em; font-size: .78rem; color: var(--accent);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; font-family: var(--serif); font-size: 1rem; cursor: pointer;
  border-radius: 999px; padding: 13px 28px; border: 1px solid transparent;
}
.btn-fill { background: var(--ink); color: var(--paper); }
.btn-fill:hover { background: #000; }
.btn-ghost { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Navigation ---------- */
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { font-family: var(--display); font-size: 1.35rem; color: var(--ink); }
.brand small { display: block; font-family: var(--serif); font-size: .6rem; letter-spacing: .28em; text-transform: uppercase; color: var(--accent); margin-top: 1px; }
.nav-links { display: flex; gap: 26px; list-style: none; margin: 0; padding: 0; align-items: center; }
.nav-links a { font-size: .98rem; color: var(--soft); }
.nav-links a:hover { color: var(--ink); }
.nav-toggle { display: none; background: none; border: 0; font-size: 22px; cursor: pointer; color: var(--ink); }

/* ---------- Hero (Duna kurgusu, sıcak font) ---------- */
.hero { text-align: center; padding-bottom: 72px; }
.hero__art {
  width: 100%; height: 60vh; max-height: 600px; object-fit: cover;
  -webkit-mask-image: linear-gradient(to bottom, #000 54%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 54%, transparent 100%);
}
.hero__stack { max-width: 820px; margin: -96px auto 0; position: relative; z-index: 2; padding: 0 24px; }
.hero .tag { margin-bottom: 18px; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); line-height: 1.04; margin: 0 0 22px; }
.hero .sub { font-size: 1.2rem; line-height: 1.55; color: var(--soft); max-width: 560px; margin: 0 auto 30px; }

/* ---------- Section rhythm ---------- */
.sec { padding: 84px 0; }
.sec-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.sec-head .tag { margin-bottom: 14px; }
.sec-head h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
.sec-head p { font-size: 1.1rem; color: var(--soft); margin: 14px auto 0; max-width: 560px; }
.center-quote { text-align: center; font-family: var(--display); font-style: italic; font-size: clamp(1.4rem,3vw,2rem); color: var(--ink); max-width: 760px; margin: 0 auto; line-height: 1.3; }

/* ---------- Kitap rafı (eylülgörmüş temiz katalog) ---------- */
.shelf { display: grid; grid-template-columns: repeat(5, 1fr); gap: 28px 24px; border-top: 1px solid var(--line); padding-top: 40px; }
.shelf .bk { text-align: center; }
.shelf .bk img { width: 100%; aspect-ratio: 2/3; object-fit: cover; border-radius: 6px; background: var(--line); box-shadow: rgba(43,38,32,.12) 0 8px 22px; }
.shelf .bk .t { font-family: var(--display); font-size: 1rem; margin-top: 12px; line-height: 1.2; }
.shelf .bk .a { font-family: var(--serif); font-size: .85rem; color: var(--accent); }
.shelf-foot { text-align: center; margin-top: 40px; }

/* ---------- Editorial (image + text) ---------- */
.editorial { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.editorial img { width: 100%; border-radius: 20px; }
.editorial h2 { font-size: clamp(1.9rem,3.4vw,2.6rem); margin: 0 0 16px; }
.editorial p { font-size: 1.08rem; color: var(--soft); margin: 0 0 24px; max-width: 440px; }
.editorial .cap { font-size: .85rem; font-style: italic; color: var(--soft); margin-top: 12px; }
.editorial .tag { margin-bottom: 14px; }

/* ---------- Kaya ile Karga kartı ---------- */
.bookcard { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; background: var(--card); border: 1px solid var(--line); border-radius: 24px; padding: 40px; }
.bookcard img { width: 100%; border-radius: 16px; }
.bookcard h2 { font-size: clamp(1.9rem,3.4vw,2.5rem); margin: 0 0 14px; }
.bookcard p { font-size: 1.05rem; color: var(--soft); margin: 0 0 26px; }

/* ---------- Merhaba Ben Memduha (silik foto + beyaz yazı) ---------- */
.memduha-band { position: relative; border-radius: 24px; overflow: hidden; color: #fff; }
.memduha-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .75; }
.memduha-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(30,24,20,.55), rgba(30,24,20,.62)); }
.memduha-band .inner { position: relative; z-index: 2; max-width: 720px; padding: clamp(56px, 9vw, 110px) clamp(28px, 6vw, 72px); }
.memduha-band .tag { color: #ecc9a0; margin-bottom: 16px; }
.memduha-band h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin: 0 0 20px; }
.memduha-band .verse { font-size: clamp(1.5rem, 3.6vw, 2.5rem); line-height: 1.28; letter-spacing: .03em; margin: 0 0 10px; }
.memduha-band .attrib { font-family: var(--serif); font-style: italic; color: #e7cba4; font-size: .98rem; margin: 0 0 26px; }
.memduha-band p { color: #f2ece2; font-size: 1.12rem; line-height: 1.7; margin: 0 0 14px; max-width: 600px; }

/* ---------- Film şeridi (geziler) ---------- */
.filmstrip { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 12px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.filmstrip img { height: 240px; width: auto; flex: 0 0 auto; border-radius: 14px; scroll-snap-align: start; background: var(--line); }
.filmstrip::-webkit-scrollbar { height: 8px; }
.filmstrip::-webkit-scrollbar-thumb { background: var(--line); border-radius: 999px; }

/* ---------- Bu sıralar ne okuyorum (yer tutucu kapaklar) ---------- */
.reading { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 760px; margin: 0 auto; }
.reading .bk { text-align: center; }
.reading .cover-ph {
  aspect-ratio: 2/3; border-radius: 6px; background: var(--card); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; padding: 18px;
  font-family: var(--display); font-style: italic; font-size: 1.15rem; line-height: 1.3; color: var(--ink);
  box-shadow: rgba(43,38,32,.10) 0 8px 22px;
}
.reading .cover-ph img { width: 100%; height: 100%; object-fit: cover; border-radius: 6px; }
.reading .a { font-family: var(--serif); font-size: .9rem; color: var(--accent); margin-top: 12px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); margin-top: 32px; }
.footer .inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 32px; padding: 56px 0 36px; }
.footer .brand { color: var(--ink); }
.footer .f-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer .f-links a { font-size: .98rem; color: var(--soft); }
.footer .f-links a:hover { color: var(--ink); }
.footer .fine { font-size: .85rem; color: var(--soft); padding-bottom: 36px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .shelf { grid-template-columns: repeat(3, 1fr); }
  .editorial, .bookcard { grid-template-columns: 1fr; gap: 28px; }
  .editorial .rev { order: -1; }
}
@media (max-width: 600px) {
  .container { padding-inline: 20px; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 76px; left: 0; right: 0; background: var(--paper); border-bottom: 1px solid var(--line); padding: 16px 20px; gap: 14px; z-index: 30; }
  .nav-toggle { display: block; }
  .shelf { grid-template-columns: repeat(2, 1fr); }
  .hero__art { height: 42vh; }
  .hero__stack { margin-top: -64px; }
}
