/*
 * Custom styles for Echo99
 *
 * This file overrides Bootstrap’s default primary colour to use a dark blue hue,
 * provides smooth scrolling and minor layout tweaks. Feel free to extend this
 * file with your own rules as the project evolves.
 */

/* Override Bootstrap primary colour palette */
:root {
  --bs-primary: #0d47a1;
  --bs-primary-rgb: 13, 71, 161;
}

/* Ensure smooth scrolling when clicking nav links */
html {
  scroll-behavior: smooth;
}

/* Optional: adjust card hover effect */
.card:hover {
  transform: translateY(-3px);
  transition: transform 0.2s ease-in-out;
}

/* Style for the hero image to ensure it doesn’t exceed its container */
img.img-fluid {
  max-height: 400px;
  object-fit: cover;
}