/* === PRO TEAM BANNER SECTION === */
.pro-team-section {
  text-align: center;
  padding: 40px 0;
  background: var(--color-section-light);
}

.pro-team-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.pro-team-image {
  max-width: 100%;
  height: auto;
  display: block;
}

/* === TEAM PICTURES SECTION === */

.team-pictures-section {
  background: var(--color-section-light);
  text-align: center;
  padding: 60px 0;
}

.team-pictures-title {
  color: var(--color-body-bg);
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* === SPONSORS SECTION === */
.sponsors-section {
  background: var(--color-section-light);
  padding: 40px 0 60px;
  color: black;
}

/* === TIER 1 SPONSOR SECTION === */
.main-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background Image styling */
.background-image {
    background-image: url('/media/sponsor-background-tier1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 50vh;

 /*   position: absolute;
    max-width: 100%; height: 500px;
    display: block;

  

    filter: brightness(0.5);  Darken background 
    z-index: -1; */
}

/* Carousel Column */
.carousel-column {
    flex: 1;
    overflow: hidden;
    padding-right: 20px;
}

.carousel-container {
    overflow: hidden;
    width: 100%;
}

.carousel-slide-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.card {
    flex: 0 0 33.333%; /* Show 3 images at a time */
    padding: 5px;
    box-sizing: border-box;
}

.card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.dot {
    height: 12px; width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active { background-color: #333; }

/* Text Column */
.text-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 20px;
}

button {
    padding: 10px 20px;
    background: #007bff;
    color: white; border: none;
    border-radius: 5px; cursor: pointer;
    width: 150px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container { flex-direction: column; }
    .card { flex: 0 0 100%; } /* Show 1 image on mobile */
    .carousel-column, .text-column { padding: 10px 0; }
}