/* Accessibility Fixes for Gardynscape */

/* Fix touch target sizes for carousel dots - minimum 48x48px */
.owl-dots button.owl-dot {
  width: 48px !important;
  height: 48px !important;
  margin: 2px !important;
  padding: 16px !important;
  position: relative;
  background: transparent !important;
}

/* Visual dot inside larger touch target */
.owl-dots button.owl-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.dark-scheme .owl-dots button.owl-dot::after,
.text-light .owl-dots button.owl-dot::after {
  background: rgba(255, 255, 255, 0.2);
}

.owl-dots button.owl-dot.active::after {
  width: 12px;
  height: 12px;
  background: var(--primary-color, #739957);
}

.dark-scheme .owl-dots button.owl-dot.active::after,
.text-light .owl-dots button.owl-dot.active::after {
  background: rgba(255, 255, 255, 0.8);
}

/* Improve contrast for "Years of Experience" text */
.fw-500.text-uppercase.lh-1-5.fs-12 {
  color: #ffffff !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Improve contrast for experience badge */
.bg-color-2 .fs-60 {
  color: #ffffff !important;
}

/* Ensure proper heading sizes for h3 elements */
h3 {
  font-size: 1.5rem;
  font-weight: 600;
}
