/* =============================================
   FARUK ÇETİN — mahirunal.com klonu stili
============================================= */

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:   #c0392b;
  --dark:  #111111;
  --dark2: #1a1a1a;
  --gray:  #666;
  --light: #f7f7f7;
  --white: #fff;
  --font-main: 'Montserrat', sans-serif;
  --font-alt:  'Pridi', serif;
  --transition: all .35s ease;
}

html { scroll-behavior: smooth; overflow-x: clip; }

body {overflow-x: hidden;
  font-family: var(--font-main);
  font-size: 16px;
  color: #333;
  background: var(--white);
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* CONTAINERS */
.container-xl { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.container-lg  { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-md  { max-width: 960px;  margin: 0 auto; padding: 0 24px; }
.container-sm  { max-width: 760px;  margin: 0 auto; padding: 0 24px; }

/* PRELOADER */
/* ==============================
   PRELOADER
============================== */
#fc-preloader {
  position: fixed; inset: 0; z-index: 99999;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  transition: opacity .5s ease;
}
#fc-preloader strong {
  display: block; font-size: 1.8rem; font-weight: 900;
  font-family: 'Montserrat', sans-serif; color: #111;
  letter-spacing: .5px;
}
#fc-preloader strong em { color: #c0392b; font-style: normal; }
#fc-preloader small {
  display: block; font-size: .6rem; letter-spacing: 4px;
  text-transform: uppercase; color: #999; margin-top: 6px;
}

/* ==============================
   HEADER
============================== */
#fc-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 9000;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.07);
  transition: box-shadow .25s;
}
#fc-header.scrolled { box-shadow: 0 2px 18px rgba(0,0,0,.1); }

/* Bar içi düzeni */
.fc-hd-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 24px;
  height: 72px;
  display: flex; align-items: center; gap: 20px;
}

/* Logo */
.fc-hd-logo { text-decoration: none; flex-shrink: 0; }
.fc-hd-logo-name {
  display: block; font-size: 1.45rem; font-weight: 800;
  letter-spacing: .3px; color: #111;
}
.fc-hd-logo-name em { color: #c0392b; font-style: normal; }
.fc-hd-logo-sub {
  display: block; font-size: .65rem; color: #999; letter-spacing: 1px;
}

/* Desktop Nav */
.fc-hd-nav {
  display: flex; align-items: center; gap: 2px;
  flex: 1; justify-content: center;
}
.fc-hd-nav a {
  display: block; padding: 8px 14px;
  font-size: .78rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: #222;
  border-radius: 4px; white-space: nowrap;
  text-decoration: none;
  transition: color .2s;
}
.fc-hd-nav a:hover { color: #c0392b; }

/* Desktop Social */
.fc-hd-social { display: flex; align-items: center; gap: 7px; flex-shrink: 0; }
.fc-hd-social a {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1.5px solid #ddd; color: #333;
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem; text-decoration: none;
  transition: border-color .2s, color .2s;
}
.fc-hd-social a:hover { border-color: #c0392b; color: #c0392b; }

/* Hamburger butonu — sadece mobilde görünür */
#fc-burger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 44px; height: 44px; flex-shrink: 0;
  background: none; border: 1.5px solid #ccc; border-radius: 6px; cursor: pointer;
  padding: 0; margin-left: auto;
}
#fc-burger b {
  display: block; width: 20px; height: 2px;
  background: #333; border-radius: 2px; font-weight: normal;
  transition: transform .3s, opacity .3s;
  transform-origin: center;
}
/* X animasyonu */
#fc-burger.active b:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#fc-burger.active b:nth-child(2) { opacity: 0; }
#fc-burger.active b:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobil açılır panel */
#fc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  background: #fff;
  border-top: 0 solid rgba(0,0,0,.07);
}
#fc-panel.open {
  max-height: 600px;
  border-top-width: 1px;
}

