body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  background: #000;
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
}

header {
  background: #000;
  color: #F3CF87;
  text-align: center;
  padding: 20px 0;
}

.logo img {
  max-height: 200px;
}

.divider {
  border-bottom: 2px solid #F3CF87;
  width: 80%;
  margin: 10px auto 20px;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

nav a {
  color: #F3CF87 !important;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

.content-wrapper {
  display: flex;
  justify-content: center;
  padding: 5px 20px 20px 20px;
}

.content-box {
  background: #fff;
  color: #000;
  padding: 40px;
  max-width: 800px;
  width: 100%;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  font-size: 18px;
  line-height: 1.6;
  border-radius: 10px; /* Abgerundete Ecken */
}
.content-box a {
  color: #000; /* Schwarze Links für gute Lesbarkeit */
  text-decoration: underline;
}
.content-box a:hover {
  color: #F3CF87; /* Goldton beim Hover */
  text-decoration: none;
}

footer {
  background: #000;
  color: #F3CF87;
  text-align: center;
  padding: 20px 0 0 0;
  margin: 0;
}

footer a {
  color: #F3CF87;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
.btn-shop {
  background-color: #F3CE8C;
  color: #344534;
  border-color: #000000;
}

.btn-shop:hover {
  background-color: #000000;
  color: #F3CF87;
  border-color: #F3CE8C;
}

.btn-shop:active {
  background-color: #F3CE8C;
  color: #344534;
  border-color: #000000;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  color: #ffffff;
  padding: 0.75rem 0;
  z-index: 9999;
  font-size: 0.9rem;
}

.cookie-banner a {
  color: #F3CF87; /* z. B. deine Goldfarbe */
  text-decoration: underline;
}

@media (max-width: 576px) {
  .cookie-banner {
    font-size: 0.8rem;
  }
}
