/* index.css - Styles specific to the landing page */

/* Hero section */
.hero {
  text-align: center;
  padding: 32px 16px;
  margin-bottom: 24px;
}

.hero p {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 24px;
  color: var(--text);
}

/* Marketing card */
.marketing-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.marketing-card p {
  margin-bottom: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.marketing-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 12px;
  margin: 20px auto;
  display: block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Button styles */
.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
  margin: 4px 0;
}

.btn-blue {
  background: #2563eb;
  color: white;
  border: 1px solid #1d4ed8;
}

.btn-blue:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.btn-blue:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.2);
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .hero {
    padding: 24px 12px;
  }
  
  .hero p {
    font-size: 18px;
  }
  
  .marketing-card {
    padding: 16px;
  }
  
  /* Stack buttons vertically on mobile */
  .cta-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .btn-hero {
    width: 100%;
    margin: 0;
  }
}
