/* =========================================
   INSTAGRAM FEED
   ========================================= */

.feed-sec {
  padding: 7rem 2rem;
}

.feed-wrap {
  max-width: 1000px;
  margin: 0 auto;
}

.feed-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.feed-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feed-av {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #8a6218);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #000;
  font-weight: 700;
  flex-shrink: 0;
  border: 2px solid rgba(201,168,76,0.3);
}

.feed-uname {
  font-size: 0.95rem;
  color: var(--cream);
  font-weight: 500;
}
.feed-handle {
  font-size: 0.75rem;
  color: var(--muted);
}

.feed-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  background: var(--gold);
  color: #000;
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.25s;
  flex-shrink: 0;
}
.feed-btn:hover { background: var(--gold2); }

.feed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.fi {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.fi-bg {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s;
}
.fi:hover .fi-bg { transform: scale(1.06); }

.fi-ov {
  position: absolute;
  inset: 0;
  background: rgba(6,6,5,0.82);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s;
  gap: 0.5rem;
  padding: 1rem;
}
.fi:hover .fi-ov { opacity: 1; }

.fi-emoji { font-size: 1.6rem; }

.fi-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.8rem;
  color: var(--cream);
  text-align: center;
  line-height: 1.5;
}

.fi-arabic {
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.15;
  font-family: 'Playfair Display', serif;
  user-select: none;
}

.fi-calli {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--gold);
  opacity: 0.22;
  text-align: center;
  padding: 0.5rem;
  line-height: 1.4;
}

