@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@700&family=Roboto:wght@400;700&display=swap");
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background-image: url("/public/images/background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #2c3e50;
}

nav {
  background-color: #2c3e50;
  padding: 0.5em 1em;
  color: white;
}
nav .nav-container {
  max-width: 75%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
nav .logo img {
  height: 40px;
}
nav .nav-links {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5em;
  padding: 0;
  margin: 0;
}
nav .nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}
nav .nav-links li a:hover {
  text-decoration: underline;
}

.page-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 2em;
  background: rgba(255, 255, 255, 0.901);
  width: 75%;
  height: 600px;
  margin: 2em auto;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

footer {
  text-align: center;
  padding: 1em;
  background: #2c3e50;
  color: white;
}
footer .footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
footer .footer-content p, footer .footer-content span {
  margin: 0;
}
footer .footer-content a {
  color: #fff;
  text-decoration: none;
}
footer .footer-content a:hover {
  text-decoration: underline;
}

.card {
  background: #ffffff;
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 2em;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.card:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.card .card-header {
  background-color: #2c3e50;
  color: white;
  padding: 1em;
  font-size: 1.25rem;
  font-weight: bold;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.card .card-body {
  padding: 1.5em;
  font-size: 1rem;
  color: #333;
}

.hero {
  /* Ersetze diese URL mit deinem gewünschten Hintergrundbild */
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(18, 18, 18, 0.7)), to(rgb(18, 18, 18))), url("http://googleusercontent.com/image_generation_content/0");
  background-image: linear-gradient(rgba(18, 18, 18, 0.7), rgb(18, 18, 18)), url("http://googleusercontent.com/image_generation_content/0");
  background-size: cover;
  background-position: center;
  height: 80vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.5rem;
  font-family: var(--heading-font);
  font-weight: 400;
}

/* --- Features Sektion --- */
.features {
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.feature-card {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 8px;
  border-left: 5px solid var(--primary-color);
  text-align: left;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.feature-card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* --- Call to Action (CTA) Sektion --- */
.cta {
  text-align: center;
  padding: 50px 20px;
  background-color: var(--card-bg);
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 35px;
  background-color: #4c4844;
  color: #e6e6e9;
  text-decoration: none;
  font-family: var(--heading-font);
  font-size: 1.2rem;
  border-radius: 5px;
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-box-shadow: 0 5px 15px rgba(211, 84, 0, 0.3);
          box-shadow: 0 5px 15px rgba(211, 84, 0, 0.3);
}

.cta-button:hover {
  background-color: #E67E22; /* Eine etwas hellere Variante von Orange */
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.first_text {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.underline {
  border: 2px solid #ccc;
  margin-bottom: 2em;
}

.info-container {
  max-width: 900px;
  margin: 2rem auto;
  padding: 1rem;
  background: white;
  border-radius: 12px;
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.server-status {
  list-style: none;
  padding: 0;
  margin: 1rem 0;

  li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75em 1em;
    margin-bottom: 0.5em;
    background-color: #f2f2f2;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
  }

  .status {
    font-weight: bold;
    margin-left: 1rem;
  }

  .online {
    color: green;
  }

  .offline {
    color: red;
  }

  .coming-soon {
    color: orange;
  }
}
@media (max-width: 600px) {
  .server-status li {
    flex-direction: column;
    align-items: flex-start;

    span.status {
      margin-top: 0.5em;
      margin-left: 0;
    }
  }
}

.players-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.player-card {
  background: #3498db;
  color: white;
  padding: 1rem;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-weight: 600;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}