.fc-panel-nav { display: flex; flex-direction: column; }
.fc-panel-nav a {
  display: block; padding: 13px 0;
  font-size: .9rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: #222;
  border-bottom: 1px solid #f0f0f0; text-decoration: none;
  transition: color .2s;
}
.fc-panel-nav a:last-child { border-bottom: none; }
.fc-panel-nav a:hover { color: #c0392b; }

.fc-panel-social { padding-top: 16px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.fc-panel-social span {
  display: block; width: 100%;
  font-size: .62rem; letter-spacing: 3px; text-transform: uppercase; color: #aaa;
  margin-bottom: 4px;
}
.fc-panel-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid #ddd; color: #333;
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem; text-decoration: none;
  transition: border-color .2s, color .2s;
}
.fc-panel-social a:hover { border-color: #c0392b; color: #c0392b; }

/* ==============================
   MOBİL BREAKPOINT  (≤768px)
============================== */
@media (max-width: 768px) {
  .fc-hd-inner { height: 60px; padding: 0 16px; }
  .fc-hd-nav   { display: none; }
  .fc-hd-social { display: none; }
  #fc-burger   { display: flex; }
  /* Desktop'ta her zaman kapalı (resize koruması) */
}
@media (min-width: 769px) {
  #fc-panel { max-height: 0 !important; overflow: hidden !important; }
}

/* LINK BUTTON (Devamını Oku style) */
.link-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--dark);
  transition: var(--transition);
}
.link-btn i { font-size: .75rem; transition: transform .25s ease; }
.link-btn:hover { color: var(--red); }
.link-btn:hover i { transform: translateX(4px); }
.link-btn.white { color: rgba(255,255,255,.85); }
.link-btn.white:hover { color: var(--white); }

/* ===========================
   HERO SECTION
=========================== */
.hero-section {
  margin-top: 72px;
  position: relative;
  height: calc(100vh - 72px);
  min-height: 560px;
  overflow: hidden;
}
.hero-section .swiper { width: 100%; height: 100%; }
.slide-item {
  width: 100%; height: 100%;
  position: relative; overflow: hidden;
  background: #111;
}
.slide-item .background-image {
  position: absolute; inset: 0;
  z-index: 0;
}
.slide-item .background-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.slide-item .background-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,.75) 0%, rgba(10,10,10,.55) 100%);
}
.hero-wrapper {
  display: flex; align-items: center;
  height: 100%; gap: 60px;
  position: relative; z-index: 2;
  padding: 40px 0;
}
.hero-wrapper article { flex: 1; }
.hero-content { color: var(--white); }
.hero-content p {
  font-family: var(--font-alt);
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 8px;
}
.hero-content p strong { font-weight: 800; font-size: clamp(1.5rem, 4vw, 2.8rem); }
.hero-content p span {
  display: inline-block;
  font-style: italic; font-size: clamp(1.3rem, 3.5vw, 2.4rem);
  color: rgba(255,255,255,.9);
}
.hero-name {
  font-size: clamp(2.5rem, 7vw, 5.5rem) !important;
  font-weight: 900 !important;
  font-family: var(--font-main) !important;
  letter-spacing: -1px;
  line-height: 1 !important;
  margin-bottom: 12px !important;
}
.hero-title-tag {
  display: inline-block;
  border: 2px solid rgba(255,255,255,.4);
  color: rgba(255,255,255,.9);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 28px;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red); color: var(--white);
  font-size: .8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 14px 32px; border-radius: 2px;
  transition: var(--transition); margin-top: 32px;
  box-shadow: 0 6px 24px rgba(192,57,43,.4);
}
.hero-cta:hover { background: #922b21; transform: translateY(-2px); }

.hero-wrapper figure.cover {
  flex: 0 0 auto;
  width: clamp(240px, 35vw, 420px);
  display: flex; align-items: flex-end; justify-content: center;
  position: relative;
}
.hero-wrapper figure.cover img {
  width: 100%; max-height: 85vh;
  object-fit: contain; object-position: bottom;
  position: relative; z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.4));
}

/* Swiper hero dots */
.hero-section .swiper-pagination { bottom: 24px; }
.hero-section .swiper-pagination-bullet {
  width: 8px; height: 8px; background: rgba(255,255,255,.5); opacity: 1;
}
.hero-section .swiper-pagination-bullet-active { background: var(--red); transform: scale(1.3); }

/* ===========================
   SECTION COMMON
=========================== */
section { position: relative; }
.section-placeholder-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(5rem, 15vw, 14rem);
  font-weight: 900; text-transform: uppercase;
  letter-spacing: .05em; white-space: nowrap;
  pointer-events: none; user-select: none;
  color: rgba(0,0,0,.04);
  line-height: 1;
  z-index: 0;
}
.bg-dark .section-placeholder-text { color: rgba(255,255,255,.03); }

