/* ===== Reset / Base ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
  background: #f7f7f7;
  line-height: 1.6;
}

/* ===== Layout ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

/* ===== Header ===== */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #ddd;
}

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

.site-header img {
  height: 60px;
  width: auto;
}

/* ===== Language Switch ===== */
.lang-switch a {
  margin-left: 10px;
  text-decoration: none;
  font-weight: bold;
  color: #555;
}

.lang-switch a:hover {
  color: #000;
  text-decoration: underline;
}

/* ===== Main Content ===== */
main.container {
  background: #ffffff;
  margin-top: 30px;
  border-radius: 4px;
}

main h1 {
  margin-bottom: 15px;
  color: #1a1a1a;
}

main p {
  margin-bottom: 12px;
}

/* ===== Footer ===== */
.site-footer {
  margin-top: 40px;
  padding: 20px;
  background: #222;
  color: #fff;
  text-align: center;
  font-size: 14px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .site-header .container {
    flex-direction: column;
    gap: 10px;
  }

  .lang-switch {
    margin-top: 5px;
  }
}

/* ===== Header Navigation ===== */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo img {
  height: 60px;
}

/* Hauptnavigation */
.main-nav {
  display: flex;
  gap: 20px;
}

.main-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

.main-nav a:hover {
  color: #000;
  text-decoration: underline;
}

/* Sprachumschalter */
.lang-switch a {
  margin-left: 10px;
  text-decoration: none;
  font-weight: bold;
  color: #555;
}

.lang-switch a:hover {
  color: #000;
}

/* Responsive */
@media (max-width: 900px) {
  .header-inner {
    flex-direction: column;
  }

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