/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  height: 100%;
}

/* POZADÍ STRÁNKY */
body {
  background-image: url("logo 1.png"); /* PNG VE STEJNÉ SLOŽCE */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  display: flex;
  align-items: center;
  justify-content: center;

  font-family: Arial, sans-serif;
}

/* KONTEJNER PRO OBSAH */
.hero {
  position: relative;
  z-index: 2;
  transform: translateY(420px); /* + dolů / - nahoru */

}

/* TLAČÍTKO */

.enter-button {
  position: fixed;
  top: -770px;            /* ⬅️ vzdálenost POD horním panelem */
  left: 50%;
  transform: translateX(-50%);

  width: 100vw;         /* ⬅️ automatická šířka */
  max-width: 1705px;

  padding: 6px 0;       /* ⬅️ výška panelu */
  text-align: center;

  border-radius: 2px;
  border: 1px solid rgba(0,0,0,0.6);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);

  color: #000;
  font-size: 15px;
  text-decoration: none;

  z-index: 4;
}



/* HORNÍ GLASS PANEL */
.top-glass {
  position: fixed;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);

  padding: 15px 100%; /* můžeš měnit nezávisle */
  border-radius: 1px;

  border: 1px solid rgba(0,0,0,0.6);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);

  color: #000;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  z-index: 5;
}

@media (max-width: 768px) {

  .top-glass,
  .enter-button {
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);

    background: rgba(255,255,255,0.22);
  }

}

@media (max-width: 768px) {

  .enter-button {
    bottom: auto;        /* zruší desktop logiku */
    top: 295px;          /* ⬅️ MUSÍ být víc než výška top-glass */
  }

}

@media (max-width: 768px) {
  body {
    display: block;   /* ⬅️ KLÍČOVÉ */
  }
}