.section-header { margin-bottom: 48px; position: relative; z-index: 1; }
.section-title p {
  font-size: clamp(.65rem, 1.5vw, .75rem);
  font-weight: 800; letter-spacing: 4px; text-transform: uppercase;
  color: #bbb;
}
.section-title strong {
  display: block;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900; letter-spacing: .5px;
  color: var(--dark); line-height: 1.1;
  margin-top: 6px;
}
.bg-dark .section-title strong { color: var(--white); }
.bg-dark .section-title p { color: rgba(255,255,255,.3); }

/* data-title-type="text-center" */
[data-title-type="text-center"] { text-align: center; }
[data-content-type="text-center"] { text-align: center; }

/* ===========================
   ABOUT SECTION
=========================== */
.about-section {
  padding: 100px 0;
  background: var(--white);
  overflow: hidden;
}
.about-section article {
  position: relative; z-index: 1;
  max-width: 720px; margin: 0 auto;
}
.section-content { line-height: 1.9; }
.section-content .text-bigger {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 600; color: var(--dark);
  font-family: var(--font-alt);
}
.section-content p { color: #555; margin-bottom: 16px; font-size: .97rem; }
.buttons-wrapper { margin-top: 32px; }

/* ===========================
   NEWS SECTION
=========================== */
.news-section {
  padding: 100px 0;
  overflow: hidden;
}
.news-section.bg-dark { background: var(--dark); }
.news-section .section-header { margin-bottom: 20px; }
.news-section .wrapper > div:first-child {
  display: flex; flex-direction: column; gap: 16px;
}
.news-section .wrapper {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
  position: relative; z-index: 1;
  padding-right: 24px;
}
.slider-area { overflow: hidden; }
.slider-wrapper { position: relative; }
.slider-wrapper .inner { overflow: hidden; }
.slider-wrapper .swiper { overflow: hidden; }

.news-card {
  background: var(--dark2);
  border-radius: 6px; overflow: hidden;
  height: 100%; display: flex; flex-direction: column;
  transition: var(--transition);
  border-top: 3px solid #c0392b;
}
.news-card:hover { transform: translateY(-4px); }
.news-card .cover {
  height: 165px; overflow: hidden;
  background: #222;
}
.news-card .cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.news-card:hover .cover img { transform: scale(1.06); }
.card-content {
  padding: 18px 20px 20px; flex: 1;
  display: flex; flex-direction: column; gap: 8px;
}
.card-date {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .5px; color: #c0392b;
  text-transform: uppercase;
}
.card-title {
  font-size: .97rem; font-weight: 700; line-height: 1.5;
  color: rgba(255,255,255,.92); flex: 1;
}
.news-card .link-btn { margin-top: auto; color: #c0392b; font-weight: 700; font-size: .72rem; letter-spacing: .5px; }
.news-card .link-btn:hover { color: var(--red); }

/* Slider nav + tümünü gör */
.slide-view {
  display: flex; flex-direction: column;
  gap: 24px; align-items: flex-start;
}
.slide-view .buttons-wrapper { display: flex; gap: 10px; }
.slide-view button {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.6); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.slide-view button:hover { border-color: var(--red); color: var(--red); }
.slide-view .link-btn { color: rgba(255,255,255,.7); font-size: .75rem; }
.slide-view .link-btn:hover { color: var(--red); }

/* ===========================
   GALLERY SECTION
=========================== */
/* ===========================
   GALERİ — mehmetfatihkacir.com stili
=========================== */
.gallery-section {
  padding: 80px 0 90px;
  background: var(--white);
}

/* Başlık: dikey çizgi + kırmızı GALERİ */
.gallery-section-header {
  text-align: center;
  margin-bottom: 40px;
}
.gallery-section-line {
  display: block;
  width: 2px;
  height: 48px;
  background: var(--red);
  margin: 0 auto 14px;
}
.gallery-section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1;
  margin: 0;
}

/* Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}
.gallery-item { min-width: 0; }

/* Resim kutusu — 3:2 landscape */
.gallery-thumb-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 70%;
  overflow: hidden;
  background: #ccc;
}
.gallery-thumb {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  cursor: pointer;
}
.gallery-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform .5s ease;
  display: block;
}
.gallery-thumb:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(192,57,43,.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
}
.gallery-thumb:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: #fff; font-size: 1.6rem; }

