@charset "UTF-8";
/*
    app.scss
*/
/*
    base.scss
*/
/*
    variables.scss
*/
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #1a192b;
}

.App {
  background-image: url("/assets/void-empty.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  width: 100vw;
}

/*
    components.scss
*/
.canvas--main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* Ovaj je u prednjem planu */
}
.canvas--fog {
  position: absolute;
  opacity: 0.5;
  box-shadow: inset 0 0 10px 10px rgba(255, 255, 255, 0.1);
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2; /* Ovaj će biti ispod canvas--main ali iznad canvas--blocks */
}
.canvas--blocks {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0;
  margin: 0;
  z-index: 3; /* Postavljamo u pozadinu */
}
.canvas--market {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0;
  margin: 0;
  z-index: 8;
}

/*
    footer.scss
*/
.footer {
  position: fixed;
  bottom: 2vh;
  width: 80vw;
  padding: 1rem;
  text-align: right;
  z-index: 1;
  pointer-events: none;
  margin-left: 18vw;
}
.footer__text {
  color: #e0e0e0;
  text-decoration: none;
  margin: 0 10px;
  font-size: 16px;
  font-weight: bold;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

/*
    mixins.scss
*/
.block--active {
  z-index: 7;
}

/*
    sections.scss
*/
.section {
  position: relative;
  width: 60vw;
  height: 60vw;
  transform-style: preserve-3d;
  transition: transform 1s ease-in-out;
  z-index: 4;
}
.section__container {
  margin-top: 25vh;
}
.section__face {
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  backface-visibility: hidden;
}
.section__content {
  z-index: 1;
  margin: 5% 15%;
  transform-style: preserve-3d;
}
.section__content--centered {
  text-align: center;
}
.section__title {
  font-size: 56px;
  font-weight: bold;
  color: #e0e0e0;
  text-shadow: 0 0 10px rgba(127, 17, 224, 0.7);
  margin-bottom: 1rem;
  margin-top: 0;
  padding: 1rem;
  padding-top: 0;
}
.section__subtitle {
  font-size: 48px;
  color: #a3a3a3;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  margin-bottom: 2rem;
}
.section__footer {
  margin-top: 2rem;
  margin-bottom: 2rem;
  font-size: 18px;
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
  color: #a3a3a3;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.section__button {
  cursor: pointer;
  display: block;
  padding: 1rem 2rem;
  max-height: 50px;
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  background: none;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(90, 15, 200, 0.5), inset 0 2px 4px rgba(255, 255, 255, 0.2);
  transform: perspective(1000px) rotateX(15deg) translateZ(10px);
  transform: scale(1.5);
}
.section__button:hover {
  background: linear-gradient(145deg, #6b1de6, #4a12b8);
  transform: perspective(1000px) rotateX(5deg) translateZ(15px);
  box-shadow: 0 8px 20px rgba(107, 29, 230, 0.8), inset 0 3px 5px rgba(255, 255, 255, 0.3);
  transform: scale(1.6);
}
.section__button--back, .section__button--forward {
  padding: 1rem 0.5rem;
  z-index: 10;
}
.section__icon {
  display: block;
  width: 20px;
  height: auto;
  margin-left: 5px;
}
.section__list {
  margin: 1rem 0;
  list-style-type: none;
  padding: 0;
}
.section__list__item {
  color: #e0e0e0;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  font-size: 18px;
  margin: 4px 0;
}
.section__face--front {
  transform: rotateY(0deg) translateZ(30vw);
}
.section__face--back {
  transform: rotateY(180deg) translateZ(30vw);
}
.section__face--left {
  transform: rotateY(-90deg) translateZ(30vw);
}
.section__face--right {
  transform: rotateY(90deg) translateZ(30vw);
}
.section__face--top {
  transform: rotateX(90deg) translateZ(30vw);
}
.section__face--bottom {
  transform: rotateX(-90deg) translateZ(30vw);
}

/* ------------------------------------- */
/* Screen size                  */
/* ------------------------------------- */
/* LAPTOP  */
@media (max-width: 1366px) {
  .section__title {
    font-size: 48px;
  }
  .section__subtitle {
    font-size: 38px;
  }
  .section__footer {
    font-size: 16px;
  }
}
/* TABLET  */
@media (max-width: 768px) {
  .section__title {
    font-size: 36px;
  }
  .section__subtitle {
    font-size: 28px;
  }
  .section__footer {
    font-size: 14px;
  }
  .section__button {
    padding: 0.8rem 1.5rem;
    font-size: 16px;
  }
  .section__content {
    margin: 8% 10%;
  }
}
/* MOBILE */
@media (max-width: 480px) {
  .section__title {
    font-size: 28px;
  }
  .section__subtitle {
    font-size: 22px;
  }
  .section__footer {
    font-size: 12px;
  }
  .section__button {
    padding: 0.6rem 1rem;
    font-size: 14px;
  }
  .section__content {
    margin: 10% 5%;
  }
}
/*
    market.scss
*/
.market-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100vw;
  padding: 2rem;
  overflow: hidden;
  z-index: 5;
}

.market-grid {
  width: 60vw;
  height: 60vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.market-grid .market-block {
  transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
  opacity: 1;
}
.market-grid.scrolling-up .market-block {
  transform: translateY(-100px);
  opacity: 0;
}
.market-grid.scrolling-down .market-block {
  transform: translateY(100px);
  opacity: 0;
}
.market-grid .market-block.new {
  animation: slide-in 0.6s ease-in-out forwards;
}
.market-grid .market-block.old {
  animation: slide-out 0.6s ease-in-out forwards;
}

/* Animacija ulaska novih marketa */
@keyframes slide-in {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* Animacija izlaska starih marketa */
@keyframes slide-out {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-100px);
    opacity: 0;
  }
}
/*
    navigation.scss
*/
.navigation {
  position: fixed;
  top: 2vh;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.navigation--horizontal {
  width: 81vw;
  text-align: right;
  float: right;
  right: 1vw;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 6;
}
.navigation--vertical {
  left: 0;
  width: 15vw;
  height: 101vh;
  padding: 0;
  margin-left: 1vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  z-index: 6;
}
.navigation__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: right;
  align-items: end;
  width: 100%;
}
.navigation__list--vertical {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  margin-bottom: 5vh;
}
.navigation__item {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 2rem 0;
  align-items: center;
}
.navigation__link {
  color: #e0e0e0;
  text-decoration: none;
  margin: 0 10px;
  font-size: 16px;
  font-weight: bold;
  transition: color 0.3s ease;
  text-transform: uppercase;
  z-index: 9;
}
.navigation__link__icon {
  width: 24px;
  height: auto;
  transition: filter 0.3s ease;
}
.navigation__link__text {
  opacity: 0;
  display: none;
  transition: opacity 0.3s ease, visibility 0.3s ease display 0.3s ease;
}
.navigation__link--vertical {
  background-color: transparent;
  outline: none;
  border: 0;
  color: #d4bfff;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.navigation__link--vertical:hover {
  cursor: pointer;
  color: #fff;
  text-shadow: 0 0 5px #bb86fc, 0 0 10px #bb86fc, 0 0 15px #bb86fc;
  transform: translateX(5px);
  background-color: rgba(122, 111, 240, 0.1176470588);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  padding: 10px 30px;
  padding-left: 45px;
}
.navigation__link--vertical:hover .navigation__link__icon {
  filter: invert(96%) sepia(44%) saturate(0%) hue-rotate(287deg) brightness(103%) contrast(102%);
}
.navigation__link--vertical:hover .navigation__link__text {
  opacity: 1;
  display: block;
}
.navigation__link--vertical::before {
  content: "▶";
  position: absolute;
  left: 1rem;
  top: 12px;
  opacity: 0;
  font-size: 12px;
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
}
.navigation__link--vertical:hover::before {
  opacity: 1;
  transform: translateX(5px);
}

/*
    form.scss
*/
.form__search {
  padding: 10px 40px;
  padding-right: 15px;
  border: none;
  border-radius: 4px;
  background-color: #1a192b;
  color: #e0e0e0;
  font-size: 18px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
  margin: 0 4rem;
  margin-right: 250px;
}
.form__search__icon {
  position: absolute;
  right: 490px;
  margin-top: 10px;
}
.form__search:focus {
  transition: 0.3s ease;
  outline: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/*
    buttons.scss
*/
.button {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  background: linear-gradient(145deg, #5a0fc8, #400a9c);
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(90, 15, 200, 0.5), inset 0 2px 4px rgba(255, 255, 255, 0.2);
  transform: perspective(1000px) rotateX(15deg) translateZ(10px);
}
.button__text {
  flex-grow: 1;
  text-align: left;
}
.button:hover {
  background: linear-gradient(145deg, #6b1de6, #4a12b8);
  transform: perspective(1000px) rotateX(5deg) translateZ(10px);
  box-shadow: 0 8px 15px rgba(107, 29, 230, 0.7), inset 0 3px 5px rgba(255, 255, 255, 0.3);
}
.button__dropdown {
  position: absolute;
  right: 3rem;
  margin-top: 5px;
}
.button__dropdown__content {
  position: absolute;
  background: linear-gradient(145deg, #5a0fc8, #400a9c);
  border-radius: 3px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  padding: 10px;
  width: 261px;
  z-index: 1;
  margin-left: 31px;
  margin-top: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  display: block;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.button__dropdown__content.show {
  opacity: 1;
  transform: translateY(0);
}

/*
    slider.scss
*/
.slider {
  position: fixed;
  right: 20vw;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin-left: 2rem;
  padding: 1rem;
  z-index: 7;
}
.slider__button {
  z-index: 7;
  font-weight: bold;
  color: #ffffff;
  border-radius: 8px;
  padding: 10px;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  color: #ffffff;
  background: linear-gradient(145deg, #5a0fc8, #400a9c);
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(90, 15, 200, 0.5), inset 0 2px 4px rgba(255, 255, 255, 0.2);
  transform: perspective(1000px) rotateX(15deg) translateZ(10px);
}
.slider__button:hover {
  background: linear-gradient(145deg, #6b1de6, #4a12b8);
  transform: perspective(1000px) rotateX(5deg) translateZ(10px);
  box-shadow: 0 8px 15px rgba(107, 29, 230, 0.7), inset 0 3px 5px rgba(255, 255, 255, 0.3);
}
.slider__button:active {
  transform: translateY(2px);
}
.slider__button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/*
    interface.scss
*/
.interface {
  background-color: rgba(122, 111, 240, 0.1176470588);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  padding: 10px;
}

/*
    settings.scss
*/
.settings__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0;
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.settings__label {
  color: #fff;
  font-size: 1.2em;
  font-weight: 600;
}

.settings__switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.settings__switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.settings__slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #444;
  border-radius: 30px;
  transition: 0.4s;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.5);
}

.settings__slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  border-radius: 50%;
  transition: 0.4s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.settings__switch input:checked + .settings__slider {
  background-color: #7e00ff;
  box-shadow: 0 0 15px #7e00ff;
}

.settings__switch input:checked + .settings__slider:before {
  transform: translateX(30px);
  box-shadow: 0 0 10px rgba(126, 0, 255, 0.8);
}

/*
    icons 
*/
/*
    flex.scss
*/
.flex {
  display: flex;
  gap: 10px;
}
.flex--between {
  justify-content: space-between;
}

/*
    landing.scss
*/
/*
    feautures.scss
*/
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 3rem 2rem;
  background-color: #10101b;
}
.features__item {
  flex: 1 1 calc(33.33% - 2rem);
  max-width: 300px;
  background-color: #2c2a4a;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
.features__item:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}
.features__item__icon {
  font-size: 2rem;
  color: #7a6ff0;
  margin-bottom: 1rem;
}
.features__item__title {
  font-size: 1.5rem;
  color: #e0e0e0;
  margin-bottom: 0.5rem;
}
.features__item__description {
  font-size: 1rem;
  color: #a3a3a3;
}

/*
    hero.scss
*/
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-image: url("/assets/void-empty.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
.hero__content {
  z-index: 1;
  margin: 10% 20%;
  transform-style: preserve-3d; /* 3D omogućen */
}
.hero__title {
  font-size: 64px;
  font-weight: bold;
  color: #e0e0e0;
  text-shadow: 0 0 5px rgba(127, 17, 224, 0.582);
  margin-bottom: 1rem;
}
.hero__subtitle {
  font-size: 24px;
  color: #a3a3a3;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  margin-bottom: 2rem;
}
.hero__button {
  cursor: pointer;
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  background: linear-gradient(145deg, #5a0fc8, #400a9c);
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(90, 15, 200, 0.5), inset 0 2px 4px rgba(255, 255, 255, 0.2);
  transform: perspective(1000px) rotateX(15deg) translateZ(10px);
}
.hero__button:hover {
  background: linear-gradient(145deg, #6b1de6, #4a12b8);
  /* Kada hoveraš, još više se podiže prema korisniku */
  transform: perspective(1000px) rotateX(5deg) translateZ(10px);
  box-shadow: 0 8px 15px rgba(107, 29, 230, 0.7), inset 0 3px 5px rgba(255, 255, 255, 0.3);
}
.hero__footer {
  margin-top: 2rem;
  margin-bottom: 2rem;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
  color: #a3a3a3;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

/*
    layouts.scss
*/
.layout {
  z-index: 4;
}/*# sourceMappingURL=app.css.map */