    body {
      margin: 0;
      font-family: Arial, sans-serif;
      line-height: 1.6;
    }

		*, *::before, *::after {
		  box-sizing: border-box;
		}

    /* ---------------------- Popup Overlay ---------------------- */

    .warning-modal {
      position: fixed;
      inset: 0;
      background: rgba(30,30,30,0.55);
      backdrop-filter: blur(4px);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;

      opacity: 1;
      animation: fadeIn 0.5s ease;
    }

		.warning-modal {
		  opacity: 0;
		  visibility: hidden;
		  transition: opacity 0.4s ease, visibility 0.4s ease;
		}

		.warning-modal.show {
		  opacity: 1;
		  visibility: visible;
		}


    @media (prefers-reduced-motion: reduce) {
      .warning-modal {
        animation: none;
      }
    }

    .warning-modal-content {
      background: #fff;
      max-width: 450px;
      width: 90%;
      padding: 25px 30px;
      border-radius: 12px;
      box-shadow: 0 6px 25px rgba(0,0,0,0.15);

      animation: slideUp 0.45s ease;
    }

    @media (prefers-reduced-motion: reduce) {
      .warning-modal-content {
        animation: none;
      }
    }

    .hidden {
      animation: fadeOut 0.45s ease forwards;
    }

    .continue-btn {
      display: block;
      background-color: #4a7abc;
      color: #fff;
		  padding: 0.6rem 1.4rem;
      /* padding: 12px 18px; */
		  margin: 1.5rem auto 0; /* auto = horizontal zentriert */
      margin-top: 12px;
      border: none;
      border-radius: 6px;
      font-size: 1rem;
      cursor: pointer;
    }

    .continue-btn:hover,
    .continue-btn:focus {
      background-color: #3c679e;
      outline: none;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }

    @keyframes fadeOut {
      from { opacity: 1; }
      to   { opacity: 0; visibility: hidden; }
    }

    @keyframes slideUp {
      from { transform: translateY(20px); opacity: 0; }
      to   { transform: translateY(0);    opacity: 1; }
    }

    /* ---------------------- Banner ---------------------- */

		 /* Platzhalter für Header, bevor er geladen ist */
		#header {
		  min-height: 40vh;   /* gleiche Höhe wie dein Banner */
		}

		/* Unterseiten kleiner */
		.subpage #header {
		  min-height: 40vh;
		}

   header img {
      width: 100%;
      height: auto;
      display: block;
    }

		/* Hamburger Button standardmäßig ausblenden (nur auf Mobilgeräten sichtbar) */
		.menu-toggle {
		  display: none;
		  background: none;
		  border: none;
		  color: #fff;
		  font-size: 1.8rem;
  		cursor: pointer;
  	}

		.site-header {
		  background-image: url("../graphics/blitz.jpg");
		  background-size: cover;
		  background-position: center;
		  background-repeat: no-repeat;

		  min-height: 40vh;        /* Höhe des Banners */
		  color: white;
		  display: block;
		  align-items: center;
		  position: relative;
		}

		.header-content {
		  position: absolute;
		  top: 0;
		  left: 0;
		  right: 0;
		  max-width: 1200px;
		  margin: 0 auto;

		  display: flex;
		  align-items: center;
		  justify-content: space-between;
		  gap: 3rem;                 /* Abstand Logo ↔ Menü */

		  padding: 1.25rem 2rem;
		  background: rgba(80, 0, 0, 0.5);
		}

		.home .site-header {
		  min-height: 40vh;
		}

		.subpage .site-header {
		  min-height: 40vh;
		  background-position: center top;
		}

		.logo a {
		  color: #fff;
		  font-size: 1.4rem;
		  font-weight: 700;
		  letter-spacing: 0.05em;
		  text-decoration: none;
		  white-space: nowrap;
		}

		.logo {
		  padding-right: 1rem;
		  border-right: 1px solid rgba(255,255,255,0.4);
		}

		.main-nav ul {
		  display: flex;
		  gap: 1.8rem;

		  list-style: none;
		  margin: 0;
		  padding: 0;
		}

		.main-nav a {
		  color: #fff;
		  text-decoration: none;
		  position: relative;    /* für ::after nötig */
		  font-weight: 500;
		  font-size: 1rem;
		  padding: 0.3rem 0;
		}

		.main-nav a:hover,
		.main-nav a:focus {
		  border-bottom: 2px solid #fff;
		}

		.main-nav a::after {
		  content: "";
		  display: block;
		  height: 2px;
		  background: #fff;
		  transform: scaleX(0);
		  transition: transform 0.2s ease;
		  position: absolute;
		  bottom: 0;  /* Linie am unteren Rand des Links */
		  left: 0;
		  width: 100%;
		}

		.main-nav a:hover::after {
		  transform: scaleX(1);
		}

		@media (min-width: 769px) {
				  .main-nav ul {
				    flex-direction: row;
				  }
				}

		/* Responsive Anpassungen für Smartphones */
		@media (max-width: 768px) {

		  .header-content {
		    position: relative;
		    width: 100%;
		    flex-wrap: nowrap;
		    justify-content: space-between;
		    gap: 0;
		  }

		  .main-nav {
		    position: absolute;
		    top: 100%;
		    left: 0;
		    width: 100%;
		  }

		  .menu-toggle {
		    display: block;
		    font-size: 1.8rem;
		    margin-left: auto;
		  }

		  .main-nav ul {
		    display: none;
		    flex-direction: column;
		    background: rgba(80,0,0,0.4);
		    padding: 1rem 2rem;
		  }

		  .main-nav.active ul {
		    display: flex;
		    flex-direction: column;
		    background: rgba(80, 0, 0, 0.4);
		    padding: 1rem 2rem;
		  }
		}

		/* --------   Footer  ------------------------- */
		
		.site-footer {
		  background: #611;
		  color: #aaa;
		  margin-top: 4rem;
		}

		.footer-inner {
		  max-width: 1200px;
		  margin: 0 auto;
		  padding: 1.5rem 2rem;

		  display: flex;
		  justify-content: space-between;
		  align-items: center;
		  gap: 1rem;
		}

		.site-footer a {
		  color: #aaa;
		  text-decoration: none;
		  font-size: 0.9rem;
		}

		.site-footer a:hover {
		  color: #fff;
		}

		.site-footer .footer-copy {
		  color: #fff;
		  font-size: 0.9rem;
		}

		.site-footer {
		  border-top: 1px solid rgba(255,255,255,0.1);
		}

		@media (max-width: 600px) {
		  .footer-inner {
		    flex-direction: column;
		    text-align: center;
		  }
		}

    /* ---------------------- Hauptinhalt ---------------------- */
    .content {
      padding: 20px;
      max-width: 800px;
      margin: auto;
    }

    .content img {
      max-width: 100%;
      height: auto;
      margin: 15px 0;
      border-radius: 6px;
    }

    a {
      color: #2e5ead;
    }

    a:hover {
      text-decoration: underline;
    }

		/* Ergänzungen für Projekte */
				
		.container {
		  max-width: 1200px;
		  margin: 2rem auto;
		  padding: 0 1rem;
		}

		.projekt-liste {
		  display: grid;
		  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		  gap: 2rem;
		}

		.projekt img {
		  width: 100%;
		  height: auto;
		  border-radius: 8px;
		}

		.projekt h2 {
		  margin: 0.5rem 0 0.3rem;
		}

		.projekt p {
		  margin: 0;
		  font-size: 0.95rem;
		  color: #333;
		}

/* Allgemeiner Rahmen für Unterseiten */
.subpage .container {
  max-width: 900px;
  margin: 1.5rem auto;
  padding: 1rem;

  background-color: #fff;
}

.subpage h1 {
  margin-top: 0;
  font-size: 2rem;
  text-align: center;
  color: #222;
}

.subpage p {
  line-height: 1.6;
  font-size: 1rem;
  color: #444;
}
