/* Minimal custom CSS to complement Bootstrap 5.3 */

/* Brand color definitions */
:root {
  --brand-primary: #4F8EB6;
  --brand-primary-light: #ebf7ff;
}

/* Card styling enhancements */
.feature-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-color: var(--brand-primary);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-header.bg-primary-light {
  background-color: var(--brand-primary-light);
}

.text-primary {
  color: var(--brand-primary) !important;
}

/* Price button hover effect */
.price-button {
  transition: all 0.3s ease;
}

.price-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Feature navigation button styling */
.feature-nav-btn {
  white-space: nowrap;
}

/* Improve image presentation */
.img-fluid.rounded.shadow-sm {
  transition: transform 0.3s ease;
}

.img-fluid.rounded.shadow-sm:hover {
  transform: scale(1.05);
}

/* For initial animations if jQuery is available */
.feature-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Bootstrap adjustments */
@media (max-width: 767px) {
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
}
