
/* ============================================
   HERO-FEATURES.CSS - Optional Feature Pills for Hero
   ============================================
   
   Clean feature pills to showcase key features in hero
   Can be enabled by adding the HTML structure
*/

/* Feature pills container */
.hero-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 2rem auto;
  max-width: 800px;
  padding: 0 1rem;
}

/* Individual feature pill */
.hero-feature-pill {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  background: rgba(102, 126, 234, 0.08);
  color: var(--text-primary, #1a202c);
  padding: 0.6rem 1.2rem;
  border-radius: 24px;
  border: 1px solid rgba(102, 126, 234, 0.15);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.hero-feature-pill:hover {
  background: rgba(102, 126, 234, 0.12);
  border-color: rgba(102, 126, 234, 0.25);
  transform: translateY(-1px);
  text-decoration: none;
  color: var(--text-primary, #1a202c);
}

[data-theme="dark"] .hero-feature-pill {
  background: rgba(102, 126, 234, 0.12);
  color: var(--text-primary-dark, #f7fafc);
  border-color: rgba(102, 126, 234, 0.2);
}

[data-theme="dark"] .hero-feature-pill:hover {
  background: rgba(102, 126, 234, 0.18);
  border-color: rgba(102, 126, 234, 0.3);
  color: var(--text-primary-dark, #f7fafc);
}

/* Feature pill emoji/icon */
.hero-feature-pill .feature-emoji {
  font-size: 1rem;
  filter: grayscale(0.2);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .hero-features {
    gap: 0.5rem;
    margin: 1.5rem auto;
  }
  
  .hero-feature-pill {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    gap: 0.5rem;
  }
  
  .hero-feature-pill .feature-emoji {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-features {
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
  }
  
  .hero-feature-pill {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}