/* ===========================
   CONTACT SECTION
=========================== */
.contact-section { padding: 100px 0; background: var(--white); overflow: hidden; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px; align-items: start;
  position: relative; z-index: 1;
}
.contact-info-side h3 {
  font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800;
  color: var(--dark); margin-bottom: 20px;
}
.contact-info-side p { color: var(--gray); line-height: 1.8; margin-bottom: 32px; }
.contact-info-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.c-icon {
  width: 44px; height: 44px; min-width: 44px; border-radius: 50%;
  background: rgba(192,57,43,.08); color: var(--red);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.c-label { font-weight: 700; color: var(--dark); font-size: .85rem; margin-bottom: 2px; }
.c-val { color: var(--gray); font-size: .88rem; }
.contact-social-links { display: flex; gap: 10px; }
.contact-social-links a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid #ddd; color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.contact-social-links a:hover { border-color: var(--red); color: var(--red); }

/* FORM */
.contact-form-side { }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: .8rem; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase;
  color: #888; margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid #e8e8e8; border-radius: 3px;
  font-size: .95rem; font-family: var(--font-main);
  color: var(--dark); background: var(--white);
  outline: none; transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group textarea { height: 140px; resize: vertical; }
.btn-submit {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red); color: var(--white);
  font-size: .8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 16px 40px; border-radius: 2px;
  transition: var(--transition); cursor: pointer; border: none;
  font-family: var(--font-main);
}
.btn-submit:hover { background: #922b21; transform: translateY(-2px); }
.form-msg-box {
  margin-top: 16px; padding: 12px 16px; border-radius: 3px;
  font-size: .88rem; font-weight: 600; display: none;
}
.form-msg-box.ok  { background: #d4edda; color: #155724; display: block; }
.form-msg-box.err { background: #f8d7da; color: #721c24; display: block; }

/* ===========================
   FOOTER
=========================== */
footer {
  background: var(--dark);
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .f-logo {
  font-size: 1.5rem; font-weight: 900;
  color: var(--white); margin-bottom: 16px;
  display: inline-block;
}
.footer-brand .f-logo span { color: var(--red); }
.footer-brand p { color: rgba(255,255,255,.4); font-size: .85rem; line-height: 1.8; }
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.5);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; transition: var(--transition);
}
.footer-social a:hover { border-color: var(--red); color: var(--red); }
.footer-col h4 {
  color: rgba(255,255,255,.9); font-size: .75rem;
  font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,.4); font-size: .85rem;
  display: flex; align-items: center; gap: 8px;
  transition: var(--transition);
}
.footer-links a i { font-size: .65rem; }
.footer-links a:hover { color: var(--red); padding-left: 4px; }
.footer-bottom {
  padding: 20px 0; text-align: center;
  color: rgba(255,255,255,.2); font-size: .78rem;
}
.footer-panel-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,.2); font-size: .75rem;
  transition: var(--transition); margin-top: 12px;
}
.footer-panel-link:hover { color: rgba(255,255,255,.5); }

/* ===========================
   SCROLL TO TOP
=========================== */
.scroll-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 400;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; box-shadow: 0 4px 16px rgba(192,57,43,.4);
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: var(--transition);
}
.scroll-top.show { opacity: 1; pointer-events: all; transform: none; }
.scroll-top:hover { background: #922b21; }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .news-section .wrapper { grid-template-columns: 1fr; }
  .slide-view { flex-direction: row; align-items: center; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 4px; }
}

