/* Hero (Earth Loop) styly - pouziva se jen na hlavni strance */
/* Bez diakritiky v komentarich */

  html, body { overflow: hidden; height: 100%; background: #000; }
  body.has-hero .site-footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  body.has-hero .site-footer .links {
    margin-top: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 4px;
  }
  body.has-hero .site-footer .links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    font-size: inherit;
  }
  #scene { position: fixed; top: 0; left: 0; width: 100%; height: 100%; display: block; cursor: grab; touch-action: none; }
  #scene:active { cursor: grabbing; }

  /* ---- Volitelny hero text (klidne cely blok smaz) ---- */
  .overlay {
    position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 2;
    display: flex; flex-direction: column;
    align-items: center; justify-content: flex-start;
    padding-top: 24vh; text-align: center;
    pointer-events: none;
    font-family: "Helvetica Neue", Arial, sans-serif;
    color: #fff;
  }
  .pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 16px; border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    font-size: 13px; letter-spacing: 0.02em;
  }
  .pill::before {
    content: ""; width: 7px; height: 7px; border-radius: 50%;
    background: #5b5bff; box-shadow: 0 0 10px #5b5bff;
  }
  .logo { margin-top: 26px; }
  .logo .logo-svg { display: block; width: clamp(220px, 34vw, 440px); height: auto; }
  .links {
    margin-top: 18px; display: flex; flex-direction: column;
    align-items: center; gap: 8px;
  }
  .links a {
    pointer-events: auto; cursor: pointer;
    color: #fff; text-decoration: none;
    font-size: 16px; letter-spacing: 0.02em; opacity: 0.85;
  }
  .links a:hover { opacity: 1; text-decoration: underline; }
  .links .tagline {
    margin-top: 6px; font-size: 15px; color: rgba(255,255,255,0.62);
  }
  /* ---- konec volitelneho overlay ---- */
