/* style.css */

body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background-color: #000;
  color: #fff;
  text-shadow: 0 0 6px #fff;
}

header {
  background: #111;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 0 15px #fff;
}

header h1 {
  margin: 0;
  font-weight: 500;
  font-size: 1.8rem;
  color: #fff;
  text-shadow: 0 0 8px #fff;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 1.5rem;
  font-weight: 600;
  text-shadow: 0 0 6px #fff;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ccc;
}

.hero {
  text-align: center;
  padding: 4rem 2rem;
  border-bottom: 1px solid #333;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #fff;
  text-shadow: 0 0 10px #fff;
}

.hero p {
  font-size: 1.2rem;
  color: #bbb;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #111;
  border-top: 1px solid #333;
  color: #777;
  font-size: 0.9rem;
}

/* Produktliste (Produkte.html) */
.product-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 4rem 2rem;
  max-width: 700px;
  margin: 0 auto;
}

.product-entry {
  background: #111;
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid #333;
  box-shadow: 0 0 15px #000;
  transition: box-shadow 0.3s ease;
}

.product-entry:hover {
  box-shadow: 0 0 20px #fff;
}

.product-entry h3 {
  margin: 0;
  font-size: 1.8rem;
  color: #fff;
  text-shadow: 0 0 6px #fff;
}

.product-entry p {
  color: #bbb;
  margin: 0.5rem 0;
}

.product-entry .price {
  font-size: 1.2rem;
  color: #fff;
  font-weight: bold;
  margin: 1rem 0;
}

/* Button als Link */
a.buy-btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background: #fff;
  color: #000;
  border-radius: 10px;
  font-weight: bold;
  box-shadow: 0 0 12px #fff;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

a.buy-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 18px #fff;
}

/* Kontaktseite */
.contact-form {
  max-width: 600px;
  margin: 4rem auto;
  padding: 2rem;
  background: #111;
  border: 1px solid #333;
  border-radius: 15px;
  box-shadow: 0 0 20px #000;
}

.contact-form h2 {
  text-align: center;
  color: #fff;
  text-shadow: 0 0 8px #fff;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: #aaa;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: #000;
  color: #fff;
  border: 1px solid #444;
  border-radius: 10px;
  font-family: 'Orbitron', sans-serif;
  box-shadow: 0 0 10px #000 inset;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  box-shadow: 0 0 12px #fff;
}

.contact-form button {
  display: block;
  margin: 0 auto;
  padding: 1rem 2rem;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 0 12px #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 18px #fff;
}

/* Kaufen.html PayPal Container */
.paypal-container {
  background: #111;
  padding: 2rem;
  max-width: 500px;
  margin: 5rem auto;
  border-radius: 15px;
  box-shadow: 0 0 20px #fff;
  text-align: center;
}

.paypal-container h2 {
  color: #fff;
  text-shadow: 0 0 8px #fff;
}

.paypal-container p {
  color: #aaa;
  margin-bottom: 2rem;
}

iframe {
  border: none;
  margin-top: 1rem;
}