/* Grundlegende Einstellungen */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background-color: #111;
  color: #d4b865;
  line-height: 1.5;
  min-height: 100vh;
}

/* Header */
header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}

.header-left .logo {
  height: 50px;
}

.header-nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
}

.header-nav ul li a {
  color: #d4b865;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.header-nav ul li a:hover {
  color: #f08a3e;
}

.header-login .btn {
  background-color: #d4b865;
  border: none;
  padding: 8px 14px;
  margin-left: 10px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.header-login .btn:hover {
  background-color: #f08a3e;
}

/* Hauptbereich / Container */
main {
  max-width: 1200px;
  margin: 0 auto 50px auto;
  padding: 20px 15px;
  position: relative;
  z-index: 5;
}

/* Overlay Background */
.content-wrapper {
  position: relative;
  background-color: rgba(0, 0, 0, 0.7); /* dunkles Overlay */
  padding: 40px;
  border-radius: 10px;
  backdrop-filter: blur(6px);
}

/* Hintergrundbild unter dem Overlay */
.content-wrapper::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('images/butterfly-background-4k.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.3;
  border-radius: 10px;
  z-index: -1;
}

/* Hero Sektion */
.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #d4b865;
  text-align: center;
}

.hero p {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.15rem;
  color: #f2f2f2;
}

.primary-btn {
  display: inline-block; /* Nicht volle Breite mehr */
  margin: 0 auto 35px auto;
  background-color: #f08a3e;
  border: none;
  padding: 10px 22px; /* kompaktere Polsterung */
  border-radius: 25px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 1rem;
  min-width: 160px; /* Optional, für einheitliche Breite */
  text-align: center;
}

.primary-btn:hover {
  background-color: #d06a10;
}

/* Produkt-Links */
.product-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
}

.product-links a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #d4b865;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.product-links a:hover {
  color: #f08a3e;
}

.product-links img {
  width: 120px;
  border-radius: 10px;
  margin-bottom: 8px;
  box-shadow: 0 0 15px rgba(240, 138, 62, 0.5);
}

/* Highlights */
.highlights {
  margin-bottom: 40px;
}

.highlights h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
  color: #d4b865;
}

.highlight-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.highlight-cards .card {
  background-color: rgba(0,0,0,0.75);
  padding: 20px;
  border-radius: 10px;
  width: 250px;
  text-align: center;
  color: #d4b865;
  box-shadow: 0 0 15px rgba(240, 138, 62, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.highlight-cards .card img {
  width: 160px;
  margin-bottom: 15px;
  border-radius: 10px;
}

.highlight-cards .card h3 {
  margin-bottom: 10px;
  font-weight: 700;
}

.highlight-cards .card p {
  flex-grow: 1;
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: #f2f2f2;
}

.highlight-cards .card .link {
  font-weight: 700;
  color: #1672fb;
  text-decoration: underline;
  cursor: pointer;
  align-self: flex-start;
}

.highlight-cards .card .link:hover {
  color: #0a43c1;
}

/* Benefits */
.benefits h2 {
  font-size: 1.8rem;
  color: #d4b865;
  margin-bottom: 20px;
}

.benefits ul {
  list-style: none;
  max-width: 650px;
  margin: 0 auto;
  padding-left: 0;
}

.benefits ul li {
  font-size: 1rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f2f2f2;
}

/* About Us */
.about-us h2 {
  font-size: 1.8rem;
  color: #d4b865;
  margin-bottom: 15px;
  text-align: center;
}

.about-us p {
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: #f2f2f2;
  font-size: 1rem;
  text-align: center;
}

/* Newsletter */
.newsletter h3 {
  font-size: 1.5rem;
  color: #d4b865;
  margin-bottom: 15px;
  text-align: center;
}

.newsletter form {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.newsletter input[type="email"] {
  padding: 10px;
  font-size: 1rem;
  width: 300px;
  border: none;
  border-radius: 25px;
  outline: none;
}

.secondary-btn {
  background-color: #f08a3e;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.secondary-btn:hover {
  background-color: #d06a10;
}

/* Footer */
footer {
  background-color: #222;
  color: #d4b865;
  padding: 20px 15px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 30px auto;
  border-radius: 10px;
}

.footer-links a {
  color: #d4b865;
  text-decoration: none;
  margin: 0 6px;
  font-weight: 600;
}

.footer-links a:hover {
  color: #f08a3e;
}

.footer-social {
  margin-top: 12px;
}

.footer-social a img {
  width: 30px;
  margin: 0 8px;
  filter: drop-shadow(0 0 1px #f08a3e);
}

/* Responsive */
@media screen and (max-width: 1300px) {
  .header-nav ul {
    gap: 18px;
  }
  .highlight-cards {
    gap: 25px;
  }
}

@media screen and (max-width: 1100px) {
  main {
    max-width: 95%;
    margin: 0 auto;
  }
  .header-nav ul {
    gap: 15px;
  }
  .highlight-cards {
    gap: 15px;
    flex-wrap: wrap;
  }
  .highlight-cards .card {
    width: 100%;
  }
}

@media screen and (max-width: 650px) {
  header {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .header-login {
    margin-top: 10px;
  }
  .header-nav ul {
    gap: 10px;
  }
  .product-links {
    flex-wrap: wrap;
  }
}
