:root {
  --accent-color: #b8d1e1;
  --accent-line: #d0eafc;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Orbitron', Arial, sans-serif;
  background-color: #1A1A1A;
  color: #fff;
  line-height: 1.6;
}

/* Navigation */
nav {
  background-color: transparent;
  border-bottom: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo a {
  font-size: 1.8em;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

.logo-img {
  height: 50px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: var(--accent-color);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5em;
  cursor: pointer;
  color: #fff;
}

/* Header */
header {
  position: relative;
  background: url('../images/Background-index.jpg') center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  box-shadow: 0 15px 15px -8px rgba(0,0,0,0.5);
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  z-index: 1;
}

.header-content {
  position: relative;
  z-index: 2;
  padding: 20px;
}

header h1 {
  font-size: 3em;
  margin-bottom: 10px;
  color: #fff;
}

header p {
  font-size: 1.2em;
  color: #fff;
}

.header-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  border: 2px solid #fff;
  background-color: transparent;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s, border 0.3s;
}

.header-button:hover {
  background-color: transparent;
  border: 2px solid #000;
  color: var(--accent-color);
}





/* Zwei Buttons nebeneinander */
.header-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.header-buttons .header-button {
  margin-top: 20px;
}





/* Footer */
footer {
  width: 100%;
  background-color: #1A1A1A;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  font-size: 0.9em;
  color: #fff;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
}

.footer-links li a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: color 0.3s;
}

.footer-links li a:hover {
  color: var(--accent-color);
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    background-color: #1A1A1A;
    position: absolute;
    top: 60px;
    left: 0;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(255,255,255,0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 5px 0;
  }

  header h1 {
    font-size: 2.2em;
  }

  header p {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  header h1 {
    font-size: 1.6em;
    white-space: nowrap;
  }

  header p {
    font-size: 1em;
  }

  .footer-container {
    flex-direction: column;
    gap: 10px;
  }

  .footer-left,
  .footer-links {
    text-align: center;
  }
}

@media (max-width: 320px) {
  header h1 {
    font-size: 1.4em;
    white-space: nowrap;
  }
}
