/**
 * Header link butonları - modern ve kullanıcı dostu
 */

.header-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  min-height: 38px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease,
    box-shadow 0.2s ease, transform 0.2s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.header-link-btn i {
  font-size: 14px;
  opacity: 0.9;
  transition: transform 0.2s ease;
}

.header-link-btn:hover {
  color: #fff;
  background: rgba(59, 130, 246, 0.25);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 4px 14px rgba(30, 64, 175, 0.25);
  transform: translateY(-1px);
}

.header-link-btn:hover i {
  opacity: 1;
  transform: scale(1.05);
}

.header-link-btn:active {
  transform: translateY(0);
  box-shadow: 0 1px 4px rgba(30, 64, 175, 0.2);
}

.header-link-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3), 0 0 0 4px rgba(59, 130, 246, 0.4);
}

/* İlan Ekle - vurgulu buton */
.header-link-btn[href*="ilan-ekle"] {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.35) 0%, rgba(30, 64, 175, 0.3) 100%);
  border-color: rgba(59, 130, 246, 0.5);
  color: #fff;
}

.header-link-btn[href*="ilan-ekle"]:hover {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.5) 0%, rgba(30, 64, 175, 0.45) 100%);
  border-color: rgba(59, 130, 246, 0.7);
  box-shadow: 0 4px 18px rgba(59, 130, 246, 0.35);
}

/* Tablet */
@media (max-width: 1024px) {
  .header-link-btn {
    padding: 7px 14px;
    min-height: 36px;
    font-size: 12px;
  }
  .header-link-btn i {
    font-size: 13px;
  }
}

/* Mobil (header-top görünür olduğu breakpoint) */
@media (max-width: 768px) {
  .header-link-btn {
    padding: 6px 12px;
    min-height: 34px;
    font-size: 11px;
    gap: 6px;
  }
  .header-link-btn i {
    font-size: 12px;
  }
}
