/* Basislayout */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #000;
  color: #fff;
  font-family: sans-serif;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 60px;
  background-color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
  box-sizing: border-box;
  z-index: 1000;
  overflow: hidden;
}

.site-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
}

/* BURGER BUTTON */
.burger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 4px;
  align-items: center;
}

.line {
  width: 30px;
  height: 4px;
  display: block;
  border-radius: 2px;
}

.red {
  background-color: red;
}

.silver {
  background-color: silver;
}

/* NAVIGATIONSMENÜ */
.nav-menu {
  position: fixed;
  top: 60px;
  right: 0;
  width: 200px;
  max-width: 90%;
  background-color: #111;
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 999;
  box-shadow: -2px 0 5px rgba(0,0,0,0.5);
}

.nav-menu.active {
  transform: translateY(0);
}

.nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.nav-menu li {
  margin: 0.8rem 0;
  width: 100%;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  padding: 0.4rem 0;
  display: block;
  width: 100%;
}

.nav-menu a:hover {
  background: #222;
  border-radius: 4px;
}

/* ZENTRIERTES LOGO IM MAIN-BEREICH */
.center-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding-top: 60px;
  box-sizing: border-box;
}

.logo {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
}

/* SECTION-BLÖCKE */
.section-block {
  padding: 100px 20px;
  max-width: 600px;
  margin: 0 auto;
}

.section-block h2 {
  margin-bottom: 1rem;
}

.section-block form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-block input,
.section-block textarea,
.section-block button {
  padding: 10px;
  font-size: 1rem;
  border-radius: 5px;
  border: none;
}

.section-block button {
  background: red;
  color: #fff;
  cursor: pointer;
}

/* LOGIN UND PASSWORT-FORMULARE RESPONSIVE */
.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #000;
  padding: 2rem;
}

.login-form {
  background: #111;
  padding: 2rem;
  border-radius: 12px;
  max-width: 400px;
  width: 100%;
  color: white;
  box-shadow: 0 0 10px rgba(255,0,0,0.2);
}

.login-form h2 {
  margin-bottom: 1rem;
  color: red;
  text-align: center;
}

.login-form label {
  margin-top: 1rem;
  display: block;
}

.login-form input {
  width: 100%;
  padding: 0.5rem;
  border-radius: 5px;
  border: none;
  margin-top: 0.3rem;
}

.login-form button {
  margin-top: 1rem;
  padding: 0.6rem;
  width: 100%;
  background: red;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

/* RESPONSIVE ANPASSUNG */
@media (max-width: 500px) {
  .site-title {
    font-size: 1rem;
  }

  .nav-menu {
    width: 90%;
  }

  .nav-menu a {
    font-size: 0.95rem;
  }

  .section-block {
    padding: 80px 10px;
  }
}
.button-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: 2em auto;
  max-width: 400px;
  width: 100%;
}

.table-btn {
  display: block;
  width: 100%;
  max-width: 350px;
  background: #e80000;
  color: #fff;
  padding: 1rem 0;
  margin: 0;
  border: none;
  border-radius: 10px;
  font-size: 1.13em;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: background 0.18s, transform 0.13s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  cursor: pointer;
  letter-spacing: 0.02em;
}

.table-btn:hover,
.table-btn:focus {
  background: #b20000;
  color: #fff;
  transform: scale(1.03);
}