/* Feed hücre renkleri */
.c1 { background: linear-gradient(135deg, #1a1408, #2c1e08); }
.c2 { background: linear-gradient(135deg, #0e0e14, #1a1430); }
.c3 { background: linear-gradient(135deg, #120d08, #241808); }
.c4 { background: linear-gradient(135deg, #0a0f0c, #141e14); }
.c5 { background: linear-gradient(135deg, #16100e, #2a1818); }
.c6 { background: linear-gradient(135deg, #0c1018, #141c2c); }
.c7 { background: linear-gradient(135deg, #181208, #2c2210); }
.c8 { background: linear-gradient(135deg, #0c100e, #141e18); }
.c9 { background: linear-gradient(135deg, #14100c, #281c10); }

.feed-more-row {
  text-align: center;
  margin-top: 1.8rem;
}
.feed-more-row a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.3rem;
  transition: all 0.3s;
}
.feed-more-row a:hover {
  color: var(--gold2);
  border-color: var(--gold2);
}

/* =========================================
   BOOK
   ========================================= */

.book-sec {
  padding: 7rem 2rem;
  background: var(--bg2);
}

.book-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.book-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 3.5rem;
  align-items: start;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 3rem;
  margin-top: 2.5rem;
  position: relative;
  overflow: hidden;
}
.book-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.book-img {
  width: 160px;
  height: auto;
  display: block;
  box-shadow: 12px 14px 45px rgba(0,0,0,0.65);
  transition: transform 0.4s, box-shadow 0.4s;
}
.book-img:hover {
  transform: rotate(-2deg) scale(1.04);
  box-shadow: 18px 18px 55px rgba(0,0,0,0.75);
}

.book-fallback {
  width: 160px;
  aspect-ratio: 2/3;
  background: linear-gradient(135deg, #1a160f, #2a200e);
  border: 1px solid var(--border);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
  position: relative;
}
.book-fallback::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background: linear-gradient(to bottom, var(--gold2), var(--gold), #8a6620);
}

.bft {
  font-family: 'Playfair Display', serif;
  font-size: 0.7rem;
  color: var(--cream);
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
.bfl {
  width: 25px; height: 1px;
  background: var(--gold);
  margin-bottom: 0.5rem;
}
.bfa {
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
}

.book-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--cream);
  margin-bottom: 0.3rem;
  line-height: 1.2;
}
.book-pub {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.15rem;
}
.book-isbn {
  font-size: 0.62rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
}
.book-desc {
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.9;
}
.book-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border2);
}
.bmi { display: flex; flex-direction: column; }
.bml {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.bmv { font-size: 0.9rem; color: var(--text); }

.buy-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.7rem;
}
.buy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.buy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--border2);
  color: var(--text);
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  transition: all 0.25s;
}
.buy-btn:hover {
  border-color: var(--gold);
  color: var(--gold2);
  background: var(--gold-dim);
}

/* =========================================
   CONTACT
   ========================================= */

.contact-sec {
  padding: 7rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-sec::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 600px; height: 400px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(201,168,76,0.06), transparent);
  pointer-events: none;
}

.contact-inner {
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}
.contact-text {
  font-size: 0.93rem;
  color: var(--text);
  margin-bottom: 2.5rem;
  line-height: 1.85;
}

.ig-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 1.8rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-decoration: none;
  transition: all 0.35s;
  margin-bottom: 1.5rem;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.ig-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.06), transparent);
  transform: translateX(-100%);
  transition: transform 0.35s;
}
.ig-card:hover::before { transform: translateX(0); }
.ig-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.ig-av {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--gold), #8a6218);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 14px;
}
.ig-av svg {
  width: 26px; height: 26px;
  stroke: #000; fill: none;
  stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}

.ig-title {
  font-size: 1rem;
  color: var(--cream);
  font-weight: 500;
  margin-bottom: 0.15rem;
}
.ig-sub { font-size: 0.75rem; color: var(--muted); }

.ig-arrow {
  margin-left: auto;
  font-size: 1.3rem;
  color: var(--gold);
  opacity: 0.4;
  transition: opacity 0.3s, transform 0.3s;
  flex-shrink: 0;
}
.ig-card:hover .ig-arrow {
  opacity: 1;
  transform: translateX(5px);
}

/* ── YouTube Kartı ─────────────────────────────────────────── */
.yt-card {
  background:      var(--bg2);
  border:          1px solid rgba(255, 0, 0, 0.15);
  padding:         1.8rem 2rem;
  display:         flex;
  align-items:     center;
  gap:             1.5rem;
  text-decoration: none;
  transition:      all 0.35s;
  margin-bottom:   1.5rem;
  text-align:      left;
  position:        relative;
  overflow:        hidden;
}

.yt-card::before {
  content:    '';
  position:   absolute;
  inset:      0;
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.06), transparent);
  transform:  translateX(-100%);
  transition: transform 0.35s;
}

.yt-card:hover::before  { transform: translateX(0); }
.yt-card:hover {
  border-color: rgba(255, 60, 60, 0.6);
  transform:    translateY(-3px);
  box-shadow:   0 20px 60px rgba(0, 0, 0, 0.4);
}

.yt-av {
  width:           54px;
  height:          54px;
  background:      linear-gradient(135deg, #c00, #900);
  display:         flex;
  align-items:     center;
  justify-content: center;
  flex-shrink:     0;
  border-radius:   14px;
}

.yt-av svg {
  width:           26px;
  height:          26px;
  stroke:          #fff;
  fill:            none;
  stroke-width:    1.6;
  stroke-linecap:  round;
  stroke-linejoin: round;
}

.yt-title {
  font-size:     1rem;
  color:         var(--cream);
  font-weight:   500;
  margin-bottom: 0.15rem;
}
.yt-sub { font-size: 0.75rem; color: var(--muted); }

/* ── Nav sosyal medya grubu ────────────────────────────────── */
.nav-socials {
  display:     flex;
  align-items: center;
  gap:         0.5rem;
}

/* YouTube nav butonu */
.nav-yt {
  display:         inline-flex;
  align-items:     center;
  gap:             0.5rem;
  padding:         0.45rem 1rem;
  border:          1px solid rgba(255, 60, 60, 0.3);
  color:           #ff6060;
  text-decoration: none;
  font-size:       0.72rem;
  letter-spacing:  0.12em;
  text-transform:  uppercase;
  transition:      all 0.3s;
}

.nav-yt:hover {
  background:   rgba(255, 60, 60, 0.08);
  border-color: rgba(255, 60, 60, 0.6);
}

.nav-yt svg {
  width:           14px;
  height:          14px;
  stroke:          currentColor;
  fill:            none;
  stroke-width:    1.5;
  stroke-linecap:  round;
  stroke-linejoin: round;
}

/* Hero YouTube butonu — kırmızı tonu */
.btn-yt-hero {
  border-color: rgba(255, 60, 60, 0.35);
  color:        #ff8080;
}
.btn-yt-hero:hover {
  border-color: rgba(255, 60, 60, 0.7);
  color:        #ffaaaa;
}

.contact-email { font-size: 0.78rem; color: var(--muted); }
.contact-email a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border 0.3s;
}
.contact-email a:hover { border-color: var(--gold); }

/* =========================================
   FOOTER
   ========================================= */

footer {
  border-top: 1px solid var(--border2);
  padding: 1.8rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.fl {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.fl strong { color: var(--gold); font-weight: 400; }

.fr { display: flex; gap: 2rem; }
.fr a {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}
.fr a:hover { color: var(--gold); }

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }

  .about-wrap {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .book-card { grid-template-columns: 1fr; }
  .book-img {
    width: 120px;
    margin: 0 auto;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }

  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
}
