body {
  background: url('background.jpg') no-repeat center center fixed;
  background-size: cover;
  background-color: rgba(18, 18, 18, 0.95);
  background-blend-mode: darken;
  color: #e0e0e0;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 1.5rem;
  background-color: #2e3a31;
  border-bottom: 3px solid #50624a;
  position: sticky;
  top: 0;
  z-index: 999;
  flex-wrap: wrap;
}

.logo {
  height: 70px;
  width: auto;
  margin-right: 1rem;
}

.header-center {
  flex-grow: 1;
  text-align: center;
}

header h1 {
  font-size: 1.6rem;
  color: #aeea00;
  margin: 0;
  white-space: nowrap;
}

/* NAVIGATION */
.nav-links {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  color: #f5f5f5;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #aeea00;
}

.instagram-icon {
  height: 28px;
  width: 28px;
  transition: transform 0.3s ease;
}
.instagram-icon:hover {
  transform: scale(1.1);
}

/* MAIN CONTENT */
main {
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(30, 30, 30, 0.85);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

h2 {
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #aeea00;
}

ul {
  margin-top: 1rem;
  padding-left: 1.5rem;
}

p, li {
  font-size: 1.1rem;
}

/* Bilder */
.bilder {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.fleischbild {
  width: 45%;
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(0,0,0,0.5);
}

/* BUTTON */
.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  margin-top: 1rem;
  background-color: #aeea00;
  color: #121212;
  text-decoration: none;
  font-weight: 700;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  font-size: 1rem;
  max-width: 100%;
  text-align: center;
}

.button:hover {
  background-color: #bdfc3c;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #ccc;
  margin-top: 2rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  header {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .logo {
    height: 50px;
  }

  .header-center h1 {
    font-size: 1.3rem;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
    gap: 1rem;
  }

  .instagram-icon {
    height: 22px;
    width: 22px;
  }
}
