@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Orbitron', sans-serif;
  background: #0f0f0f;
  color: #eaeaea;
  line-height: 1.6;
}

header {
  background: #111;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #222;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  color: #00ffe1;
  letter-spacing: 2px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #00ffe1, #007BFF);
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav a {
  text-decoration: none;
  color: #ccc;
  font-size: 1rem;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -4px;
  background: #00ffe1;
  transition: 0.3s;
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  color: #00ffe1;
}

main, .hero {
  padding: 2rem 1rem;
  text-align: center;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  min-height: 30vh;
  text-align: center;
}

.hero-inner {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #00ffe1, #007BFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  word-wrap: break-word;
}

.hero p {
  font-size: 1.1rem;
  color: #aaa;
  word-wrap: break-word;
}

/* Kontaktformular */
form {
  margin-top: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form input,
form textarea {
  width: 100%;
  padding: 0.8rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  background: #1a1a1a;
  color: #fff;
}

form button {
  padding: 0.8rem;
  background: #00ffe1;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  color: #000;
  cursor: pointer;
  transition: background 0.3s;
}

form button:hover {
  background: #00c8b5;
}

footer {
  text-align: center;
  padding: 2rem;
  color: #666;
  font-size: 0.9rem;
}

/* 📱 Responsive Optimierung */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: flex-end;
    display: none;
  }

  nav ul.show {
    display: flex;
    background: #111;
    padding: 1rem;
    position: absolute;
    top: 70px;
    right: 1.5rem;
    border: 1px solid #222;
  }

  .menu-toggle {
    display: block;
    cursor: pointer;
    color: #00ffe1;
    font-size: 1.5rem;
  }
}

@media (min-width: 769px) {
  .menu-toggle {
    display: none;
  }
}

