/* ===== Grundlayout ===== */
body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif; /* Moderne, klare Schrift */
  line-height: 1.6;
  background-color: #f5f7fa; /* Sehr helles Grau-Blau als Hintergrund */
  color: #333; /* Dunkles Grau für Text */
}

/* ===== Menü ===== */
nav {
  background-color: #2c3e50; /* Dunkles Blau-Grau */
  padding: 20px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav a {
  color: #ecf0f1; /* Helles Grau-Weiß */
  margin: 0 15px;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  color: #1abc9c; /* Türkis-Akzent beim Hover */
}

/* ===== Banner ===== */
.banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== Inhaltsbereiche ===== */
.section {
  /*padding-left: 50px;*/
  padding: 20px 40px; /* Gleichmäßiger Abstand links und rechts */
  background: white;
  margin: 20px auto;
  max-width: 1400px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  border-radius: 6px;
  

}

.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 gleich große Spalten */
  gap: 40px; /* Abstand zwischen den Spalten */
  max-width: 1400px;               /* Macht den Spaltenbereich kompakter (z.B. 800px statt 1100px) */
  margin: 0 auto;                 /* Zentriert das komplette 2-Spalten-Raster im weißen Kasten */
}

.one-column {
  display: block;
}

/* ===== Überschriften ===== */
h1, h2, h3 {
  color: #2c3e50; /* Gleiche Farbe wie Menü für Konsistenz */
  margin-top: 0;
}

/* ===== Links im Text ===== */
.section a {
  color: #1abc9c; /* Türkis-Akzent */
  text-decoration: none;
}

.section a:hover {
  text-decoration: underline;
}

/* ===== Schatten-Effekt ===== */
.shadow-img {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 4px; /* Optional: Rundet die Ecken des Bildes minimal ab */
  transition: transform 0.2s ease, box-shadow 0.2s ease; /* Bereitet Hover-Effekt vor */
}


/* ===== Schatten-Effekt bei Mauszeiger (Hover) ===== */
.shadow-img:hover {
  transform: translateY(-2px); /* Bild hebt sich leicht an */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25); /* Schatten wird tiefer */
}





