@import url('https://fonts.googleapis.com/css2?family=MedievalSharp&display=swap');

/* GLOBAL STYLES
-------------------------------------------------- */
/* Padding below the footer and lighter body text */
.footer {
  z-index: 3;
}

.navbar {
  z-index: 3;
}

body {
  padding-top: 3rem;
  padding-bottom: 3rem;
  color: rgb(var(--bs-tertiary-color-rgb));
  overflow-x: hidden;
  position: relative;
  z-index: 1;
  /* treść nad gwiazdkami */
}

.stars-background {
  position: absolute;
  /* pełny ekran */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  /* kliknięcia przechodzą dalej */
  z-index: 0;
  /* tło */
}

.star {
  position: absolute;
  border-radius: 50%;
  opacity: 0.8;
  animation: twinkle 2s infinite alternate;
}

@keyframes twinkle {
  from {
    opacity: 0.3;
    transform: scale(1);
  }

  to {
    opacity: 1;
    transform: scale(1.3);
  }
}

.bg-body-tertiary {
  background-color: #1e0d39 !important;

  z-index: 3;
}

.bg-body-quaternary {
  background: radial-gradient(circle, #1e003e, #1e0d39, #110130) !important;

  z-index: 3;
}

.navbar .dropdown-menu {

  z-index: 10 !important;
}

.bg-body-fivery {
  background: linear-gradient(to right, #000000, #1e0d39, #110130) !important;

  z-index: 3;
}

.bg-body-sixary {
  background: linear-gradient(to top, #0a0015, #1e0d39, #110130) !important;

  z-index: 3;
}

.bg-body-sevenary {
  background: rgb(84, 2, 122, 1) !important;
  z-index: 3;
}

.btn-primary {
  background-color: #1e0d39;
  /* tło przycisku */
  color: #ffffff;
  /* kolor tekstu */
  border: 1px solid #1e0d39;
  /* obramowanie */
  padding: 0.375rem 0.75rem;
  /* bootstrapowe paddingi */
  font-weight: 400;
  border-radius: 0.375rem;
  /* zaokrąglenie jak w bootstrapie */
  cursor: pointer;
}

.btn-triary {
  background-color: #3a1a6f;
  /* tło przycisku */
  color: #ffffff;
  /* kolor tekstu */
  border: 1px solid #1e0d39;
  /* obramowanie */
  padding: 0.375rem 0.75rem;
  /* bootstrapowe paddingi */
  font-weight: 400;
  border-radius: 0.375rem;
  /* zaokrąglenie jak w bootstrapie */
  cursor: pointer;
}

.btn-triary:hover {
  background-color: #30165b;
  /* tło przycisku */
  color: #ffffff;
  /* kolor tekstu */
  border: 1px solid #1e0d39;
  /* obramowanie */
  padding: 0.375rem 0.75rem;
  /* bootstrapowe paddingi */
  font-weight: 400;
  border-radius: 0.375rem;
  /* zaokrąglenie jak w bootstrapie */
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #16092b;
  border-color: #16092b;
}

/* Zmieniamy obramowanie i cień na pomarańczowy, gdy pole jest zaznaczone */
.form-control:focus {
  border-color: rgba(130, 38, 204, 1) !important;
  /* Pomarańczowy kolor obramowania */
  box-shadow: 0 0 0 0.10rem rgba(71, 15, 137, 0.5) !important;
  /* Pomarańczowy cień */
  outline: none !important;
  /* Usuwa domyślny outline */
}

.form-select {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}

.product-description {
  overflow-y: auto;
}

.form-control:hover {
  border-color: rgba(130, 38, 204, 0.8) !important;
  /* Pomarańczowy kolor obramowania */
  box-shadow: 0 0 0 0.10rem rgba(71, 15, 137, 0.5) !important;
  /* Pomarańczowy cień */
  outline: none !important;
  /* Usuwa domyślny outline */
}

.alert {
  z-index: 1050;
  /* Upewnij się, że z-index jest wyższy niż inne elementy */
  position: relative;
  /* Musisz ustawić pozycjonowanie, aby z-index zadziałał */
}

/* Pomarańczowy kolor obramowania przy fokusie */
.form-select:focus {
  border-color: rgba(130, 38, 204, 1) !important;
  /* Pomarańczowy kolor obramowania */
  box-shadow: 0 0 0 0.10rem rgba(71, 15, 137, 0.5) !important;
  /* Pomarańczowy cień */

  outline: none !important;
  /* Usuwa domyślny outline */
}

/* Pomarańczowy kolor obramowania przy najeżdżaniu */
.form-select:hover {
  border-color: rgba(130, 38, 204, 1) !important;
  /* Pomarańczowe obramowanie */
  box-shadow: 0 0 0 0.10rem rgba(71, 15, 137, 0.5) !important;
  /* Pomarańczowy cień */

  outline: none !important;
  /* Usuwa domyślny outline */
}

/* Zmiana koloru zaznaczonego tekstu w całej stronie */
::selection {
  background-color: rgba(71, 15, 137, 0.8) !important;
  /* Pomarańczowe tło */
  color: white;
  /* Kolor tekstu */
}

/* Dla Firefoxa */
::-moz-selection {
  background-color: rgba(71, 15, 137, 0.8) !important;
  /* Pomarańczowe tło */
  color: white;
  /* Kolor tekstu */
}


.bd-placeholder-img {
  font-size: 1.125rem;
  text-anchor: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

@media (min-width: 768px) {
  .bd-placeholder-img-lg {
    font-size: 3.5rem;
  }
}

.b-example-divider {
  width: 100%;
  height: 3rem;
  background-color: rgba(0, 0, 0, .1);
  border: solid rgba(0, 0, 0, .15);
  border-width: 1px 0;
  box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
}

.b-example-vr {
  flex-shrink: 0;
  width: 1.5rem;
  height: 100vh;
}

.bi {
  vertical-align: -.125em;
  fill: currentColor;
}

.nav-scroller {
  position: relative;
  z-index: 2;
  height: 2.75rem;
  overflow-y: hidden;
}

.nav-scroller .nav {
  display: flex;
  flex-wrap: nowrap;
  padding-bottom: 1rem;
  margin-top: -1px;
  overflow-x: auto;
  text-align: center;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.btn-bd-primary {
  --bd-violet-bg: #712cf9;
  --bd-violet-rgb: 112.520718, 44.062154, 249.437846;

  --bs-btn-font-weight: 600;
  --bs-btn-color: var(--bs-white);
  --bs-btn-bg: var(--bd-violet-bg);
  --bs-btn-border-color: var(--bd-violet-bg);
  --bs-btn-hover-color: var(--bs-white);
  --bs-btn-hover-bg: #6528e0;
  --bs-btn-hover-border-color: #6528e0;
  --bs-btn-focus-shadow-rgb: var(--bd-violet-rgb);
  --bs-btn-active-color: var(--bs-btn-hover-color);
  --bs-btn-active-bg: #5a23c8;
  --bs-btn-active-border-color: #5a23c8;
}

.bd-mode-toggle {
  z-index: 1500;
}

.bd-mode-toggle .dropdown-menu .active .bi {
  display: block !important;
}


/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */

body {
  font-family: 'Cinzel Decorative', serif;
  margin: 0;
  padding: 0;
}

.categories {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  z-index: 1;
}

.categories h2 {
  margin-bottom: 24px;
  font-size: 24px;
}

.container {
  z-index: 1;
}

.circle-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  /* Odstęp między kółkami */
}

.circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  /* Upewnia się, że podkreślenie nie pojawia się podczas najechania */
  color: inherit;
  /* Dziedziczy kolor tekstu z rodzica, aby nie zmieniać koloru */

}

.circle {
  width: 100px;
  height: 100px;
  background-color: var(--bs-secondary-color);
  border-radius: 50%;
  /* Zaokrąglenie rogów, aby uzyskać kółko */
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  /* Kolor ikony i tekstu */
  transition: transform 0.3s ease;
  margin-bottom: 10px;

  z-index: 1;
}

.circle-item:hover .circle {
  transform: scale(1.1);
  /* Powiększa kółko o 10% */
}

.circle-item:hover .gradient-icon {
  background: rgb(105, 104, 104);
  -webkit-background-clip: text;
  /* Safari/Chrome */
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* standard */
  color: transparent;
  /* fallback */
}

.circle i {
  font-size: 50px;
  /* Rozmiar ikony */
  z-index: 1;
}

.circle-item p {
  margin: 10px 0 0;
  /* Odstęp między kółkiem a napisem */
  width: 100px;
  font-size: 14px;
  /* Rozmiar tekstu */
}

.gradient-icon {
  background: rgb(0, 0, 0, 0.7);
  -webkit-background-clip: text;
  /* Safari/Chrome */
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* standard */
  color: transparent;
  /* fallback */
}

.ring-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  /* Odstęp między kółkami */
}

.ring-item {
  display: flex;
  justify-content: center;
  /* Wyśrodkowanie kółka */
  align-items: center;
  /* Wyśrodkowanie kółka */
  text-decoration: none;
  /* Upewnia się, że podkreślenie nie pojawia się podczas najechania */
  color: inherit;
  /* Dziedziczy kolor tekstu z rodzica, aby nie zmieniać koloru */

  z-index: 1;
}

.ring {
  width: 30px;
  /* Zmniejszona szerokość kółka */
  height: 30px;
  /* Zmniejszona wysokość kółka */
  background-color: var(--bs-secondary-color);
  /* Domyślny kolor kółka */
  border-radius: 50%;
  /* Zaokrąglenie rogów, aby uzyskać kółko */
  display: flex;
  justify-content: center;
  /* Wyśrodkowanie ikony */
  align-items: center;
  /* Wyśrodkowanie ikony */
  color: white;
  /* Kolor ikony */
  transition: background-color 0.3s ease, transform 0.3s ease;
  /* Dodano przejście dla koloru */

  margin-left: 15px;
  margin-right: 15px;

  z-index: 1;
}

.ring-item:hover .ring {
  border-color: black;
  /* Powiększa kółko o 10% */
  font-size: scale(1.05);
  /* Zmniejszony rozmiar ikony */
  box-shadow: 0 0 0 .10rem rgba(255, 255, 255, .25);
}

.ring i {
  font-size: 20px;
  /* Zmniejszony rozmiar ikony */
}

.products-list {
  margin-top: 20px;
}

.recent-products {
  z-index: 1 !important;
}

.recent-products h2 {
  margin-bottom: 24px;
  text-align: center;
  font-size: 24px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;

  z-index: 1 !important;
}

.product-image {
  border-radius: 8px;
  padding: 5px;
  text-align: center;
  margin-top: 0.25rem;
  background-color: var(--bs-secondary-color);

  z-index: 1 !important;
  /* Kolor tła */
}

.product-card {
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(93, 2, 136, 0.2);
  padding: 5px;
  text-align: center;

  background: radial-gradient(circle, #1e003e, #1e0d39, #110130) !important;
  /* Kolor tła */

  z-index: 1 !important;
}

.product-card img {
  width: 300px;
  height: 300px;
  object-fit: contain;
  /* Przytnij obraz do kontenera, zachowując proporcje */
  border-radius: 8px;
  /* Opcjonalnie, jeśli chcesz zaokrąglić rogi obrazów */
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.4),
      rgba(0, 0, 0, 0.4),
      rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 0.9),
      rgba(0, 0, 0, 1)) !important;
}

