/* style.css */
:root {
      scroll-padding-top: 80px;
    }

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: lighblue;
  background-position: center;
  color: white;
}

body::before {
      content: "";
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url("pictures/hintergrund3.jpg");
      background-size: cover;
      background-position: top;
      z-index: -1;
      opacity: 1.0;
    }

#start {
  padding-top: 40vh;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
  padding: 1rem 2rem;
  z-index: 1000;
  box-sizing: border-box;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.gallery-item {
  flex: 1 1 300px;
  max-width: 100%;
  box-sizing: border-box;
}

.gallery-item video {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  display: block;
}
.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  display: block;
}


nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  margin-left: auto;
  padding: 0;
}

nav a {
  color: white;
  text-decoration: none;
}

.burger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.burger div {
  width: 25px;
  height: 3px;
  background: white;
}

@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.9);
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 1rem;
  }

  nav ul.show {
    display: flex;
  }

  .burger {
    display: flex;
  }
}

main {
  padding: 120px 20px 40px;
  max-width: 1000px;
  margin: auto;
}

a {
  color: lightblue;
}

h1 {
  color: #a0a0a0; /* kräftiges Orange */
}

h2 {
  color: #a0a0a0; /* etwas heller */
}

h3 {
  color: #b0b0b0; /* weichere Variante */
}

.status-bestellt { color: orange; font-weight:bold; }
.status-bezahlt { color: blue; },
.status-ausgeliefert { color: green; }
