/* Custom enhancements for boat covers page */
.text-justify {
  text-align: justify;
}

/* Smooth transitions for interactive elements */
.card, .btn {
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-2px);
}

/* Brand color customizations */
:root {
  --bs-primary: #0066cc;
  --bs-primary-rgb: 0, 102, 204;
}

/* Ensure images are responsive */
.img-fluid {
  max-width: 100%;
  height: auto;
}

/* Enhanced link styling */
a.text-primary:hover {
  text-decoration: underline !important;
}

/* Custom alert styling */
.alert-info {
  background-color: #f8f9fa !important;
  border-left: 4px solid var(--bs-primary);
}

/* Sticky sidebar enhancement */
@media (min-width: 992px) {
  .sticky-top {
    position: sticky;
    top: 20px;
    z-index: 1020;
  }
}
