.navbar .btn-outline-light:hover {
  color: var(--bs-dark);
}

.navbar {
  padding: 1rem 0;
  transition: background-color 0.3s ease;
}

.navbar-sticky {
  background-color: rgba(112, 174, 228, 0.95);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.navbar-toggler-active {
  background-color: rgba(112, 174, 228, 0.95) !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

@keyframes bgFadeIn {
  to {
    opacity: 1;
  }
}
.landing-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(204, 238, 255, 0.5), rgba(253, 253, 253, 0.5));
  z-index: 1;
  pointer-events: none;
}

.landing .display-container {
  z-index: 10;
  flex-grow: 1; /* Let the content expand to take available space */
}

.frame-decoration {
  display: block;
  width: 100%;
  position: relative;
  z-index: 10;
  margin-top: auto; /* This pushes the SVG to the bottom of the flex container */
}

.carousel-container {
  width: 100%;
  max-width: 100%;
}

.carousel-item img {
  height: auto;
  max-height: 500px; /* or whatever fits your layout */
}

.gallery-img {
  height: 200px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.hover-zoom:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important;
}

.gallery-item {
  transition: all 0.4s ease;
}

.filter-btn.active {
  background-color: var(--bs-primary);
  color: white;
}

.bg-primary {
  background-color: var(--bs-primary) !important;
}

.btn-success {
  border: none;
  box-shadow: 0 4px 15px rgba(255, 97, 166, 0.4);
}

.text-success:hover {
  color: #e65292 !important;
}

a.social-link:hover {
  color: #ff61a6 !important;
}

.bg-success-faint {
  background-color: #e6f4fe;
}

a.credit-link {
  color: #fff;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.25s ease, font-weight 0.25s ease;
}

a.credit-link:hover,
a.credit-link:focus {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  outline: none;
}

@media (min-width: 991.98px) {
  .jumbo {
    margin-top: -50px;
    position: relative;
    z-index: 11;
  }
}
@media (max-width: 991.98px) {
  .carousel-container {
    max-height: 400px;
    padding-left: 20%;
    padding-right: 20%;
  }
  .carousel-item,
  .carousel-item img {
    max-height: 400px;
  }
}
