:root {
  --bg-dark: #0d111b;
  --sidebar-bg: #161f30;
  --blue-accent: #00aaff;
  --text-light: #ffffff;
  --text-muted: #aab7cf;
  --highlight: #ffc107;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
}
.hn-title {
  text-align: center;
  font-size: 3em;
  font-weight: bold;
  margin: 0;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.hn-blue {
  color: #00008b; /* NEUE Wunschfarbe für "Human" */
}

.hn-white {
  color: #ffffff;
}

.header {
  background-color: var(--bg-dark);
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  border-bottom: 1px solid #1f2a3d;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4em;
  font-weight: bold;
}

.logo img {
  height: 38px;
}

.logo span {
  display: flex;
}

.logo span .human {
  color: #00008b;
}

.logo span .night {
  color: 00008b;
}

.right-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.flag-icon {
  height: 20px;
}

.menu-toggle {
  font-size: 24px;
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
}

.sidebar {
  position: fixed;
  top: 0;
  right: -300px;
  width: 260px;
  height: 100vh;
  background-color: var(--sidebar-bg);
  box-shadow: -2px 0 15px rgba(0, 0, 0, 0.6);
  padding: 20px;
  transition: right 0.3s ease;
  z-index: 20;
}

.sidebar.active {
  right: 0;
}

.sidebar .login-btn {
  background-color: var(--blue-accent);
  border: none;
  color: white;
  padding: 10px 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.sidebar a {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--text-light);
  padding: 10px;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.2s;
}

.sidebar a:hover {
  background-color: #1f2a3d;
}

.sidebar i {
  width: 20px;
  text-align: center;
  color: var(--blue-accent);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 15;
}

.overlay.active {
  display: block;
}

.main-content {
  padding: 80px 20px;
}

h1 {
  color: var(--blue-accent);
}

p {
  color: var(--text-muted);
}
/* Hero Slider */
.hero-slider {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  margin-top: 60px; /* wegen fixed header */
}

.slide-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
}

.hero-text {
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  transform: translateY(-50%);
  color: white;
  text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}

.hero-text h1 {
  font-size: 3em;
  font-weight: bold;
}

.hero-text .human {
  color:00008b;
}

.hero-text .night {
  color: var(--text-light);
}
.about-section {
  background-color: #10151f;
  padding: 60px 30px;
  color: var(--text-light);
  text-align: center;
}

.about-section h2 {
  color: var(--blue-accent);
  font-size: 2em;
  margin-bottom: 10px;
}

.about-section hr {
  border: 0;
  border-top: 2px solid #1f2a3d;
  width: 100px;
  margin: 0 auto 40px auto;
}

.about-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card {
  background-color: #161f30;
  padding: 25px;
  border-radius: 15px;
  max-width: 300px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  text-align: left;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  color: var(--blue-accent);
  margin-bottom: 10px;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95em;
}
.discord-section {
  background-color: #10151f;
  padding: 60px 30px;
  color: var(--text-light);
  text-align: center;
}

.discord-section h2 {
  color: var(--blue-accent);
  font-size: 2em;
  margin-bottom: 10px;
}

.discord-section hr {
  border: 0;
  border-top: 2px solid #1f2a3d;
  width: 100px;
  margin: 0 auto 40px auto;
}

.discord-box {
  background-color: #161f30;
  border-radius: 15px;
  padding: 40px 20px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.discord-box p {
  font-size: 1.1em;
  line-height: 1.6em;
  margin-bottom: 25px;
  color: var(--text-light);
}

.discord-btn {
  display: inline-block;
  background-color: #0040aa; /* Dunkelblau statt grün */
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background 0.3s ease;
}

.discord-btn:hover {
  background-color: #0055cc;
}

.discord-btn i {
  margin-right: 8px;
  font-size: 1.2em;
}






/* === TEAM SECTION === */

.team-section {
  background-color: #10151f;
  padding: 60px 30px;
  text-align: center;
  color: var(--text-light);
}

.team-section h2 {
  font-size: 2.2em;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--text-light);
}

.team-section hr {
  border: 0;
  border-top: 2px solid #1f2a3d;
  width: 80px;
  margin: 0 auto 40px auto;
}

.team-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .team-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .team-cards {
    grid-template-columns: 1fr;
  }
}

.team-card {
  background-color: #161f30;
  border-radius: 15px;
  padding: 20px;
  width: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-card img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  image-rendering: pixelated;
}

.team-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.name {
  font-weight: bold;
  color: var(--text-light);
}

/* === ROLE BADGES === */

.badge {
  margin-top: 5px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8em;
  font-weight: bold;
  color: white;
}

.badge.leitung {
  background-color: #c0392b;
}

.badge.admin {
  background-color: #852703;
}

.badge.moderator {
  background-color: #26148b;
}

.badge.developer {
  background-color: #1f43a5;
}
.badge.t-developer {
  background-color: #1f43a5;
}
.badge.supporter {
  background-color: rgb(87, 150, 24);
}
.badge.t-supporter {
  background-color: rgb(111, 184, 38);
}
.badge.design{
  background-color: #ffc107;
}
.badge.builder{
  background-color: darkgreen;
}
.badge.content{
  background-color: blueviolet;
}

.footer {
  text-align: center;
  padding: 40px 0;
  background-color: #0d111b;
}

.impressum-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #00008b;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.impressum-btn:hover {
  background-color: #001a99;
}
.impressum-section {
  background-color: #10151f;
  padding: 60px 30px;
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-light);
}

.impressum-section h1 {
  font-size: 2.5em;
  color: var(--blue-accent);
  margin-bottom: 30px;
  text-align: center;
}

.impressum-section p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.impressum-section a {
  color: var(--blue-accent);
  text-decoration: none;
}

.back-link {
  display: inline-block;
  margin-top: 20px;
  font-weight: bold;
}



.server-message {
  position: relative;
  width: 100%;
  text-align: center;
  margin: 100px 0 50px 0;
}

.server-message h1 {
  font-size: 3rem;
  color: #ffffff; 
  font-family: 'Arial', sans-serif;
  font-weight: bold;
}
