/* Custom styles for ClearRemit Landing Page */
body {
  font-family: "Inter", sans-serif;
}

/* Hero section enhancements */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.9) 0%,
    rgba(118, 75, 162, 0.9) 100%
  );
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

/* Card hover effects */
.card {
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* Workflow steps */
.workflow-step {
  padding: 2rem 1rem;
}

.step-number {
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Navigation enhancements */
.navbar-nav .nav-link {
  font-weight: 500;
  transition: color 0.2s ease-in-out;
}

.navbar-nav .nav-link:hover {
  color: #fff !important;
}

/* Button enhancements */
.btn {
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.2s ease-in-out;
}

.btn-primary {
  background: linear-gradient(45deg, #667eea, #764ba2);
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(45deg, #5a6fd8, #6a4190);
  transform: translateY(-1px);
}

/* Icon animations */
.feature-icon i {
  transition: transform 0.3s ease-in-out;
}

.card:hover .feature-icon i {
  transform: scale(1.1);
}

/* Code block styling */
pre {
  background: transparent !important;
  border: none !important;
  font-size: 0.85rem;
  line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-section {
    min-height: 70vh;
    padding: 3rem 0;
  }

  .display-4 {
    font-size: 2.5rem;
  }

  .workflow-step {
    margin-bottom: 2rem;
  }
}

/* Loading animation for better UX */
.hero-icon i {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Custom badge styling */
.badge {
  font-weight: 500;
  font-size: 0.875rem;
}

/* Footer enhancements */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* API endpoint cards */
.card .list-unstyled li {
  padding: 0.25rem 0;
  font-size: 0.875rem;
}

/* Environment status indicators */
.fas.fa-circle.text-success {
  color: #28a745 !important;
}

.fas.fa-circle.text-warning {
  color: #ffc107 !important;
}
