/* ----------- GLOBAL ----------- */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #f4f4f4;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.inner {
  max-width: 1250px;
  margin: 0 auto;
  padding: 15px;
}

/* ----------- HEADER ----------- */

.site-header {
  width: 100%;
  background: #0a2540;
  color: white;
}

.site-header h2 {
  margin: 0;
}
/* HEADER Logo- */
.site-logo {
  width: 160px; /* Logo-Größe hier anpassen */
  max-width: 100%; /* verhindert Überbreite */
  height: auto; /* Proportionen beibehalten */
  display: block;
  margin: 0; /* kein auto → Logo links */
}

@media (max-width: 768px) {
  .site-logo {
    width: 120px;
  }
}
.site-header .inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;

  /* Header komplett zurücksetzen */
  .site-header {
    padding: 0;
    margin: 0;
  }

  /* INHALT DES HEADERS ENGER MACHEN */
  .site-header .inner {
    padding: 0; /* komplett ohne Abstand */
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  /* LOGO: keinen Abstand oben/unten */
  .site-logo {
    margin: 0;
    padding: 0;
    display: block;
  }
  padding: 5px 15px; /* oben/unten 5px, links/rechts 15px */
}

/* ----------- MENU ----------- */

.site-menu {
  width: 100%;
  background: #153e75;
}

.site-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  justify-content: flex-end; /* <<< Navigation nach rechts schieben */
}

.site-menu li a {
  color: white;
  text-decoration: none;
  padding: 12px 0;
  display: inline-block;
  font-weight: bold;
}

.site-menu li a:hover {
  opacity: 0.7;
}
.site-menu a.active {
  border-bottom: 2px solid #fff;
  opacity: 1 !important;
}

.lang-switch a img {
  width: 22px;
  height: auto;
  border-radius: 3px;
  margin-left: 8px;
  transition: transform 0.2s ease;
}

.lang-switch a img:hover {
  transform: scale(1.15);
}

/* ----------- CONTENT ----------- */

.content-wrapper {
  flex: 1;
  width: 100%;
  max-width: 1250px;
  margin: 20px auto;
  padding: 15px;
  background: white;
  border-radius: 6px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.dummy-box {
  background: #eaeaea;
  padding: 20px;
  border-radius: 5px;
  margin-top: 20px;
}

/* ----------- FOOTER ----------- */

.site-footer {
  width: 100%;
  background: #0a2540;
  color: white;
  margin-top: 40px;
  padding: 15px 0;
}

.site-footer p {
  margin: 0;
}

/* ----------- RESPONSIVE ----------- */

@media (max-width: 768px) {
  .site-menu ul {
    flex-direction: column;
    gap: 10px;
  }

  .content-wrapper {
    margin: 10px;
  }
}
