/* ----------------------------------------------------
   FONT & GLOBAL
----------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root{
  --bg: #f4f5fa;
  --fg: #222;
  --muted: #777;
  --radius: 18px;

  /* Premium gradient */
  --grad: linear-gradient(120deg, #9333ea, #6366f1, #d946ef);
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--fg);
}


/* ----------------------------------------------------
   TOP STRIP (Üst bilgi şeridi)
----------------------------------------------------- */
.top-strip {
  background: #18181b;
  color: white;
  font-size: 14px;
  padding: 10px 0;
  text-align: center;
}

.top-strip a {
  color: #a78bfa;
  font-weight: 600;
  text-decoration: none;
}

.top-strip a:hover {
  text-decoration: underline;
}


/* ----------------------------------------------------
   NAVBAR
----------------------------------------------------- */
.nav-shell {
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav {
  max-width: 1250px;
  margin: auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.20);
}

.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-text-main {
  font-size: 20px;
  font-weight: 800;
  color: #1e1e1e;
}

.logo-text-sub {
  font-size: 13px;
  color: #555;
}

/* Menu buttons */
.chip-btn {
  padding: 8px 14px;
  background: rgba(0,0,0,0.05);
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  color: #333;
  margin-right: 10px;
  transition: 0.25s;
}

.chip-btn:hover {
  background: rgba(0,0,0,0.12);
}

.btn-primary {
  padding: 10px 20px;
  border-radius: 30px;
  background: var(--grad);
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s;
}

.btn-primary:hover {
  opacity: 0.85;
}


/* ----------------------------------------------------
   HERO (Blog Sayfası – Tam Genişlik Görsel)
----------------------------------------------------- */

.blog-hero {
  position: relative;
  width: 100%;
  height: 320px;          /* Masaüstü görünüm boyu */
  overflow: hidden;
  border-radius: 0;
  margin-bottom: 40px;
}

/* Arka plan görseli */
.blog-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* 3:2, 16:9 fark etmez – profesyonel kırpma */
  object-position: center;
  display: block;
}

/* Eğer ileride yazı eklersen diye HERO overlay (şu an görünmez) */
.blog-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0); /* Transparan – istersen %30 yapabilirsin */
}

/* Mobil uyum */
@media (max-width: 768px) {
  .blog-hero {
    height: 220px;  /* Mobilde daha dengeli */
  }
}



/* ----------------------------------------------------
   BLOG GRID
----------------------------------------------------- */
.blog-container {
  max-width: 1250px;
  margin: 50px auto;
  padding: 15px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 32px;
}

/* Blog Card */
.blog-card {
  background: white;
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px rgba(0,0,0,0.12);
}

/* Thumbnail */
.blog-thumb {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 12px;
}

/* Title */
.blog-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

/* Desc */
.blog-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.55;
  margin-bottom: 16px;
}

/* Button */
.blog-btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  background: var(--grad);
  color: white;
  transition: 0.25s;
}

.blog-btn:hover {
  opacity: 0.85;
}



/* ----------------------------------------------------
   FOOTER
----------------------------------------------------- */
.bb-footer {
  margin-top: 80px;
  padding: 60px 0 30px;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 -10px 25px rgba(0,0,0,0.05);
}

.bb-footer-top {
  max-width: 1250px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.bb-footer-logo {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  margin-bottom: 14px;
}

.bb-footer-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.bb-footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  color: transparent;
}

.bb-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bb-footer-col ul li {
  margin-bottom: 6px;
}

.bb-footer-col ul li a {
  color: #555;
  font-size: 14px;
  text-decoration: none;
  transition: 0.25s;
}

.bb-footer-col ul li a:hover {
  color: #7c3aed;
  padding-left: 4px;
}

.bb-footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  font-size: 14px;
  color: #666;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.bb-footer-powered {
  display: block;
  margin-top: 5px;
  opacity: 0.7;
  font-size: 13px;
}
/* ================================
   NAVBAR RESPONSIVE DÜZEN (MOBİL)
================================ */
@media (max-width: 768px) {

  .nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}


  /* Blog chip */
  .nav-right .chip-btn {
    padding: 5px 10px;
    font-size: 12px;
    white-space: nowrap;
  }

  /* Giriş / Panel butonu */
  .nav-right .btn-primary,
  .nav-right .btn {
    padding: 6px 1px;
    font-size: 10px;
    white-space: nowrap;
    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0;
  }
@media (max-width: 768px) {

  .nav {
    padding-right: 12px; /* ekran nefesi */
  }

  .nav-right {
    margin-left: 0;      /* ❗ auto KALKTI */
    flex-shrink: 1;      /* ❗ artık daralabilir */
    max-width: 100%;
  }

  .nav-right .chip-btn {
    padding: 5px 8px;
    font-size: 12px;
    margin-right: 4px;
  }

  .nav-right .btn-primary {
    padding: 8px 10px;
    font-size: 12px;
    border-radius: 10px;
    white-space: nowrap;
  }

}

  /* Logo solda sabit, butonlar sağa yaslı */
  .pro-nav,
  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-left {
    flex-shrink: 0;
  }
}
/* =======================================================
   SABİT ÜST MENÜ — BUTONLU PRO TASARIM
======================================================= */



/* 🔘 TÜM LINKLER = BUTON */
.bb-topweb-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 8px 14px;
  height: 36px;

  font-size: 14px;
  font-weight: 600;
  color: #333;
  text-decoration: none;

  background: rgba(0,0,0,0.04);
  border-radius: 999px;

  transition: all 0.25s ease;
  white-space: nowrap;
}

/* Hover */
.bb-topweb-menu a:hover {
  background: rgba(122,44,255,0.12);
  color: #7a2cff;
  transform: translateY(-1px);
}

/* ⭐ PREMIUM BUTON (Anasayfa) */
.bb-topweb-menu a.premium {
  background: linear-gradient(135deg,#7a2cff,#b43cff);
  color: white;
  padding: 8px 18px;
  box-shadow: 0 6px 20px rgba(122,44,255,0.35);
}

/* Premium hover */
.bb-topweb-menu a.premium:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* -------------------------------------------------------
   MOBİLDE GİZLE
------------------------------------------------------- */
@media (max-width: 768px) {
  .bb-topweb-menu {
    display: none;
  }
}
