/* Apply box-sizing globally to prevent padding overflow */
* {
  box-sizing: border-box;
}

@font-face {
  font-family: 'Outfit';
  src: url('./objednavka/fonts/Outfit-VariableFont_wght.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

body {
  background: linear-gradient(135deg, #1A1A1D, #2c2c31);
  color: #ffffff;
  margin: 0;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
}

#page-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
}

#page-container h1 {
  margin-bottom: 1.5rem;
}

/* Fixed header styles */
.header {
  position: fixed;
  top: 20px;
  left: 30px;
  right: 30px;
  background: #222;
  color: #fff;
  padding: 1em 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border-radius: 10px;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1em;
}

.logo {
  font-weight: bold;
  font-size: 1.2em;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  margin-left: 1.5em;
}

.main-content {
  padding-top: 70px;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  body {
    padding: 0.5rem;
  }
}