/* QacAgent Website - Main CSS File */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Import CSS Modules in Order */
@import 'base.css';        /* Variables, reset, typography */
@import 'layout.css';      /* Grid layouts, sections */
@import 'components.css';  /* Buttons, cards, navigation */
@import 'responsive.css';  /* Media queries, mobile styles */

/* Page-specific styles that don't fit in modules */
.step-card {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.step-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.step-card p {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
  flex-grow: 1;
}

/* Additional component styles */
.feature-item {
  background: var(--background-primary);
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-light);
  transition: all var(--transition-normal);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.feature-icon-large {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
}

.feature-item h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.feature-item p {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  padding: 8px 0;
  color: var(--text-secondary);
  position: relative;
  padding-left: var(--spacing-md);
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Team member styles */
.team-member {
  background: var(--background-primary);
  padding: 40px 30px;
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: all var(--transition-normal);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.member-avatar {
  font-size: 4rem;
  margin-bottom: var(--spacing-md);
}

.team-member h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.member-role {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 15px;
}

.member-bio {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Help and docs card styles */
.help-card,
.docs-card {
  background: var(--background-primary);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-light);
  text-align: center;
  transition: all var(--transition-normal);
}

.help-card:hover,
.docs-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.help-icon,
.docs-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
}

.help-card h3,
.docs-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.help-card p,
.docs-card p {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
}

.help-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-normal);
}

.help-link:hover {
  color: var(--primary-dark);
}

.docs-links {
  list-style: none;
}

.docs-links li {
  margin-bottom: var(--spacing-xs);
}

.docs-links a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-normal);
}

.docs-links a:hover {
  color: var(--primary-dark);
}

/* Stats and other components */
.stat {
  text-align: center;
  padding: 30px;
  background: var(--background-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-light);
}

.stat h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.stat p {
  color: var(--text-secondary);
  font-weight: 500;
}

.value-item {
  text-align: center;
  padding: 40px 30px;
}

.value-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
}

.value-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.value-item p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* FAQ styles */
.faq-item {
  background: var(--background-primary);
  padding: 30px;
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-md);
  box-shadow: var(--shadow-light);
}

.faq-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.faq-item p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Contact styles */
.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--text-primary);
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.contact-icon {
  font-size: 2rem;
  margin-right: var(--spacing-md);
}

.contact-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-primary);
}

.contact-item p {
  color: var(--text-secondary);
}

.contact-form h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--text-primary);
}

.support-form {
  display: grid;
  gap: var(--spacing-md);
}

/* API documentation styles */
.api-section h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--text-primary);
}

.api-command {
  background: var(--background-secondary);
  padding: 30px;
  border-radius: var(--radius-lg);
  margin-bottom: 30px;
  border-left: 4px solid var(--primary-color);
}

.api-command h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
  font-family: var(--font-mono);
}

.api-command p {
  color: var(--text-secondary);
  margin-bottom: 15px;
  line-height: 1.6;
}

.api-example h5 {
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
  color: var(--text-primary);
}

/* Example cards */
.example-card {
  background: var(--background-primary);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-light);
}

.example-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  color: var(--text-primary);
}

.example-card pre {
  background: var(--text-primary);
  color: var(--background-secondary);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  overflow-x: auto;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Step styles */
.step {
  background: var(--background-primary);
  padding: 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-light);
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 auto var(--spacing-md);
}

.step h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.step p {
  color: var(--text-secondary);
  line-height: 1.6;
} 