body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: yellow;
    color: #333;
}

header {
    background-color: #d2691e;
    color: white;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    margin: 0;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

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

nav a:hover {
    text-decoration: underline;
}

#hero {
    background-color: #f5deb3;
    padding: 60px 40px;
    text-align: center;
}

#produkte {
    padding: 40px;
    background-color: #fff0e1;
}

.produkt-liste {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.produkt {
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 200px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}

#über-uns, #kontakt {
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
}

footer {
    background-color: #d2691e;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
    
}
      
.header-image {
  text-align: center;
  margin-top: 0;
  padding-top: 10px;
}

.header-image img {
  max-width: 5000px;
  width: 200%;
  height: 200px;
  display: inline-block;
}



header {
    background-color: #d2691e;
    color: white;
    padding: 20px 40px;
    display: flex;
    justify-content: flex-start; 
    align-items: flex-start;
}


.produkt-tabelle {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
}

.produkt-tabelle td {
  padding: 6px 12px;
  vertical-align: top;
  border-bottom: 1px solid #ddd;
}

.produkt-tabelle td.price {
  text-align: right;
  white-space: nowrap; /* verhindert Umbruch bei Preisen */
  font-weight: 600;
  color: #6a4e3c;
  width: 80px;
}

.produkt-tabelle tr:nth-child(even) {
  background-color: #fff0e1;
}

h3 {
  color: #6a4e3c;
  margin-top: 40px;
  border-bottom: 2px solid #6a4e3c;
  padding-bottom: 6px;
  font-weight: 700;
}body.impressum {
  background-image: url('images/asset(4).jpg');
  background-size: cover;      /* Bild soll den ganzen Bereich ausfüllen */
  background-position: center; /* Bild zentrieren */
  background-repeat: no-repeat; /* Bild nicht wiederholen */
  color: white;                /* Textfarbe passend zum Hintergrund */
}
main {
  background-color: rgba(0, 0, 0, 0.5); /* schwarzer halbtransparenter Hintergrund */
  padding: 20px;
  border-radius: 8px;
}