*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #e8e8e8;
  font-family: 'Source Sans 3', sans-serif;
  min-height: 100vh;
}

a {
  color: #111;
  text-decoration: none;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background-color: #e8e8e8;
  border-bottom: 1px solid #ccc;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #111;
}

.nav-url {
  font-size: 13.2px;
  color: #555;
  letter-spacing: 0.02em;
  font-weight: 660;
}

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

.nav-right a {
  font-size: 14.4px;
  color: #111;
  text-decoration: none;
  font-weight: 660;
  letter-spacing: 0.03em;
}

.nav-right a:hover {
  text-decoration: underline;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 20px 40px;
  text-align: center;
}

.logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
  height: 200px;
}

.logo-img {
  width: 338px;
  height: auto;
}

.tagline {
  font-size: 19.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #111;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.btn-group {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
}

.btn {
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
  min-width: 160px;
  text-align: center;
}

.btn-dark {
  background-color: #111;
  color: #fff;
  border: 2px solid #111;
}

.btn-dark:hover {
  background-color: #333;
  border-color: #333;
}

.btn-outline {
  background-color: transparent;
  color: #111;
  border: 2px solid #111;
}

.btn-outline:hover {
  background-color: #111;
  color: #fff;
}

.cards {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
  padding: 0 10px;
}

.card {
  background-color: #f4f4f4;
  border: 2px solid #aaa;
  border-radius: 4px;
  width: 196px;
  padding: 20px 12px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  cursor: pointer;
  transition: box-shadow 0.15s, transform 0.15s;
}

.card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

.card-icon {
  width: 120px;
  height: 120px;
}

.card-icon-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.card-label {
  font-size: 21px;
  font-weight: 840;
  color: #111;
  text-align: center;
  line-height: 1.3;
  margin-top: 14px;
}

.social-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  border: 2px solid #111;
  border-radius: 50px;
  padding: 12px 46px;
  background-color: transparent;
}

.social-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  transition: opacity 0.15s, transform 0.15s;
}

.social-bar a:hover {
  opacity: 0.55;
  transform: scale(1.25);
}

.social-bar svg {
  width: 36px;
  height: 36px;
  fill: #111;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 100;
  display: none;
}

.menu-overlay.open {
  display: block;
}

.menu-drawer {
  position: fixed;
  top: 0;
  left: -300px;
  width: 260px;
  height: 100%;
  background: #fff;
  z-index: 101;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: left 0.25s ease;
  overflow-y: auto;
}

.menu-drawer.open {
  left: 0;
}

.menu-top-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.menu-search {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid #ccc;
  border-radius: 6px;
  padding: 8px 12px;
  margin-bottom: 10px;
}

.menu-search input {
  border: none;
  outline: none;
  font-size: 14px;
  width: 100%;
  font-family: 'Source Sans 3', sans-serif;
  color: #111;
  background: transparent;
}

.menu-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.menu-home {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: #111;
  text-decoration: none;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.menu-home:hover {
  color: #555;
}

.menu-item {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  text-decoration: none;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
  display: block;
}

.menu-item:hover {
  color: #555;
}

.coming-soon-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
}

.coming-soon-overlay.open {
  display: flex;
}

.coming-soon-box {
  background: #fff;
  border-radius: 8px;
  padding: 40px 50px;
  text-align: center;
  position: relative;
  min-width: 280px;
}

.coming-soon-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #111;
}

