/* Grundlayout */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background: url('background.jpg') no-repeat center center fixed;
  background-size: cover;
}

body.disclaimer {
  background: url('background2.jpg') no-repeat center center fixed;
  background-size: cover;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #004466;
  color: white;
  padding: 15px 20px;
}

header img.logo-left {
  height: 50px;
  width: auto;
}

/* Flaggen */
.flags {
  display: flex;
  gap: 10px;
  align-items: center;
}

.flags img {
  width: 40px;
  height: auto;
  cursor: pointer;
  border-radius: 4px;
  transition: transform 0.2s;
}

.flags img:hover {
  transform: scale(1.1);
}

/* Inhalt */
section {
  max-width: 900px;
  margin: 40vh auto 30px auto; /* Abstand nach unten verschoben */
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

h1, h2 {
  color: #004466;
}

/* Footer */
footer {
  text-align: center;
  background: #004466;
  color: white;
  padding: 15px;
  margin-top: 30px;
}

footer a {
  color: white;
  text-decoration: underline;
}

/* Responsives Layout */
@media (max-width: 1024px) {
  header img.logo-left {
    height: 40px;
  }
  .flags img {
    width: 32px;
  }
  section {
    margin: 15px;
    padding: 15px;
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }
  .flags {
    margin-top: 10px;
  }
  section {
    margin: 15px;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  header img.logo-left {
    height: 30px;
  }
  .flags img {
    width: 28px;
  }
  h1 {
    font-size: 1.2em;
  }
  section {
    margin: 10px;
    padding: 10px;
  }
}

/* Adresse */
address {
  font-style: normal;
  margin-top: 15px;
  line-height: 1.6;
}

body.disclaimer section {
  background: transparent;
  color: white;
  box-shadow: none;
}

body.disclaimer h1 {
  color: white;
}

body.disclaimer h2 {
  color: darkred;
}

body.disclaimer a {
  color: #aad4ff; /* Links hellblau für Lesbarkeit */
}

/* Inhalt allgemein */
section {
  max-width: 900px;
  margin: 30vh auto 30px auto; /* Abstand nach unten verschoben */
  padding: 20px;
  background: transparent;      /* kein weißer Kasten */
  color: white;                 /* weiße Schrift */
  font-size: 1.2em;             /* eine Stufe größer */
  border-radius: 0;             /* keine runden Ecken nötig */
  box-shadow: none;             /* kein Schatten */
}

/* Überschriften */
h1 {
  color: #004466; /* Haupttitel oben bleibt dunkelblau */
}

h2 {
  color: darkred; /* Untertitel wie "Naše služby" dunkelrot */
}

/* Links im Haupttext */
section a {
  color: darkred;
  text-decoration: underline;
}

