/* Body offset for fixed navbar */
body {
  padding-top: 56px;
}

.navbar.bg-dark{
  background-color: #244f9a !important;
}

.navbar.bg-dark .nav-item .nav-link {
  color: #f9b302 !important;
}

/* Logo placeholder */
.logo-placeholder {
  width: 120px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #ffffff80;
  border-radius: 3px;
  user-select: none;
}

.logo-placeholder img{
  width: auto;
  height: 100%;
}

/* Banner — hidden on mobile and tablet, visible on desktop only */
.banner-section {
  display: none;
}

@media (min-width: 992px) {
  .banner-section {
    display: block;
  }
}
.banner-section{
  border-top: #f9b302 4px solid !important;
}
/* Banner placeholder */
.banner-placeholder {
  width: 100%;
  min-height: 300px;
  background-color: #244f9a !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  border-top: #f9b302 4px solid !important;
}

.banner-placeholder img {
  max-width: 200px;
  max-height: 100%;
  object-fit: contain;
}

/* Footer */
footer.bg-light {
  background-color: #f9b302 !important;
  color: #244f9a !important;
}