:root {
  color-scheme: dark;
}

html {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica Neue, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

.font-monoed {
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.glass {
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.04);
}

.logo {
  width: 120px;
}

.icon {
  height: 18px;
  width: auto;
}

.hero-text {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes neon-flicker {
  0%, 3%, 5%, 42%, 44%, 100% {
    opacity: 1;
  }
  2%, 4% {
    opacity: 0.15;
  }
  43% {
    opacity: 0.3;
  }
  70% {
    opacity: 0.9;
  }
  71% {
    opacity: 0.2;
  }
  72% {
    opacity: 1;
  }
}

.neon-flicker {
  animation: neon-flicker 0.01s infinite ease-in-out;
  /* lekka poświata neonu */
  filter: drop-shadow(0 0 1px #000000) drop-shadow(0 0 8px rgb(92, 92, 92)) drop-shadow(0 0 8px rgba(255, 0, 0, 0.49));
}

/* Carousel styles */
.carousel-container {
  height: 400px;
  width: 100%;
}

@media (min-width: 768px) {
  .carousel-container {
    height: 600px;
  }
}

@media (min-width: 1024px) {
  .carousel-container {
    height: 700px;
  }
}

.carousel-item {
  display: none;
  transition: opacity 0.5s ease-in-out;
  width: 100%;
  height: 100%;
}

.carousel-item.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%);
}

.carousel-dot.active {
  width: 1.5rem;
  background-color: #dc2626;
}
