/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Orbitron', sans-serif;
  background: #0d0d0d;
  color: #f0f0f0;
  overflow-x: hidden;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image: url('https://www.transparenttextures.com/patterns/asfalt-dark.png');
  opacity: 0.04;
}


/* Glass Effect Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  z-index: 1000;
}

.logo {
  font-weight: bold;
  font-size: 1.5rem;
  color: #00ffff;
  text-shadow: 0 0 10px #00ffff;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.navbar a {
  text-decoration: none;
  color: #f0f0f0;
  position: relative;
  transition: color 0.3s;
}

.navbar a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -3px;
  left: 0;
  background-color: #00ffff;
  transition: 0.3s;
}

.navbar a:hover::after {
  width: 100%;
}

.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  text-align: center;
}

.glow-text {
  font-size: 3rem;
  color: #00ffff;
  text-shadow: 0 0 20px #00ffff, 0 0 40px #00ffff;
}

.tagline {
  font-size: 1.2rem;
  margin-top: 1rem;
  color: #ccc;
}

.glow-button {
  margin-top: 2rem;
  padding: 0.8rem 2rem;
  border: none;
  background: #00ffff;
  color: #000;
  font-weight: bold;
  border-radius: 6px;
  box-shadow: 0 0 15px #00ffff;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

.glow-button:hover {
  background: #00dddd;
  box-shadow: 0 0 25px #00ffff;
  transform: scale(1.05);
}

.content {
  padding-top: 120px; /* Abstand zur Navbar */
  max-width: 900px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
  text-align: center;
}

.contact.content {
  margin-top: 120px;
  padding: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.contact-info {
  margin: 1rem 0 2rem;
  line-height: 1.6;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

input, textarea {
  width: 100%;
  max-width: 500px;
  padding: 0.8rem;
  border: none;
  border-radius: 6px;
  background: #1f1f1f;
  color: #f0f0f0;
  font-size: 1rem;
  box-shadow: inset 0 0 5px #00ffff33;
  resize: vertical;
}

input:focus, textarea:focus {
  outline: none;
  box-shadow: 0 0 10px #00ffff;
}

.about.content {
  margin-top: 120px;
  padding: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  line-height: 1.6;
}

.about-text {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  color: #ddd;
}

.about-highlights {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.about-highlights li {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 0 10px #00ffff33;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 0.8rem;
}

.about-highlights .emoji {
  font-size: 1.4rem;
}
