/* Minimal custom CSS to complement Bootstrap 5.3 */

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

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

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

.border-primary {
  border-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);
}

/* List group item hover effect */
.list-group-item {
  transition: all 0.3s ease;
}

.list-group-item:hover {
  background-color: rgba(0, 102, 204, 0.05);
}

/* For animations when elements come into view */
.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 optimizations */
@media (max-width: 767.98px) {
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .card-header h3 {
    font-size: 1.1rem;
  }
}
