/* Home page specific styles */
.hero-section {
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(155, 89, 182, 0.1) 100%);
  border-radius: 12px;
  padding: 3rem 2rem;
  margin-bottom: 2rem;
}

.feature-stat {
  padding: 1rem;
  transition: transform 0.2s ease;
}

.feature-stat:hover {
  transform: translateY(-2px);
}

.feature-stat h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.call-to-action {
  border: 2px solid rgba(52, 152, 219, 0.2);
  transition: all 0.3s ease;
}

.call-to-action:hover {
  border-color: rgba(52, 152, 219, 0.4);
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.15);
}

.tool-card {
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.tool-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: rgba(52, 152, 219, 0.3);
}

.tool-card .card-body {
  padding: 1.5rem;
}

.tool-card img {
  transition: transform 0.2s ease;
}

.tool-card:hover img {
  transform: scale(1.1);
}

.feedback-section a {
  color: #3498db;
  transition: color 0.2s ease;
}

.feedback-section a:hover {
  color: #2980b9;
  text-decoration: underline !important;
}

/* Dark mode adjustments */
[data-theme="dark"] .hero-section {
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.15) 0%, rgba(155, 89, 182, 0.15) 100%);
}

[data-theme="dark"] .call-to-action {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(52, 152, 219, 0.3);
}

[data-theme="dark"] .tool-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}