.product-card h3 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 18px;
  margin: 10px 0;
}

a {
  color: var(--bs-secondary-color);
  /* Dziedziczy kolor tekstu z rodzica, aby nie zmieniać koloru */
  text-decoration: none;
  /* Usuwa podkreślenie z wszystkich linków */
}

.product-card:hover {
  transform: scale(1.05);
  /* Powiększa kółko o 10% */
}

.stars {
  font-size: 20px;
  color: #ffcc00;
  /* Kolor gwiazdek */
  margin: 5px 0 0;
}

.price {
  font-size: 15px;
  font-weight: bold;
  color: #333;
}

/* Carousel base class */
.carousel {
  /* margin-bottom: 4rem; */
  z-index: 1;
}

/* Since positioning the image, we need to help out the caption */
.carousel-caption {
  bottom: 8.5rem;
  z-index: 10;
}

.product-item {
  background-size: cover;
  /* Dopasowanie tła do kontenera */
  background-position: center;
  /* Wycentrowanie tła */
  position: relative;

  z-index: 1;
}

.product-item img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  /* Dopasowanie obrazu bez rozciągania */
  z-index: 1;
  /* Umieszczenie obrazu nad gradientem */
}

/* Declare heights because of positioning of img element */
.carousel-item {
  height: 32rem;
  background-size: cover;
  /* Dopasowanie tła do kontenera */
  background-position: center;
  /* Wycentrowanie tła */
  position: relative;

  z-index: 1;
}

