:root {
  --gold: #ffe7a2;
  --gold-soft: #f9e3a1;
  --white: #fff;
  --card-bg: #181824;
  --card-border: #ffe7a2;
  --card-shadow: 0 4px 36px 14px #ffe7a224, 0 2px 12px 0 #1a1b2465;
}

body {
  background: url('img/universe-galaxy.png') center top no-repeat #13131a;
  background-size: cover;
  color: var(--white);
  margin: 0;
  font-family: 'Lato', Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  z-index: 0;
  left: 0; top: 0; right: 0; bottom: 0;
  background: url('img/stars-overlay.png') center top repeat;
  pointer-events: none;
  opacity: 0.07;
}

header {
  text-align: center;
  margin-top: 32px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.admin-login {
  position: absolute;
  top: 0;
  right: 0;
  margin: 32px 48px 0 0;
  display: flex;
  gap: 18px;
  z-index: 2;
}
.btn-admin, .btn-user {
  background: rgba(18,17,26,0.88);
  border: 1.8px solid var(--gold);
  color: var(--gold);
  padding: 0.5rem 1.3rem;
  border-radius: 14px;
  font-family: 'Playfair Display', serif;
  font-size: 1.11rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 0 12px 0 #ffe7a220;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s, background 0.2s, box-shadow 0.2s, border 0.2s;
}
.btn-admin:hover, .btn-user:hover {
  background: var(--gold);
  color: #222;
  box-shadow: 0 0 20px 0 var(--gold);
  border-color: var(--gold);
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4.8rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  color: var(--gold);
  margin: 0 0 0.4em 0;
  text-shadow:
    0 6px 80px #ffe7a2b8,
    0 1px 0 #2b253c,
    0 0 14px #fff7c080;
  line-height: 1.1;
}

.subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: var(--gold-soft);
  text-shadow: 0 0 24px var(--gold), 0 2px 0 #2b253c;
  margin-bottom: 28px;
  font-weight: 400;
}

