/* Tools Page Simple Styles */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Header Styles */
.tools-header {
  margin-bottom: 40px;
  text-align: center;
}

.tools-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.tools-header h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: var(--text-secondary);
  font-weight: 400;
}

/* Tools Grid */
.tools-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.tool-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  padding: 24px;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.tool-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.tool-card:focus {
  outline: 2px solid var(--primary);
}

.tool-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.tool-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.tool-purpose {
  color: var(--text-secondary);
  flex-grow: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .tools-container {
    grid-template-columns: 1fr;
  }

  .tools-header h1 {
    font-size: 2rem;
  }

  .tools-header h2 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 15px;
  }

  .tools-header h1 {
    font-size: 1.8rem;
  }

  .tools-header h2 {
    font-size: 1.2rem;
  }

  .tool-card {
    padding: 20px;
  }
}

/* Animation for card hover */
.tool-card {
  will-change: transform;
}

/* .tool-card:hover .tool-icon {
  transform: scale(1.1);
  transition: transform 0.3s ease;
} */
