<style>
.carousel-caption p {
	color: #eee !important;
}

.navbar-brand b {
	font-size: 1.6rem;		/* increase text size */
	font-weight: 700;		/* slightly bold */
	transition: text-shadow 0.3s ease;
}

.navbar-brand:hover b {
	text-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
}

/* Dark hover for dropdown items */
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
	background-color: var(--bs-primary) !important; /* dark grey or use #000 for full black */
	color: #fff !important;
}

/* --- Section Banner Enhancements --- */
.section-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
  color: #fff;
  text-align: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.section-banner .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
  padding: 1rem;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-banner.show .overlay {
  opacity: 1;
  transform: translateY(0);
}

.section-banner h2 {
  font-size: 1.75rem;
  font-weight: 600;
}

.section-banner p {
  font-size: 0.95rem;
  margin: 0.2rem 0 0;
  opacity: 0.9;
}

/* Adjust overlay spacing for short banners */
.section-banner {
  height: 160px; /* default height for compact sections */
}

.section-banner .overlay {
  padding: 0.5rem 1rem;
}

.section-banner h2 {
  font-size: 1.4rem;
}

.section-banner p {
  font-size: 0.85rem;
}

/* --- Fade-in trigger on scroll --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}


</style>