.coming-soon-title {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.coming-soon-text {
  font-size: 15px;
  color: #555;
}

.arsiv-baslik {
  font-family: 'Anton', sans-serif;
  font-size: 26px;
  color: #111;
  text-align: center;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
/* ============================================
   RESPONSIVE — TABLET (max 768px)
   ============================================ */
@media (max-width: 768px) {

  /* NAV */
  nav { padding: 8px 14px; }
  .nav-url { font-size: 11.5px; }
  .nav-right a { font-size: 13px; }
  .nav-right { gap: 12px; }

  /* HERO */
  .hero { padding: 24px 16px 32px; }

  /* LOGO */
  .logo-wrap { height: 160px; margin-bottom: 16px; }
  .logo-img { width: 260px; }

  /* TAGLINE */
  .tagline { font-size: 16px; letter-spacing: 0.08em; margin-bottom: 18px; }

  /* BUTONLAR */
  .btn-group { gap: 10px; margin-bottom: 32px; flex-wrap: wrap; justify-content: center; }
  .btn { min-width: 140px; font-size: 12.5px; padding: 8px 18px; }

  /* KARTLAR */
  .cards { gap: 16px; margin-bottom: 36px; }
  .card { width: 160px; padding: 16px 10px 18px; }
  .card-icon { width: 90px; height: 90px; }
  .card-icon-img { width: 90px; height: 90px; }
  .card-label { font-size: 17px; margin-top: 10px; }

  /* SOSYAL BAR */
  .social-bar { gap: 20px; padding: 10px 28px; }
  .social-bar svg { width: 28px; height: 28px; }

  /* SAYFA İÇERİKLERİ (arsivler, duyurular vb.) */
  .sh-wrap, .bl-wrap, .du-wrap, .yy-wrap, .pl-wrap,
  .hk-wrap, .il-wrap, .ar-wrap {
    padding: 14px 16px 48px;
  }

  /* FORM ALANLARI */
  .form-row { flex-direction: column; gap: 10px; }
  .ekle-form { padding: 18px 16px; }

  /* LİSTE KARTLARI */
  .liste-item { flex-direction: column; align-items: flex-start; gap: 8px; }
  .sil-btn { align-self: flex-end; }

  /* PANEL */
  .panel-wrap { padding: 24px 16px 48px; }
  .panel-sekmeler { gap: 6px; }
  .sekme-btn { font-size: 12px; padding: 5px 12px; }

  /* KATEGORİ KUTULARI */
  .kategori-icerik { padding: 14px 14px; }
  .haber-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
}

/* ============================================
   RESPONSIVE — TELEFON (max 480px)
   ============================================ */
@media (max-width: 480px) {

  /* NAV */
  nav { padding: 7px 12px; }
  .nav-url { display: none; }
  .nav-right a { font-size: 12px; }
  .nav-right { gap: 10px; }

  /* HERO */
  .hero { padding: 20px 12px 28px; }

  /* LOGO */
  .logo-wrap { height: 120px; margin-bottom: 12px; }
  .logo-img { width: 200px; }

  /* TAGLINE */
  .tagline { font-size: 13.5px; letter-spacing: 0.06em; margin-bottom: 16px; }

  /* BUTONLAR */
  .btn-group { flex-direction: column; align-items: center; gap: 8px; margin-bottom: 28px; }
  .btn { min-width: 200px; font-size: 13px; padding: 10px 16px; }

  /* KARTLAR */
  .cards { gap: 12px; margin-bottom: 28px; padding: 0 4px; }
  .card { width: 140px; padding: 14px 8px 16px; }
  .card-icon { width: 72px; height: 72px; }
  .card-icon-img { width: 72px; height: 72px; }
  .card-label { font-size: 14.5px; margin-top: 8px; }

  /* SOSYAL BAR */
  .social-bar { gap: 14px; padding: 10px 16px; border-radius: 40px; }
  .social-bar svg { width: 24px; height: 24px; }

  /* STICKY NAV */
  .sticky-nav { padding: 8px 12px; gap: 8px; }
  .sticky-nav a, .sticky-nav button { font-size: 12px; padding: 5px 10px; }

  /* SAYFA BAŞLIKLARI */
  .sh-baslik, .bl-baslik, .yy-baslik, .pl-baslik,
  .du-baslik, .hk-baslik, .il-baslik {
    font-size: 20px; padding: 6px 20px;
  }

  /* SAYFA İÇERİKLERİ */
  .sh-wrap, .bl-wrap, .du-wrap, .yy-wrap, .pl-wrap,
  .hk-wrap, .il-wrap, .ar-wrap {
    padding: 12px 12px 48px;
  }

  /* LOGO KÜÇÜK SAYFALARDA */
  .sh-logo img, .bl-logo img, .yy-logo img,
  .pl-logo img, .du-logo img, .hk-logo img, .il-logo img {
    width: 180px;
  }

  /* FORM */
  .ekle-form { padding: 14px 12px; gap: 10px; }
  .form-alan input, .form-alan textarea, .form-alan select {
    font-size: 14px; padding: 9px 10px;
  }
  .ekle-btn { width: 100%; text-align: center; align-self: stretch; }

  /* LİSTE */
  .liste-item { padding: 10px 12px; }
  .liste-item-baslik { font-size: 13px; }
  .liste-item-alt { font-size: 11px; }

  /* KATEGORİ KUTULARI */
  .kategori-baslik { font-size: 16px; }
  .kategori-icerik { padding: 12px 10px; }
  .haber-grid { grid-template-columns: 1fr; gap: 10px; }
  .haber-kutu { padding: 12px 14px; }

  /* PANEL NAV */
  .panel-nav { padding: 10px 14px; flex-wrap: wrap; gap: 8px; }
  .panel-nav img { width: 90px; }
  .panel-nav-baslik { font-size: 13px; }
  .panel-kullanici { font-size: 12px; }
  .panel-sekmeler { gap: 5px; }
  .sekme-btn { font-size: 11.5px; padding: 5px 10px; }
  .panel-wrap { padding: 18px 12px 48px; }
  .panel-bolum-baslik { font-size: 17px; }

  /* COMING SOON POPUP */
  .coming-soon-box { padding: 28px 24px; min-width: 240px; }
  .coming-soon-title { font-size: 17px; }

  /* MENU DRAWER */
  .menu-drawer { width: 220px; }

  /* LOG TABLOSU */
  .log-tablo { font-size: 11.5px; }
  .log-tablo th, .log-tablo td { padding: 8px 10px; }

  /* BLOG */
  .bl-yazi-kutu { padding: 14px 12px; gap: 10px; }
  .bl-yazi-ust { flex-direction: column; }
  .bl-kategori-select { width: 100%; }
  .bl-gonder-btn { width: 100%; }
  .bl-kart { padding: 14px 14px; }
  .bl-yanitlar { margin-left: 12px; padding-left: 10px; }
  .bl-filtre { gap: 6px; }
  .bl-filtre-btn { font-size: 11.5px; padding: 4px 10px; }
}

/* ============================================
   RESPONSIVE — ÇOK KÜÇÜK EKRAN (max 360px)
   ============================================ */
@media (max-width: 360px) {
  .logo-img { width: 170px; }
  .card { width: 120px; }
  .card-icon, .card-icon-img { width: 60px; height: 60px; }
  .card-label { font-size: 13px; }
  .social-bar { gap: 10px; padding: 8px 12px; }
  .social-bar svg { width: 20px; height: 20px; }
  .btn { min-width: 180px; }
}

/* ============================================
   SAYFA GEÇİŞ ANİMASYONU
   ============================================ */
body {
  animation: sayfaAcilis 0.3s ease forwards;
}

@keyframes sayfaAcilis {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

body.sayfa-kapaniyor {
  animation: sayfaKapanis 0.2s ease forwards;
  pointer-events: none;
}

@keyframes sayfaKapanis {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-6px); }
}