/* Tools page specific styles */

.container {
  max-width: 900px;
}

header h1 {
  text-align: center;
  margin-bottom: 40px;
}

.tools-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.tool-item {
  background: white;
  padding: 30px;
  border: 3px solid #2d2d2d;
  border-radius: 15px;
  box-shadow: 6px 6px 0 #2d2d2d;
  transform: rotate(-0.5deg);
  transition: all 0.2s;
}

.tool-item:nth-child(even) {
  transform: rotate(0.5deg);
}

.tool-item:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 8px 8px 0 #2d2d2d;
}

.tool-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
  gap: 20px;
  flex-wrap: wrap;
}

.tool-header h3 {
  font-family: "Permanent Marker", cursive;
  font-size: 24px;
  color: #2d2d2d;
  margin: 0;
}

.tool-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tool-tag {
  display: inline-block;
  padding: 4px 12px;
  background: #f7f7f7;
  border: 2px solid #2d2d2d;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tool-tag:first-child {
  background: #4ecdc4;
  color: white;
}

.tool-description {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 15px;
}

.tool-link {
  display: inline-block;
  color: #4ecdc4;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 20px;
  border: 2px solid #4ecdc4;
  border-radius: 25px;
  transition: all 0.2s;
}

.tool-link:hover {
  background: #4ecdc4;
  color: white;
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .tool-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
