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

body {
  font-family: "Segoe UI", sans-serif;
  color: #f5f5f5;
  background: #0d0d0d;
}

/* Hero-Bereich */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%);
}

.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.overlay h1 {
  font-size: 4rem;
  color: #ff6600;
  text-shadow: 2px 2px 10px black;
}

.overlay p {
  font-size: 1.3rem;
  margin: 15px 0;
}

.overlay button {
  padding: 12px 24px;
  font-size: 1rem;
  background: #ff6600;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.overlay button:hover {
  background: #e55a00;
}

/* Content Bereich */
.content {
  padding: 80px 20px;
  text-align: center;
  background: #111;
}

.logo-box {
  max-width: 600px;
  margin: auto;
}

.logo {
  width: 180px;
  margin-bottom: 20px;
}

.content h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #ffcc66;
}

.content p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #ddd;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #0a0a0a;
  color: #999;
  font-size: 0.9rem;
}