@import "tailwindcss";

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator:hover {
  background-color: rgba(255, 255, 255, 0.7);
  transform: scale(1.1);
}

.indicator.active {
  background-color: white;
  border-color: white;
}

:root {
  --red-primary: #a30100;
  --red-hover: #8f0e12;
}

.bg-red-primary {
  background-color: var(--red-primary) !important;
}

.bg-red-hover {
  background-color: var(--red-hover) !important;
}

.hover\:bg-red-hover:hover {
  background-color: var(--red-hover) !important;
}