.navbar-custom {
      background-color: #2d4c32;
    }
.navbar-custom .navbar-brand,
  .navbar-custom .nav-link {
      color: #fff;
    }
.navbar-custom .nav-link:hover {
      color: #e8edd4; 
    }
.navbar-nav .nav-link.active {
  background-color: #e8edd4;
  color: #2d4c32 !important;
  border-radius: 0.25rem;
}

.page-background-wrapper {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

.side-bg {
  position: fixed;
  top: 0;
  width: 200px;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 0;
  opacity: 0.6;
  pointer-events: none;
}

.left-bg {
  left: 0;
  background-image: url('/imgs/JP_Aviary-02.png');
}

.right-bg {
  right: 0;
  background-image: url('/imgs/JP_Aviary-03.png');
}

.content-wrapper {
  position: relative;
  z-index: 1;
  padding-top: 1rem;
}

.glass-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  padding: 2rem;
}

/* Mobile */
@media (max-width: 768px) {
  .side-bg {
    display: none !important;
  }

  .glass-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
  }
}

.framed-image {
  border: 4px solid #2d4c32;
  border-radius: 12px;
  padding: 4px;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.framed-image:hover {
  transform: scale(1.03);
}

.bird-card {
  max-width: 900px;
  margin: 2rem auto;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-bottom: 3rem;
  overflow: hidden;
}

.bird-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 1rem 0 0 1rem;
}

.card-text {
  padding: 2rem;
}

.badge-available {
  background-color: #2d4c32;
}

.badge-unavailable {
  background-color: #6c757d;
}

@media (max-width: 768px) {
  .bird-img {
    border-radius: 1rem 1rem 0 0 !important;
  }
}

a {
  color: #2d4c32;
  text-decoration: underline;
}

a:hover {
  color: #1e3423;
  text-decoration: none;
}

.adoption-card {
  color: #e8edd4;
  text-decoration: none;
}

.adoption-card:hover {
  color: #e8edd4;
  text-decoration: underline;
}