@charset "UTF-8";
:root {
  color-scheme: dark;
  --bg: #1a1a1a;
  --accent-bg: #000;
  --text: #dcdcdc;
  --text-light: #ababab;
  --accent: #FF511C;
  --accent-hover: #ff8640;
  --accent-text: var(--bg);
  --code: #f06292;
  --preformatted: #ccc;
  --disabled: #111;
}

* {
  font-family: "Satoshi", Futura, "Segoe UI", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
}

body h1 {
  font-weight: 900;
}
body h1, body h2 {
  color: var(--accent);
}
body .thin {
  font-weight: 300;
}
body button, body .button {
  font-weight: bold;
  color: var(--accent-bg);
  background-color: var(--accent);
}
body button:enabled:hover, body .button:not([aria-disabled=true]):hover {
  color: var(--accent);
  background-color: var(--accent-bg);
  border-color: var(--accent);
}
body header {
  background-color: var(--accent-bg);
  display: flex;
  align-items: center;
  padding: 1rem min(5%, 5rem);
  height: min-content;
  /* Mobile Layout */
}
body header h1 {
  margin: 0;
  flex-grow: 1;
  text-align: left;
  max-width: 100%;
}
body header h1 a {
  text-decoration: none;
}
body header h1 a:hover {
  color: var(--text);
}
body header nav {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
}
body header nav a {
  margin: 0;
  border: none;
  padding: 0.8rem;
  font-size: 1.15rem;
  text-decoration: none;
}
body header nav a:hover {
  background-color: transparent;
}
body header .menu-icon {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  color: white;
  padding: 0;
  margin: 0;
  flex-grow: 1;
  text-align: right;
}
body header .menu-icon:hover {
  background-color: transparent;
}
@media (max-width: 768px) {
  body header .menu {
    display: none;
    flex-direction: column;
    background: #000;
    position: absolute;
    top: 4.8rem; /* Höhe deines Headers */
    right: 0;
    padding: 1rem;
  }
  body header .menu.show {
    display: flex; /* sichtbar, wenn .show-Klasse aktiv ist */
  }
  body header .menu-icon {
    display: block;
  }
}
body .postlist {
  list-style: none;
  padding: 0%;
}
body .postlist a {
  text-decoration: none;
  color: var(--text);
}
body .postlist a li {
  margin: 16px 0;
  padding: 24px;
  outline: solid 1px var(--border);
  border-radius: 8px;
}
body .postlist a li h3 {
  margin: 0;
}
body .postlist a li .post-meta {
  margin: 0 0 8px 0;
}
body .postlist a li .post-preview, body .postlist a li .post-description {
  margin: 0;
  padding: 0;
}
body .postlist a :hover {
  background-color: var(--accent-bg);
  outline-color: var(--accent);
}
body .postlist a :hover h3 {
  color: var(--accent);
}
body .post-meta {
  color: var(--text-light);
  font-style: italic;
}
body article {
  padding: 0;
  margin: 0;
  outline: none;
  border: none;
}
body article .post-preview, body article .post-description {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 8px 0 0 0;
}
body article .post-meta {
  margin: 16px 0 32px 0;
}

/*# sourceMappingURL=main.css.map */