@charset "utf-8";
/* CSS Document */

/* Soft drop shadow under the sticky navbar */
.navbar.sticky-top {
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}


/* Fade‑in effect when the navbar becomes sticky */
.navbar {
  transition: box-shadow 0.3s ease, background-color 0.3s ease, opacity 0.4s ease;
  opacity: 0.95;
}

.navbar.scrolled {
  opacity: 1;
}



/* Make all navbar links fully white */
.navbar-dark .navbar-nav .nav-link {
  color: #ffffff !important;
  font-size: 1.05rem;          /* slightly larger */
  padding: 0.75rem 1rem;       /* more tappable */
}

/* Hover effect: REMAX red + underline */
.navbar-dark .navbar-nav .nav-link:hover {
  color: #DC1C2E !important;   /* REMAX red */
  text-decoration: underline;
}

/* Active link stays white but bold */
.navbar-dark .navbar-nav .nav-link.active {
  color: #ffffff !important;
  font-weight: 600;
}

/* Dropdown items */
.dropdown-menu .dropdown-item:hover {
  background-color: #0043ff;   /* REMAX blue */
  color: #ffffff !important;
}








.hero-desktop img {
  border-bottom: 6px solid #DC1C2E !important;
}

