/* Grundlegende Stile */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

body {
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  color: #333;
  line-height: 1.6;
}

a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top-Bar */
.top-bar {
  background-color: #f4f4f4;
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
  font-size: 0.9em;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.top-links a,
.top-legal a {
  margin-right: 15px;
  color: #333;
}

/* Header */
.main-header {
  background-color: #f9f9f9;
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.logo-img {
  height: 50px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.main-nav a {
  font-weight: bold;
  color: #333;
}

/* Hero Section */
.hero-section {
  background-color: #e9e9e9;
  padding: 80px 0;
  text-align: center;
}

.hero-section h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.hero-section p {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto;
}

/* Info Grid */
.info-grid-section {
  padding: 60px 0;
  background-color: #fff;
}

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

.grid-item {
  background-color: #f4f4f4;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.grid-item h2 {
  font-size: 1.5em;
  margin-bottom: 15px;
}

.grid-item p {
  margin-bottom: 20px;
}

.read-more {
  font-weight: bold;
}

/* Testimonials */
.testimonials-section {
  background-color: #e9e9e9;
  padding: 60px 0;
}

.testimonials-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  flex: 1;
  min-width: 300px;
  max-width: 350px;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 10px;
}

.testimonial cite {
  display: block;
  text-align: right;
  color: #666;
}

/* Formular */
form input[type="text"],
form input[type="email"],
form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
  background-color: #fff;
  color: #333;
}

.submit-button {
  padding: 12px 25px;
  background-color: #00bfff;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1em;
}

.submit-button:hover {
  background-color: #0095cc;
}

/* Spielauswahl */
.game-option {
  flex: 1 1 200px;
  background-color: #f4f4f4;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 15px;
  cursor: pointer;
  font-weight: bold;
  color: #333;
  transition: background-color 0.3s;
}

.game-option input {
  margin-right: 10px;
}

.game-option:hover {
  background-color: #e0e0e0;
}

/* Footer */
.main-footer {
  background-color: #333;
  color: white;
  padding: 40px 0 20px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #555;
}

.footer-left {
  flex: 1;
  min-width: 250px;
}

.logo-img-footer {
  height: 60px;
  margin-bottom: 15px;
}

.footer-left address {
  font-style: normal;
  font-size: 0.9em;
  line-height: 1.8;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  font-size: 0.8em;
}

/* Responsivität */
@media (max-width: 768px) {
  .header-content,
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .main-nav ul {
    justify-content: center;
    flex-wrap: wrap;
  }

  .grid-container {
    grid-template-columns: 1fr;
  }

  .testimonials-container {
    flex-direction: column;
    align-items: center;
  }

  .top-bar-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}