/* ===== Allgemeines Layout ===== */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: #0d0d0d;
  color: #f0f0f0;
  font-family: 'Exo 2', sans-serif;
  text-align: center;
  overflow-x: hidden;
}

/* ===== Überschriften ===== */
h1 {
  font-family: 'Orbitron', sans-serif;
  color: #00ffc8;
  margin-top: 20px;
  font-size: 2.5em;
}

h2 {
  font-family: 'Orbitron', sans-serif;
  color: #00ffc8;
  margin: 30px 0 15px;
  font-size: 1.8em;
}

h3 {
  font-family: 'Exo 2', sans-serif;
  color: #00ffc8;
  margin: 20px 0 10px;
}

h4 {
  font-family: 'Orbitron', sans-serif;
  color: #ff3c00;
  margin-top: 20px;
  font-size: 2.5em;
}

/* ===== Text ===== */
p {
  color: #ff3c00;
  font-size: 1.2em;
  letter-spacing: 1px;
}

/* ===== Links ===== */
a, a:link, a:visited {
  color: #00ffc8;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover, a:focus {
  color: #ff3c00;
  text-decoration: underline;
}

/* ===== Projekt-Box ===== */
.project {
  max-width: 900px;
  margin: 40px auto;
  padding: 24px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  text-align: left;
  position: relative;
  z-index: 1;
}
.project h1 { text-align: center; }
.project p:last-of-type { text-align: center; }

/* ===== Tags ===== */
.tag {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid #00ffc8;
  border-radius: 999px;
  font-size: .85em;
  margin-right: 8px;
  color: #00ffc8;
}

/* ===== Buttons ===== */
.btn, .btn-download {
  display: inline-block;
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 8px;
  background: #00ffc8;
  color: #121212 !important;
  text-decoration: none;
  font-weight: 600;
}
.btn:hover, .btn-download:hover {
  background: #ff3c00;
  color: #121212 !important;
}

/* ===== Tabellen & Listen ===== */
.project ul, ul {
  list-style-position: inside;
  text-align: center;
  padding-left: 0;
}

.wiring {
  margin: 16px auto;
  border-collapse: collapse;
  font-size: 0.95em;
}
.wiring th, .wiring td {
  border: 1px solid #2a2a2a;
  padding: 8px 10px;
}
.wiring th {
  background: #1f1f1f;
  color: #00ffc8;
  text-align: center;
}
.wiring tr:nth-child(even) { background: #181818; }

/* ===== Download-Abschnitte ===== */
.download-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 24px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  text-align: left;
  position: relative;
  z-index: 1;
}
.download-section h2,
.download-section h3 {
  color: #00ffc8;
  margin-top: 20px;
}

/* ===== Seitenlayout mit Randbannern ===== */
.page {
  position: relative;
  min-height: 100%;
}

/* Hintergrund-Banner-Container */
.background-banners {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
}

/* Einzelne Banner */
.edge-banner {
  height: 100%;
  width: auto;
  max-width: 250px; /* Bannerbreite */
  opacity: 0.85;
  object-fit: cover;
  filter: drop-shadow(0 0 6px rgba(0,0,0,0.4));
}

/* Inhalt über Bannern */
header, main, section, footer, .project {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 260px;  /* Platz für Banner links */
  padding-right: 260px; /* Platz für Banner rechts */
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
  header, main, section, footer, .project {
    padding-left: 160px;
    padding-right: 160px;
  }
}
@media (max-width: 800px) {
  .edge-banner { display: none; }
  header, main, section, footer, .project {
    padding-left: 24px;
    padding-right: 24px;
  }
}