.section-background {
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
  /* Kolor tekstu */
}

@media (max-width: 768px) {
  .section-background {
    height: auto;
    /* Automatyczna wysokość dla mniejszych ekranów */
  }
}

.carousel-item img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  /* Dopasowanie obrazu bez rozciągania */
  z-index: 1;
  /* Umieszczenie obrazu nad gradientem */
}

/* MARKETING CONTENT
-------------------------------------------------- */

/* Center align the text within the three columns below the carousel */
.marketing .col-lg-4 {
  margin-bottom: 1.5rem;
  text-align: center;

  z-index: 1;
}

/* rtl:begin:ignore */
.marketing .col-lg-4 p {
  margin-right: .75rem;
  margin-left: .75rem;

  z-index: 1;
}

/* rtl:end:ignore */

/* Featurettes
------------------------- */

.featurette-divider {
  margin: 5rem 0;
  color: #240051;
  z-index: 1;
  /* Space out the Bootstrap <hr> more */
}

.bg-black {
  z-index: 1;
}

/* Thin out the marketing headings */
/* rtl:begin:remove */
.featurette-heading {
  letter-spacing: -.05rem;
}

/* rtl:end:remove */

/* RESPONSIVE CSS
-------------------------------------------------- */

@media (min-width: 40em) {

  /* Bump up size of carousel content */
  .carousel-caption p {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    line-height: 1.4;
  }

  .featurette-heading {
    font-size: 50px;
  }
}

