/* Home Carousel Styles */

/* Rotating Carousel Styles */
#rotating-text {
  transition: all 0.5s ease-in-out;
  display: inline-block;
  font-weight: 900;
  padding: 0.25rem 0.5rem;
  transform: scaleY(1.3);
  text-shadow: 
    0.3px 0.3px 0.5px rgba(0, 0, 0, 0.6),
    -0.3px -0.3px 0.5px rgba(0, 0, 0, 0.6),
    0.3px -0.3px 0.5px rgba(0, 0, 0, 0.6),
    -0.3px 0.3px 0.5px rgba(0, 0, 0, 0.6),
    0 0.3px 0.5px rgba(0, 0, 0, 0.6),
    0 -0.3px 0.5px rgba(0, 0, 0, 0.6),
    0.3px 0 0.5px rgba(0, 0, 0, 0.6),
    -0.3px 0 0.5px rgba(0, 0, 0, 0.6);
  letter-spacing: 0.1em;
}

/* Enhanced bold colors for rotating text - matching image content */
#rotating-text.text-neutral {
  color: #4e4eba !important; /* Custom purple for chronic illness, stress */
}

#rotating-text.text-error {
  color: #4b6ca3 !important; /* Custom blue for anxiety, heart disease, hypertension */
}

#rotating-text.text-info {
  color: #3e80a3 !important; /* Custom blue for depression */
}

#rotating-text.text-accent {
  color: #abe6e3 !important; /* Custom light teal for asthma */
}

#rotating-text.text-warning {
  color: oklch(0.5 0.12 60) !important; /* Bold orange/yellow for diabetes, high cholesterol, obesity */
}

#image-carousel {
  width: 1000%; /* 10 images = 1000% width */
  display: flex;
  transition: transform 1s ease-in-out;
  overflow: hidden;
}

#image-carousel > div {
  width: 10%; /* 100% / 10 images = 10% each */
  flex-shrink: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#image-carousel img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Navigation dots removed - auto-rotate only */
