/* Extracurriculars (Carousel) Section Styles */

.extracurriculars-text {
  text-align: center;
  margin: 40px auto 0;
  max-width: 800px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-primary);
}

.extracurriculars-text p {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.extracurriculars-text p:last-child {
  margin-bottom: 0;
}

.carousel-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
  width: 100%;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: visible;
}

.carousel {
  width: 100%;
  max-width: 900px;
  position: relative;
  overflow: visible;
  margin-bottom: 0;
}

.carousel-slide {
  display: none;
  width: 100%;
  height: auto;
  position: relative;
  overflow: visible;
}

.carousel-slide.active {
  display: block;
}

.carousel-image-container {
  position: relative;
  width: 100%;
  height: auto;
}

.carousel-slide img {
  width: 100%;
  max-width: 100%;
  max-height: 50vh;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  background: transparent;
}

.carousel-slide .carousel-caption {
  width: 100%;
  color: var(--text-primary);
  font-size: 1.1em;
  background: var(--bg-overlay-11);
  padding: 12px 30px;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 20px var(--shadow-darker);
  z-index: 3;
  font-weight: 500;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
  border: none;
  text-align: center;
  line-height: 1.4;
  white-space: normal;
  margin: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  position: relative;
  z-index: 3;
  border: none;
  box-shadow: none;
  background: none;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray-medium);
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: 2px solid var(--border-light);
}

.carousel-dot.active {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
}

@media (max-width: 1000px) {
  .carousel {
    max-width: 98vw;
  }
  .carousel-slide img {
    max-height: 35vh;
  }
  .carousel-slide .carousel-caption {
    font-size: 1em;
    padding: 10px 20px;
  }
}

@media (max-width: 768px) {
  .carousel {
    max-width: 95vw;
  }
  .carousel-slide img {
    max-height: 30vh;
  }
  .carousel-slide .carousel-caption {
    font-size: 0.9em;
    padding: 8px 15px;
  }
  .carousel-dots {
    margin-top: 15px;
  }
}

@media (max-width: 480px) {
  .carousel {
    max-width: 92vw;
  }
  .carousel-slide img {
    max-height: 25vh;
  }
  .carousel-slide .carousel-caption {
    font-size: 0.8em;
    padding: 6px 12px;
  }
  .carousel-dots {
    margin-top: 12px;
    gap: 8px;
  }
  .carousel-dot {
    width: 10px;
    height: 10px;
  }
}

/* Remove all arrow styles */
.carousel-arrow {
  display: none;
}

 