@media (min-width: 62em) {
  .featurette-heading {
    margin-top: 7rem;
  }
}

.step-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.step {
  text-align: center;
  flex: 1;
  position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 25%;
  right: 0;
  width: 85%;
  height: 2px;
  background-color: #ccc;
  z-index: -1;
  transform: translateX(50%);
}

.step-number {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgb(51, 51, 51);
  border-color: rgba(30, 13, 57, 0.5);
  border: 10px;
  color: white;
  line-height: 40px;
  font-weight: bold;
  margin: 0 auto 10px auto;
  z-index: 1;
  /* Numerki muszą być na wierzchu */
}

.step-title {
  font-size: 14px;
  color: white;
}

.nav-item .nav-link.active {
  background-color: rgb(84, 2, 122, 1) !important;
}

.step.active .step-number {
  background-color: rgb(84, 2, 122, 1);
  border-color: rgba(29, 2, 57, 0.5);
  border: 10px;
}

.step.back .step-number {
  background-color: rgb(71, 2, 105, 0.9);
  border-color: rgba(84, 2, 122, 0.7);

  border: 10px;
}

.step.active .step-title {
  font-weight: bold;
}

.card:hover {
  transform: scale(1.05);
  /* Powiększenie */
  filter: brightness(1.2);
  /* Rozjaśnienie */
  transition: transform 0.3s ease, filter 0.3s ease;
  /* Płynne przejścia */
}

.card-body {
  border-color: rgb(0, 0, 0, 1) !important;
}

.card {
  background: rgba(32, 14, 48, 0.7) !important;
  border-color: rgba(0, 0, 0, 0.7) !important;
  shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.bg-black.border {
  border-color: #000 !important;
  background-color: rgb(0, 0, 0, 0.8) !important;
}

.btn-outline-primary {
  color: #6231b0;
  border-color: #6231b0;
  font-weight: 600;
  background-color: transparent;
  transition: all 0.2s ease; /* płynniejsze przejścia */
}

.btn-outline-primary:hover {
  background-color: #6231b0;
  color: #fff;
  border-color: #6231b0;
}

.btn-outline-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(98, 49, 176, 0.2);
}

.btn-outline-primary:active {
  background-color: #4f2890; /* ciut ciemniejszy */
  border-color: #4f2890;
  color: #fff;
}

.btn-outline-primary:focus,
.btn-outline-primary:active,
.btn-outline-primary.active,
.show > .btn-outline-primary.dropdown-toggle {
  background-color: #6231b0 !important;
  border-color: #6231b0 !important;
  color: #fff !important;
  box-shadow: 0 0 0 0.25rem rgba(98, 49, 176, 0.2) !important;
}

