/* ==========================================================================
   Owl Carousel Theme Overrides (White & Blue Minimalist)
   ========================================================================== */

/* Ensure Owl Carousel nav and dots are centered and clear */
.owl-theme .owl-dots,
.owl-theme .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

/* Navigation Buttons Container */
.owl-theme .owl-nav {
  margin-top: 10px;
}

/* Navigation Button Styles */
.owl-theme .owl-nav [class*=owl-] {
  color: var(--color-white);               /* White icon/text */
  font-size: 1rem;                         /* Consistent font size */
  margin: 0 0.25rem;                       /* Smaller horizontal spacing */
  padding: 0.4rem 0.75rem;                 /* Tighter padding */
  background: var(--color-blue-dark);      /* Dark blue background */
  display: inline-block;
  cursor: pointer;
  border-radius: 0.35rem;                  /* Slightly rounded corners */
  transition: background 0.3s ease, color 0.3s ease;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: var(--color-blue-light);     /* Light blue on hover */
  color: var(--color-white);
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

/* If navigation is disabled, add spacing before dots */
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

/* ---------------------------------------------------
   Dots (Pagination) Styles
---------------------------------------------------- */
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  margin: 0 0.25rem;                       /* Horizontal spacing between dots */
}

.owl-theme .owl-dots .owl-dot span {
  width: 0.75rem;                          /* 12px */
  height: 0.75rem;                         /* 12px */
  margin: 0.4rem 0.5rem;                   /* Vertical & horizontal margins */
  background: var(--color-gray-medium);    /* Light gray for inactive */
  display: block;
  -webkit-backface-visibility: visible;
  transition: background 0.3s ease, opacity 0.2s ease;
  border-radius: 50%;                      /* Perfect circle */
  opacity: 0.8;                            /* Slightly translucent when inactive */
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--color-blue-dark);      /* Dark blue for active/hover */
  opacity: 1;                              /* Fully opaque for active/hover */
}
