/* Minimal custom CSS for the Boating Fabrics 101 page */

/* Custom color for light primary background */
.border-primary-light {
  border-color: rgba(0, 102, 204, 0.3);
}

/* Ensure proper spacing for scroll anchor points */
.scroll-margin {
  scroll-margin-top: 80px;
}

/* Enhanced button styling */
.price-button {
  transition: all 0.3s ease;
}

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

/* Quick navigation button enhancements */
.card .btn-outline-primary {
  transition: all 0.3s ease;
}

.card .btn-outline-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Smooth animations for sections coming into view */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Image enhancements */
.card img {
  transition: transform 0.3s ease;
}

.card:hover img {
  transform: scale(1.02);
}
