/* Grundlayout */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  color: #222;
  margin: 0;
  padding: 0;
  background: #ffffff url('../pictures/background1.jpg') no-repeat center center fixed;
  background-size: cover;
}

/* Navigation */
nav {
  background-color: rgba(0,87,183,0.85);
  border-bottom: 1px solid #fff;
  padding: 10px 20px;
}

nav .language-switcher {
  text-align: right;
  margin-bottom: 5px;
  font-size: 0.9rem;
}

nav .language-switcher a {
  text-decoration: none;
  margin-left: 10px;
  color: #FFD700;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0;
  margin: 0;
}

nav li a {
  text-decoration: none;
  color: #FFD700;
  font-weight: bold;
  transition: color 0.2s;
}

nav li a:hover {
  color: #ffffff;
}

/* Hauptinhalt */
main {
  max-width: 960px;
  margin: 0 auto;
  padding: 30px 20px;
  background-color: rgba(255,255,255,0.85);
  border-radius: 10px;
  margin-top: 20px;
}

/* Footer */
footer {
  display: flex;
  align-items: center;    /* Vertikal zentrieren */
  justify-content: center; /* Horizontal zentrieren */
  gap: 20px;               /* Abstand zwischen den Elementen */
  background-color: rgba(0,87,183,0.85);
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
  color: #ffffff;
  text-align: center;
  padding: 10px 20px;
  font-size: 1rem;
  margin-top: 20px;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
  }

  nav .language-switcher {
    text-align: center;
  }
}

/* Haupttitel */
main h1 {
  font-size: 2.5em;
  color: #0057B7; /* Ukraine-Blau */
  margin-bottom: 10px;
  text-align: center;
}

/* Haupttitel GROSS */
main h2 {
  font-size: 3.5em;
  color: #000000; /* weiss */
  margin-bottom: 10px;
  text-align: center;
}

/* Fliesstext */
main p {
  font-size: 1.2em;
  line-height: 1.6;
  color: #333;
}

/* Sprachumschalter */
.language-switcher {
  text-align: right;
  font-size: 0.9em;
  margin-bottom: 5px;
}

.language-switcher a {
  text-decoration: none;
  color: #FFD700;
  margin-left: 8px;
}

.language-switcher a:hover {
  color: #ffffff;
}


/* Responsives Layout */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
  }

  main h1 {
    font-size: 2em;
  }

  main p {
    font-size: 1em;
  }
}
.header-with-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px; /* Abstand zwischen Elementen */
}

.icons-left, .icons-right {
  display: flex;
  gap: 10px;
}

.icon {
  width: 30px;   /* kleine Icons */
  height: 30px;
  object-fit: contain;
}

.header-text h1 {
  margin: 0;
  font-size: 2,5em;
  font-weight: bold;
  color: #0057B7; /* Ukraine-Blau */
  text-align: center;
}

.header-text h2 {
  margin: 0;
  font-size: 3em;       /* gleich gross wie h1 */
  font-weight: 700;    /* normal fetter Schriftschnitt */
  text-align: center;
}

.header-text h2 .dezent {
  font-weight: 300;       /* schlanker, leichter Schriftschnitt */
  color: #555555;         /* dezenter Grauton */
  font-style: normal;
}


