/* ===============================
   GLOBAL / BODY
=============================== */
html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: Arial, sans-serif;
  color: #333;
}

.greeting {
    font-size: 3rem;
    font-weight: 600;
    margin: 20px;
    color: #0077b6;
}
.linie {
    width: 100%;
    height: 1px;
    background-color: #333;
    margin: 20px 0;
}

/* ===============================
   FIXER HINTERGRUND
=============================== */
.fixed-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;

  background: linear-gradient(135deg,
    rgba(255,179,186,0.3),
    rgba(255,223,186,0.3),
    rgba(255,255,186,0.3),
    rgba(186,255,201,0.3),
    rgba(186,225,255,0.3),
    rgba(201,186,255,0.3)
  );
}

/* ===============================
   SUBNAVIGATION
=============================== */
.sub-nav {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.4);
}

.sub-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.sub-nav a {
  text-decoration: none;
  color: #003b70;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.25s ease;
}

.sub-nav a:hover {
  background: rgba(0,0,0,0.1);
}

.sub-nav a.active {
  background: #0077b6;
  color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* ===============================
   STARTTEXT / INTRO
=============================== */
.starttext-overview {
  max-width: 1000px;
  margin: 40px auto;
  padding: 25px;
  text-align: center;
  background: rgba(255,255,255,0.85);
  border-radius: 12px;
}

.starttext-overview h1 {
  font-size: 3rem;
  color: #0077b6;
  margin-bottom: 10px;
}

.starttext-overview h2 {
  font-size: 2.2rem;
  color: #0096c7;
  margin-bottom: 10px;
}

.starttext-overview h3 {
  font-size: 1.8rem;
  color: #00a6c7;
  margin-bottom: 15px;
}

.starttext-overview p {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* ===============================
   MAIN CONTENT
=============================== */
.main-content {
  max-width: 1200px;
  margin: 30px auto;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(255,255,255,0.85);
  border-radius: 12px;
}

/* ===============================
   BOXEN
=============================== */
.box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.box {
  background: #ffffff;
  padding: 18px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  flex: 1 1 250px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.box:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.box h3 {
  margin-bottom: 8px;
}

/* ===============================
   HALTUNG / TEXTBEREICH
=============================== */
.haltung-overview {
  max-width: 1000px;
  margin: 40px auto;
  padding: 25px;
  text-align: center;
  background: rgba(255,255,255,0.85);
  border-radius: 12px;
}

.haltung-overview h2 {
  font-size: 2rem;
  color: #0077b6;
  margin-bottom: 15px;
}

.haltung-overview p {
  font-size: 1.1rem;
}

/* ===============================
   BANNER / INKLUSION
=============================== */
.inklusion-banner-box {
  width: 100%;
  margin: 20px 0;
  display: flex;
  justify-content: center;
}

.inklusion-banner {
  width: 100%;
  max-width: 900px;
  border-radius: 12px;
  object-fit: cover;
}

/* ===============================
   CARD
=============================== */
.inklusion-card {
  background: rgba(255,255,255,0.9);
  padding: 20px;
  margin-top: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.inklusion-card ul {
  padding-left: 20px;
  line-height: 1.6;
}

/* ===============================
   FOOTER
=============================== */
.site-footer {
  text-align: center;
  padding: 15px;
  background: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  border-top: 1px solid rgba(0,0,0,0.1);
  margin-top: 40px;
}

/* ===============================
   MOBILE
=============================== */
@media (max-width: 1024px) {
  .box-container {
    flex-direction: column;
  }

  .starttext-overview h1 {
    font-size: 2.2rem;
  }
}
/* ===============================
   Tabelle
=============================== */
.standorte-tabelle {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.standorte-tabelle th,
.standorte-tabelle td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
}

.standorte-tabelle th {
    background: #f3f3f3;
    font-weight: bold;
}

.main-content {
    width: calc(100% - 320px);
}

.right-banner {
    width: 260px;
    background: #f7f7f7;
    border-left: 3px solid #d6d6d6;
    padding: 20px;
    position: sticky;
    top: 20px;
    height: fit-content;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

