.btn-success {
  background-color: #108C43;
  border-color: #108C43;
}

.bd-blur {
  backdrop-filter: blur(5px);
  width: max-content;
  max-width: fit-content;
}

.carousel-img {
  height: 80vh; /* or any height you prefer */
  object-fit: cover;
  object-position: center;
}
@media (max-width: 1400px) {
  .carousel-img {
    height: 60vh; /* Adjust height for smaller screens */
  }
}
@media (max-width: 768px) {
  .carousel-img {
    height: 40vh; /* Adjust height for smaller screens */
  }
}

.text-united-green {
  color: #108C43;
}

.team-member {
    transition: transform 0.3s ease-in-out;
}

.team-member:hover {
    transform: translateY(-10px);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #f8f9fa;
    color: #808080;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #108C43;
    color: white;
    transform: translateY(-3px);
}

.team-member img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #f8f9fa;
    transition: transform 0.3s ease;
}

.team-member:hover img {
    transform: scale(1.05);
}

.section-title::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background-color: #108C43;
    margin: 20px auto;
}

/* Sponsor Section Styles */
.partner-wrapper {
  background: #fff;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 1.5rem;
}

.partner-wrapper img {
  object-fit: contain;
}

.club-sponsor-img {
  max-height: 400px;
  object-fit: contain;
}

.card-title.text-united-green,
.text-united-green {
  color: #1e7d3a !important;
}

.dropdown-menu .dropdown-item.active,
.dropdown-menu .dropdown-item:active {
  background-color: #108C43 !important; /* United green */
  color: #fff !important;
}

.affiliate-img {
  background: #fff;
  border-radius: 6px;
  margin: 0;
  /* Default (mobile): bigger */
  height: 64px;
}
.affiliate-img-small {
  background: #fff;
  border-radius: 6px;
  margin: 0 auto;
  display: block;
  height: 32px;
}
@media (min-width: 576px) {
  .affiliate-img {
    height: 72px;
  }
  .affiliate-img-small {
    height: 28px;
  }
}

/* Footer social icon hover effect */
footer .nav a.text-muted {
  transition: color 0.2s, background 0.2s;
  border-radius: 50%;
}

footer .nav a.text-muted:hover,
footer .nav a.text-muted:focus {
  color: #108C43 !important;
  background: #f0fdf6;
}