  body.no-scroll {
    overflow: hidden;
  }

  /* Ikona burger/křížek */
  .burger-toggle {
    font-size: 2rem;
    cursor: pointer;
    padding: 12px;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1001;
    background: transparent;
    border: none;
    color: whitesmoke;
  }

  /* Fullscreen menu pozadí */
  .fullscreen-menu {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: #6c0bff;
    z-index: 1000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
  }

  .fullscreen-menu a {
    text-decoration: none;
    transition: color 0.2s;
  }


/*Tlacitko */
.menu-btn {
  display: flex;
  align-items: center;
  background-color: #FFD43B; /* Žluté pozadí */
  color: black;
  padding: 16px 24px;
  font-size: 1.2rem;
  border: none;
  border-radius: 16px;
  box-shadow: 6px 6px 0px #000000; /* Černý stín */
  gap: 14px;
  cursor: pointer;
  width: 80%;
  max-width: 800px;
  transition: transform 0.1s ease;
}

.menu-btn.secondary {
  background-color: #935eff;
  color: whitesmoke;
  padding: 8px 24px;
}

.menu-btn:hover {
  transform: translateY(-2px);
}

.emoji-button {
  font-size: 2rem;
  color: #B28DFF; /* Světle fialové srdce */
}

/* 📱 Mobilní optimalizace pro iPhone a malé displeje */
@media screen and (max-height:530px) and (orientation: landscape) {

  /* Fullscreen menu pozadí */
  .fullscreen-menu {
    gap: 12px;
    font-size: 0.8rem;
  }

  /*Tlacitko */
  .menu-btn {
    padding: 8px 24px;
    font-size: 0.8rem;
  }

  .menu-btn.secondary {
    padding: 6px 24px;
    font-size: 0.8rem;
  }
}