/* Minimal custom CSS to complement Bootstrap 5.3 */

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

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

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

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

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

.img-fluid:hover {
  transform: scale(1.03);
}

/* Create subtle highlight effect for text sections */
.card {
  border-color: var(--brand-primary);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

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