/* =========================
   Farben & Variablen
   ========================= */

:root {
  --bg-main: #faf9f6;
  --bg-header: #f1e4c6;
  --bg-footer: #ece7dc;

  --text-main: #2f2f2f;
  --text-muted: #555;

  --accent: #c89b3c;
  --accent-dark: #b0882f;

  --border-soft: #ddd;
}

/* =========================
   Reset & Basis
   ========================= */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, Ubuntu,
               "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  background-color: var(--bg-main);
  color: var(--text-main);
}

/* =========================
   Header
   ========================= */
.lang-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-right: 0.4rem;
}
.menu-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-left: 0.4rem;
}
.lang-nav button.active {
  background-color: var(--accent);
  color: #fff;
  border-color: var(--accent-dark);
}
.site-header {
  background-color: var(--bg-header);
  padding: 2.5rem 1rem 1.8rem;
  border-bottom: 1px solid var(--border-soft);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.logo {
  width: 180px;
  height: auto;
}

.header-text h1 {
  margin: 0;
  font-size: 2.4rem;
  font-weight: 600;
}

.subtitle {
  margin: 0.4rem 0 0;
  color: var(--text-muted);
}

/* =========================
   Navigation
   ========================= */

.lang-nav {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.lang-nav button,
.lang-nav a {
  font-size: 0.9rem;
  padding: 0.35rem 0.7rem;
  border-radius: 4px;
  border: 1px solid var(--border-soft);
  background: transparent;
  color: var(--text-main);
  text-decoration: none;
  cursor: pointer;
}

.lang-nav button:hover,
.lang-nav a:hover {
  background-color: var(--accent);
  border-color: var(--accent-dark);
}

/* =========================
   Hauptlayout
   ========================= */

.content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.2rem;
}

.layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 3rem;
  align-items: start;
}

/* =========================
   Linke Spalte – Bilder
   ========================= */

.image-column {
  width: 360px;
  max-width: 360px;
}

.feature-image {
  margin-bottom: 2.2rem;
  cursor: pointer;
}

.feature-image img {
  display: block;
  max-width: 100%;
  height: auto;
}

.feature-image figcaption {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* kurzer Text unter kleinem Bild */
.feature-image .long-text {
  display: none;
}

/* =========================
   Bild-Overlay (AKTIV)
   ========================= */

.feature-image.active {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.6);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

/* großes Bild */
.feature-image.active img {
  max-width: 80vw;
  max-height: 60vh;
  width: auto;
  height: auto;

  background: #fff;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

/* langer Text unter großem Bild */
.feature-image.active .long-text {
  display: block;
  margin-top: 1.5rem;
  padding: 1.2rem 1.4rem;
  background: #fff;
  border-radius: 6px;
  max-width: 640px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #222;
  overflow-y: auto;
}

/* Caption im Overlay ausblenden */
.feature-image.active figcaption {
  display: none;
}

/* =========================
   Rechter Bereich – Text
   ========================= */

.text-column {
  max-width: 640px;
}

section {
  margin-bottom: 3rem;
}

section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-left: 0.6rem;
  border-left: 4px solid var(--accent);
}

section p {
  margin-bottom: 1rem;
}

section ul {
  margin-left: 1.4rem;
}

section li {
  margin-bottom: 0.4rem;
}

.closing {
  border-top: 1px solid var(--border-soft);
  padding-top: 2rem;
}

/* =========================
   Footer
   ========================= */

.site-footer {
  background-color: var(--bg-footer);
  text-align: center;
  padding: 1.2rem 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-soft);
}
/* =========================
   Download
   ========================= */
	.download-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin: 2.5rem 0;
}

.download-item {
  padding: 1.4rem;
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  background: #fff;
}

.download-item h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
}

.download-btn {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-soft);
  text-decoration: none;
  color: var(--text-main);
  border-radius: 4px;
}

.download-btn:hover {
  background: var(--accent);
  border-color: var(--accent-dark);
}

/* Kein Linux Bereich */

.no-linux {
  margin-top: 3rem;
}

.info-btn {
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--border-soft);
  background: transparent;
  cursor: pointer;
}

.info-btn:hover {
  background: var(--accent);
  border-color: var(--accent-dark);
}

.info-box {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  background: #fff;
  max-width: 640px;
}

.hidden {
  display: none;
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 900px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .image-column {
    width: 100%;
    max-width: none;
  }
}
/* =========================
   Roadmap
   ========================= */
.roadmap-list {
  list-style: none;
  padding-left: 0;
}

.status-done {
  opacity: 0.7;
  border-color: green;
}

.status-discarded {
  opacity: 0.5;
  border-color: #999;
}

.done {
  color: green;
  font-weight: bold;
}

.discarded {
  color: #666;
  font-style: italic;
}
.roadmap-item {
  padding: 1rem;
  margin-bottom: 1rem;
  border-left: 5px solid;
  border-radius: 4px;
}
.tag.planned {
  background: #c89b3c;
  color: #fff;
}
.status-planned {
  border-color: #c89b3c; /* Akzent-Farbe */
  background: #fffbe6;
}

.status-done {
  border-color: #4caf50; /* grün */
  background: #e8f5e9;
  opacity: 0.85;
}

.status-discarded {
  border-color: #999999;
  background: #f4f4f4;
  opacity: 0.6;
}