/* Minimal custom CSS to complement Bootstrap 5.3 */

/* Brand color definitions */
:root {
  --brand-primary: #0066cc;
  --brand-primary-light: #ebf7ff;
  --brand-danger: #dc3545;
}

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

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

/* 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);
}

/* For initial animations if using jQuery */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Mobile optimization */
@media (max-width: 767.98px) {
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .card-header h3 {
    font-size: 1.1rem;
  }
}