@media (max-width: 768px) {
  /* fc-header handles mobile via its own rules */
  .hero-section { margin-top: 60px; height: calc(100vh - 60px); }
  .hero-wrapper { flex-direction: column; justify-content: center; text-align: center; }
  .hero-wrapper figure.cover { width: 200px; }
  .about-section, .news-section, .gallery-section, .contact-section { padding: 70px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ===========================
   KİTAPLAR
=========================== */
.books-section {
  padding: 100px 0;
  background: var(--light);
  position: relative;
  overflow: hidden;
}
.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.book-card-main {
  background: var(--white);
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  transition: var(--transition);
  overflow: hidden;
}
.book-card-main:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,.12); }
.book-cover {
  height: 220px;
  background: linear-gradient(135deg, var(--dark) 0%, #2c2c2c 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.book-cover img { width: 100%; height: 100%; object-fit: cover; }
.book-cover .book-icon-placeholder {
  font-size: 5rem;
  color: rgba(255,255,255,.15);
}
.book-cover .book-year-badge {
  position: absolute; bottom: 14px; right: 14px;
  background: var(--red);
  color: var(--white);
  font-size: .72rem; font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 10px;
}
.book-info { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.book-info h3 {
  font-size: 1rem; font-weight: 800;
  color: var(--dark); line-height: 1.5;
  margin-bottom: 10px;
}
.book-publisher {
  font-size: .78rem; font-weight: 600; color: var(--gray);
  letter-spacing: .5px; margin-bottom: 14px;
  display: flex; align-items: center; gap: 6px;
}
.book-publisher i { color: var(--red); }
.book-info p {
  font-size: .88rem; line-height: 1.7; color: #555;
  flex: 1; margin-bottom: 20px;
}
.btn-book {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--dark); color: var(--white);
  padding: 11px 22px;
  font-size: .78rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  transition: var(--transition);
  align-self: flex-start;
}
.btn-book:hover { background: var(--red); color: var(--white); }
.btn-book i { font-size: .75rem; }

/* ===========================
   GÜNCEL HABERLER (gnc-*)
=========================== */
.gnc-section {
  padding-bottom: 80px;
  background: #fff;
}

/* ── Boydan boya başlık bandı ── */
.gnc-banner {
  background: #1a1a2e;
  background-image:
    repeating-linear-gradient(
      -52deg,
      transparent 0,
      transparent 14px,
      rgba(255,255,255,.028) 14px,
      rgba(255,255,255,.028) 28px
    );
  border-bottom: 4px solid #c0392b;
  padding: 28px 0;
}

.gnc-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.gnc-label {
  display: flex;
  align-items: stretch;
  gap: 16px;
}
.gnc-accent-bar {
  width: 5px;
  background: #c0392b;
  border-radius: 3px;
  flex-shrink: 0;
  min-height: 52px;
}
.gnc-sub {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #e87070;
  margin: 0 0 5px;
}
.gnc-title {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 900;
  color: #fff;
  margin: 0;
  letter-spacing: -.5px;
  line-height: 1;
}
.gnc-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.gnc-prev, .gnc-next {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.8);
  font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all .22s;
}
.gnc-prev:hover, .gnc-next:hover {
  border-color: #c0392b;
  background: #c0392b;
  color: #fff;
}
.gnc-all-link {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  padding: 9px 20px;
  background: #c0392b;
  border-radius: 3px;
  transition: background .2s, color .2s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.gnc-all-link:hover {
  background: #a93226;
  color: #fff;
}
.gnc-swiper { overflow: hidden; }
.gnc-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 3px 20px rgba(0,0,0,.09);
  text-decoration: none;
  transition: transform .28s, box-shadow .28s;
  height: 100%;
  border-top: 4px solid #c0392b;
}
.gnc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.14);
}
.gnc-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #eee;
  flex-shrink: 0;
}
.gnc-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
  display: block;
}
.gnc-card:hover .gnc-card-img img { transform: scale(1.07); }
.gnc-card-img-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg,#1a1a2e,#c0392b33);
  color: rgba(255,255,255,.3); font-size: 2.5rem;
}
.gnc-card-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.gnc-card-date {
  font-size: .67rem;
  font-weight: 700;
  color: #c0392b;
  letter-spacing: .5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
}
.gnc-card-title {
  font-size: .95rem;
  font-weight: 700;
  color: #111;
  line-height: 1.5;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gnc-card-link {
  font-size: .68rem;
  font-weight: 800;
  color: #c0392b;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 5px;
}
.gnc-card-link i { transition: transform .2s; }
.gnc-card:hover .gnc-card-link i { transform: translateX(3px); }

/* ===========================
   CAPTCHA + WHATSAPP BUTONU
=========================== */
.captcha-row { display: flex; gap: 10px; align-items: center; }
.captcha-row input[type=number] { max-width: 120px; }
.form-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-top: 6px; }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25d366; color: #fff;
  font-size: .8rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 16px 28px; border-radius: 2px; text-decoration: none;
  transition: var(--transition);
}
.btn-whatsapp:hover { background: #1ebe5d; color: #fff; transform: translateY(-2px); }
.btn-whatsapp i { font-size: 1.1rem; }
