/* Hide scrollbar */
::-webkit-scrollbar { display: none; }
html { scrollbar-width: none; -ms-overflow-style: none; }

body {
  margin: 0;
  background: #000;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

/* Glow fade nahoře */
.glow-header {
  height: 150px;
  width: 100%;
  background: linear-gradient(to bottom, rgba(248, 65, 67, 0.8), transparent);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
}

/* Glow fade dole */
.glow-footer {
  height: 200px;
  width: 100%;
  background: linear-gradient(to top, rgba(248, 65, 67, 0.8), transparent);
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 5;
}

/* Logo nahoře */
.logo-container {
  text-align: center;
  padding-top: 120px;
}
.logo {
  width: 120px;
}

/* Jazykový switcher */
.language-switcher {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 20;
  cursor: pointer;
}
.language-switcher .flag {
  width: 32px;
  height: auto;
}

.language-menu {
  display: none;
  position: absolute;
  top: 40px;
  right: 0;
  background: #111;
  border: 2px solid #F84143;
  border-radius: 8px;
  padding: 5px;
  flex-direction: column;
  z-index: 1001;
}
.language-menu img {
  width: 32px;
  height: auto;
  margin: 5px 0;
  cursor: pointer;
}
.language-menu img:hover {
  transform: scale(1.1);
  transition: transform 0.2s ease;
}

/* Order sekce */
.order {
  text-align: center;
  padding: 150px 20px 100px; /* posunuté kvůli logu a glow */
}
.order h1 {
  font-size: 2rem;
  color: #F84143;
}
.order p {
  font-size: 1.2rem;
}
button {
  background: #F84143;
  border: none;
  border-radius: 10px;
  color: white;
  padding: 12px 25px;
  margin: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}
button:hover {
  background: #d93636;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #000;
  border-top: 1px solid #222;
  color: #777;
  font-size: 0.9em;
}
