/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== BASIS ===== */
body {
  font-family: system-ui, -apple-system, Arial, sans-serif;
  background: #ffffff;   /* ← wieder hell */
  color: #222;
  line-height: 1.7;
}

/* ===== TYPO ===== */
h1, h2 {
  font-weight: 600;
  color: #111;
}

p {
  color: #444;
}

/* ===== HEADER ===== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  border-bottom: 1px solid #eee;
  background: #fff;
}

.logo {
  height: auto;
  max-height: 50px;
}

/* ===== NAV ===== */
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

nav a {
  text-decoration: none;
  color: #555;
  font-size: 14px;
}

nav a:hover {
  color: #000;
}

.join {
  border: 1px solid #000;
  padding: 7px 14px;
  border-radius: 6px;
}

/* ===== HERO ===== */
.hero {
  padding: 80px 40px;
}

.hero-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text p {
  margin-bottom: 12px;
}

/* CTA */
.cta {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 20px;
  border-radius: 6px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

/* ===== BILDER FIX ===== */
img {
  max-width: 100%;
  height: auto;   /* ← verhindert Verzerrung */
  display: block;
}

.hero-image img {
  border-radius: 10px;
}

/* ===== CONTENT ===== */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}

.section {
  margin-bottom: 70px;
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
}

.section h2 {
  font-size: 26px;
}

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid #eee;
  padding: 40px 20px;
}

.footer-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

footer a {
  color: #555;
  text-decoration: none;
}

footer a:hover {
  color: #000;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {

  header {
    flex-direction: column;
    gap: 15px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .section-grid {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  nav {
    justify-content: center;
  }
}