/**
 * Homepage Specific Styles
 * Amphibious 2.0
 */

/* Demo Section */
.aiab-demo-section {
  padding: 2rem 0;
  margin: 4rem 0;
  border-bottom: 1px solid #e0e0e0;
}

.aiab-demo-section:last-child {
  border-bottom: none;
}

/* Feature Cards */
.aiab-feature-card {
  background: #f8f9fa;
  padding: 1.5rem;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  height: 100%;
  box-sizing: border-box;
}

.aiab-feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.aiab-feature-card h4 {
  margin-top: 0;
  color: #2c3e50;
}

/* Demo Grid */
.aiab-demo-grid {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
  padding: 1rem;
  text-align: center;
  border-radius: 4px;
  margin: 0.25rem 0;
}

/* Hero Section */
.aiab-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
  padding: 5rem 0;
  text-align: center;
}

.aiab-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 300;
  color: white;
}

.aiab-hero p {
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 3rem auto;
  opacity: 0.95;
  color: white;
}

/* Hero Stats */
.aiab-hero .aiab-stats {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  margin-top: 3rem;
  justify-content: center;
}

.aiab-hero .aiab-stats li a,
.aiab-hero .aiab-stats li .aiab-stat-value {
  color: white;
  font-size: 2.5rem;
}

.aiab-hero .aiab-stats li span,
.aiab-hero .aiab-stats li .aiab-stat-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
}

.aiab-hero .aiab-stats li {
  border-right-color: rgba(255, 255, 255, 0.2);
}

/* Section Headers */
.aiab-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.aiab-section-header h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.aiab-section-header p {
  font-size: 1.125rem;
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto;
}

/* Updates Section */
.aiab-updates-section {
  background: #f8f9fa;
  padding: 4rem 0;
  margin-top: 3rem;
}

/* CTA Section */
.aiab-cta-section {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
  margin-top: 4rem;
}

.aiab-cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.aiab-cta-section p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* CTA Buttons */
.aiab-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.aiab-cta-buttons a {
  padding: 0.75rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s;
}

.aiab-cta-buttons a:hover {
  transform: translateY(-2px);
}

.aiab-btn-primary {
  background: white;
  color: var(--color-primary);
}

.aiab-btn-secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
}
