.tools-section {
  padding: 2rem;
  background-color: #111;
  color: #eee;
}

.tools-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #444;
  padding-bottom: 0.5rem;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  padding: 1rem;
}

.tool-tile {
  background: #1e1e1e;
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 0 10px #0005;
  transition: transform 0.2s ease;
}

.tool-tile:hover {
  transform: scale(1.05);
}

.tool-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 0.5rem;
}

.skill-level {
  font-size: 0.9rem;
  color: #ccc;
}

.usage {
  font-size: 0.8rem;
  color: #888;
}

/* RESPONSIVE adjustments if needed */
@media (max-width: 768px) {
  .tools-title {
    font-size: 1.5rem;
  }

  .tool-icon {
    width: 40px;
    height: 40px;
  }
}

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