/* ===============================
   BODY & HINTERGRUND
=============================== */
html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  background: linear-gradient(135deg,
      rgba(255,179,186,0.2),
      rgba(255,223,186,0.2),
      rgba(255,255,186,0.2),
      rgba(186,255,201,0.2),
      rgba(186,225,255,0.2),
      rgba(201,186,255,0.2)
  );
}

/* ===============================
   HEADER MIT HINTERGRUNDBILD
=============================== */
.site-header {
  background-image: url('/backup/assets/img/hintergrund/ChatGPT_Image_17._Nov._2025_12_42_38.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 200px;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: relative;
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.25);
  z-index: 1;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
  flex-wrap: wrap; /* ← WICHTIG */
}


.logo img {
  max-height: 60px;
}

/* ===============================
   NAVIGATION
=============================== */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  padding: 8px 12px;
  background: rgba(255,255,255,0.6);
  border-radius: 6px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: 0.25s ease;
}

.main-nav a:hover {
  background: rgba(255,255,255,0.85);
  color: #003b70;
  transform: scale(1.05);
}

/* ===============================
   SUBNAVIGATION
=============================== */
.sub-nav {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(6px);
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  position: relative;
  z-index: 20;
}

.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);
}

/* ===============================
   IMPRESSUM / DATENSCHUTZ BOXEN
=============================== */
.impressum-container {
  max-width: 900px;
  margin: 80px auto 40px auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.impressum-container h1 {
  font-size: 2.6rem;
  color: #0077b6;
  text-align: center;
  margin-bottom: 10px;
}

.impressum-box {
  background-color: rgba(255,255,255,0.95);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.impressum-box h2 {
  font-size: 1.5rem;
  color: #0096c7;
  margin-bottom: 10px;
}

.impressum-box p {
  font-size: 1.1rem;
  color: #333;
}

.impressum-box a {
  color: #0077b6;
  text-decoration: none;
}

.impressum-box a:hover {
  text-decoration: underline;
}

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

/* ===============================
   MOBILE
=============================== */
@media (max-width: 1024px) {
  .impressum-container {
    padding: 15px;
  }

  .impressum-container h1 {
    font-size: 2.2rem;
  }

  .impressum-box h2 {
    font-size: 1.3rem;
  }
}
