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

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #121212;
  color: #f5f5f5;
  margin: 0;
}

a { text-decoration: none; color: #fff; }

/* Sticky menu */
nav {
  position: sticky;
  top: 0;
  width: 100%;
  background: #1f1f1f;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.6);
  z-index: 1000;
}

nav .logo {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
}

nav .logo img {
  height: 40px;
  margin-right: 10px;
}

nav .menu {
  display: flex;
  gap: 20px;
}

nav .menu a {
  color: #ccc;
  font-weight: 500;
  transition: color 0.3s;
}

nav .menu a:hover {
  color: #1ABC9C;
}

/* Kontener */
.container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  background: #1e1e1e;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

/* Formularze */
form input, form select, form button {
 /* width: 100%;
  padding: 12px;
  margin: 8px 0; */
  border-radius: 6px;
  border: 1px solid #444;
  background: #2b2b2b;
  color: #f5f5f5;
  font-size: 16px;
}

form button {
  background: #3498db;
  color: white;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

form button:hover {
  background: #2980b9;
}

/* Sekcje */
h1, h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #fff;
}

/* Glass simulation */
.glass {
  width: 150px;
  height: 250px;
  border: 2px solid #aaa;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column-reverse;
  margin: 20px auto;
}
.layer {
  text-align: center;
  font-size: 12px;
  color: #fff;
}

/* Responsywność */
@media (max-width: 768px) {
  nav .menu {
    flex-direction: column;
    gap: 10px;
  }
  .container {
    margin: 10px;
    padding: 15px;
  }
}

#ordersContainer{
	color:black;
}