/* Minimal custom CSS to complement Bootstrap 5.3 */

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

/* Step number styling */
.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-weight: bold;
  font-size: 16px;
}

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

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

/* Step navigation button styling */
.step-nav-btn {
  min-width: 80px;
}

/* Custom text colors */
/* .text-primary {
  color: var(--brand-primary) !important;
}

.bg-primary {
  background-color: var(--brand-primary) !important;
} */

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

/* For scrolling animations (if using jQuery) */
.installation-step {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.installation-step.visible {
  opacity: 1;
  transform: translateY(0);
}

/* On mobile, reduce font sizes */
@media (max-width: 767px) {
  h1 {
    font-size: 1.8rem;
  }
  
  .card-header h3 {
    font-size: 1.1rem;
  }
}

/* Add a highlight effect when step is targeted by URL hash */
.installation-step:target {
  animation: highlight-step 2s ease;
}

@keyframes highlight-step {
  0% { background-color: rgba(79, 142, 182, 0.2); }
  100% { background-color: transparent; }
}
