@import url("font.css?v=1.1");
@import url("scheme.css?v=1.1");
@import url("menu.css?v=1.1");
@import url("footer.css?v=1.1");
@import url("module.css?v=1.1");

* {
    box-sizing: border-box;
    position: relative;
}

a {
    text-decoration: none;
}

a, a > i, a > font, button, button > i, button > font {
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: color 0.2s ease;
}

a.is-hovered, button.is-hovered, input.is-hovered {
    color: black;
  }

html {
    scroll-behavior: smooth;
}

.menu-empty {
    padding-top: 80px;
}

body.fixed {
    overflow: hidden;
}

html, body {
    margin: 0;
    padding: 0;
    background-color: white;
    overflow-x: hidden;
}

input[type="text"], input[type="email"], textarea {
  cursor: text!important;
  z-index: 99999;
}

* {
    cursor: none!important;
}

h3 {
  font-size: 20px;
}

p, li {
  font-size: 16px;
}

body.no-scroll {
  overflow: hidden!important;
  height: 100vh!important;
}

/* Hlavní kruh */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 21px;
    height: 21px;
    border: 1px solid white;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: background 0.2s ease, transform 0.2s ease;
    mix-blend-mode: difference;
  }
  
  /* Středový bod */
  .cursor::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
  }

  .cursor.is-hover {
    transform: translate(-50%, -50%) scale(2);
    background: white;
  }

  .cursor.is-hover::after {
    display: none;
  }

@media (pointer: coarse) {
    body {
      cursor: auto;
    }
    .cursor {
      display: none;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .cursor {
      display: none;
    }
  }
  
  @supports (mix-blend-mode: difference) {
    .cursor.is-hover {
      mix-blend-mode: difference;
    }
  }
  
  