.hero {
  margin: 0 auto 32px auto;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-glow {
  position: absolute;
  left: 50%;
  top: 75px;
  transform: translateX(-50%);
  width: 420px;
  height: 220px;
  background: radial-gradient(ellipse at center, #ffe7a273 0%, #ffe7a21c 60%, #0000 100%);
  z-index: 0;
  pointer-events: none;
  filter: blur(18px);
  opacity: 0.97;
}

.hero-image {
  position: relative;
  z-index: 2;
  width: 300px;
  max-width: 92vw;
  margin: 12px 0 36px 0;
  background: transparent;
  filter: none;
  border-radius: 0;
  box-shadow: none;
}

.intro-text {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.18rem;
  color: #ececec;
  line-height: 2.05;
  margin: 0 auto 38px auto;
  text-align: center;
  text-shadow: 0 0 18px #1d1433;
  max-width: 520px;
}

.products {
  display: flex;
  justify-content: center;
  gap: 38px;
  margin: 16px 0 38px 0;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.product-card {
  background: var(--card-bg);
  border: 2.6px solid var(--card-border);
  border-radius: 16px;
  box-shadow: 0 6px 48px 18px #ffe7a228, 0 2px 18px 0 #28213b55;
  padding: 28px 22px 24px 22px;
  width: 290px;
  max-width: 96vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 10px 60px 16px #ffe7a23c, 0 2px 24px 0 #2b253c55;
}

.product-card img {
  width: 158px;
  height: 158px;
  object-fit: cover;
  border-radius: 13px;
  margin-bottom: 16px;
  box-shadow: 0 2px 32px 0 #ffe7a233;
  background: #191622;
  filter: brightness(0.91) drop-shadow(0 1px 18px #ffe7a229);
}

.product-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.34rem;
  color: var(--gold);
  font-weight: 700;
  margin: 0 0 8px 0;
  letter-spacing: 0.03em;
  text-shadow: 0 0 14px #2b253c;
  text-align: center;
}

.product-card .desc {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  color: #e3e3e3;
  margin-bottom: 18px;
  text-align: center;
  min-height: 2.6em;
}

.btn {
  display: inline-block;
  padding: 0.60rem 1.65rem;
  font-size: 1.10rem;
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  background: rgba(24, 24, 36, 0.93);
  border: 2px solid var(--gold);
  border-radius: 11px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 0 14px 0 #ffe7a214;
  margin-top: 6px;
  letter-spacing: 0.01em;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s, border 0.2s;
}
.btn:hover {
  background: var(--gold);
  color: #222;
  box-shadow: 0 0 34px 0 var(--gold);
  border-color: var(--gold);
}

/* Vorteile, Über uns, Newsletter */
.vorteile, .ueber-uns, .newsletter {
  background: rgba(24,24,36,0.82);
  border: 2px solid var(--gold-soft);
  border-radius: 17px;
  box-shadow: 0 4px 22px 0 #ffe7a216;
  margin: 32px auto;
  max-width: 650px;
  padding: 28px 24px 22px 24px;
  color: var(--white);
  text-align: center;
}

.vorteile h2, .ueber-uns h2, .newsletter h3 {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 14px;
  text-shadow: 0 0 16px #ffe7a244;
}
.vorteile ul {
  padding: 0;
  list-style: none;
  margin: 0;
}
.vorteile li {
  margin-bottom: 13px;
  font-size: 1.12rem;
  text-align: left;
  line-height: 1.5;
  position: relative;
  padding-left: 28px;
}
.vorteile li::before {
  content: "★";
  color: var(--gold);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.1em;
  opacity: 0.65;
}
.ueber-uns p {
  font-size: 1.07rem;
  color: #ececec;
  margin-bottom: 0;
}

/* Newsletter */
.newsletter form {
  margin-bottom: 12px;
}
.newsletter input[type="email"] {
  padding: 0.6em 1.1em;
  border-radius: 7px;
  border: 1.5px solid var(--gold-soft);
  margin-right: 7px;
  font-size: 1rem;
  width: 48%;
  background: #181824;
  color: var(--gold);
}
.newsletter .btn {
  background: var(--gold-soft);
  color: #191822;
  border-color: var(--gold-soft);
  font-weight: bold;
}
.newsletter .btn:hover {
  background: var(--gold);
  color: #1a1a23;
}
.visually-hidden {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

footer {
  width: 100%;
  background: rgba(19,19,26,0.97);
  border-top: 1.5px solid #2b253c;
  margin-top: 58px;
  padding: 32px 0 18px 0;
  text-align: center;
  font-size: 1.06rem;
  color: #e2e2e2;
  box-shadow: 0 -4px 32px 0 #10101a inset;
  z-index: 2;
  position: relative;
}
.footer-links {
  margin-bottom: 14px;
  font-family: 'Lato', Arial, sans-serif;
}
.footer-links a {
  color: var(--gold-soft);
  margin: 0 5px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.18s, text-shadow 0.18s;
}
.footer-links a:hover {
  color: var(--gold);
  text-shadow: 0 0 6px var(--gold);
}

.footer-social {
  margin-bottom: 8px;
}
.footer-social a {
  display: inline-block;
  margin: 0 7px;
  transition: transform 0.18s, filter 0.18s;
}
.footer-social img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px var(--gold));
  border-radius: 8px;
  background: transparent;
}
.footer-social a:hover img {
  transform: scale(1.11) rotate(-5deg);
  filter: drop-shadow(0 0 12px var(--gold));
}

footer p {
  margin: 10px 0 0 0;
  font-size: 0.98rem;
  color: #cccccc;
}

/* --- LEGAL DESIGN FÜR RECHTSTEXTE --- */
.legal-container {
  background: rgba(24,24,36,0.96);
  border: 2px solid var(--gold-soft);
  border-radius: 16px;
  box-shadow: 0 4px 32px 0 #ffe7a219;
  max-width: 750px;
  margin: 48px auto 44px auto;
  padding: 38px 32px 30px 32px;
  color: var(--white);
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.15rem;
  line-height: 1.65;
  text-shadow: 0 0 12px #18182444;
}
.legal-container h1, .legal-container h2 {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  margin-top: 0;
  text-shadow: 0 0 18px #ffe7a277;
}
.legal-container a {
  color: var(--gold-soft);
  text-decoration: underline;
}
.legal-container a.btn {
  display: inline-block;
  text-decoration: none;
  padding: 0.5em 1.5em;
  background: var(--gold-soft);
  color: #191822;
  border-radius: 8px;
  border: none;
  margin-top: 20px;
  font-weight: bold;
  font-family: 'Playfair Display', serif;
  transition: background 0.18s, color 0.18s;
}
.legal-container a.btn:hover {
  background: var(--gold);
  color: #191822;
}
@media (max-width: 900px) {
  h1 { font-size: 3.1rem; }
  .subtitle { font-size: 1.25rem; }
  .admin-login { margin-right: 2vw; }
  .product-card { width: 90vw; max-width: 360px; }
  .hero-image { width: 190px; }
  .hero-glow { width: 250px; height: 120px; top: 64px; }
}
@media (max-width: 600px) {
  header { margin-top: 18px; }
  .admin-login { position: static; justify-content: center; margin: 12px 0 0 0; gap: 12px; }
  h1 { font-size: 2.05rem; }
  .subtitle { font-size: 1rem; }
  .hero-image { width: 125px; }
  .products { flex-direction: column; gap: 20px; }
  .product-card { width: 96vw; padding: 14px 5vw 14px 5vw; }
  .hero-glow { width: 120px; height: 64px; top: 42px; }
  .vorteile, .ueber-uns, .newsletter { padding: 12px 5vw 16px 5vw; margin: 14px 0; }
  .legal-container {
    padding: 14px 6vw 16px 6vw;
    margin: 14px 0;
    font-size: 1.02rem;
  }
  footer { padding: 18px 0 8px 0; font-size: 0.98rem; }
  .footer-social img { width: 31px; height: 31px; }
}
