@charset "UTF-8";
@font-face {
  font-family: "Mondwest";
  src: url("../fonts/PPMondwest-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Valve";
  src: url("../fonts/PPValve-PlainMedium.woff2") format("woff2");
}
@font-face {
  font-family: "Rader";
  src: url("../fonts/PPRader-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Neue Montreal";
  src: url("../fonts/PPNeueMontreal-Book.woff2") format("woff2");
}
@font-face {
  font-family: "Fraktion Mono";
  src: url("../fonts/PPFraktionMono-RegularItalic.woff2") format("woff2");
}
@font-face {
  font-family: "Jetbrains Mono";
  src: url("../fonts/JetBrainsMono-Regular.woff2") format("woff2");
}
.post-navigation {
  background-color: #211e33;
  border-bottom: 1.5px solid #332f48;
  padding: 0;
  margin-bottom: 2rem;
  position: fixed;
  width: 100vw;
  z-index: 100;
}

.nav-container {
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand a {
  font-size: 1.5rem;
  font-weight: bold;
  font-family: "Rader", "Century Gothic", sans-serif;
  text-decoration: none;
  color: #9966ff !important;
  padding-left: 1rem;
  transition: color 0.3s ease-in-out;
}
.nav-brand a:hover {
  color: #cfbbf6 !important;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5px;
  left: 0;
}

.nav-link {
  text-decoration: none;
  color: #9966ff;
  padding: 1rem;
  font-weight: 500;
  font-family: "Neue Montreal", "Arial", sans;
  transition: color 0.3s ease;
  outline: 1.5px solid #332f48;
  background: #211e33;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.nav-link:hover {
  color: #211e33 !important;
  background: #dadada !important;
}
.nav-link:visited {
  color: #9966ff;
}
.nav-link.dropdown-toggle {
  cursor: pointer;
}
.nav-link.dropdown-toggle::after {
  content: " ▼";
  font-size: 0.8rem;
  margin-left: 0.25rem;
  transition: transform 0.3s ease;
}

.nav-dropdown {
  position: relative;
}
.nav-dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}
.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #211e33;
  border: 1.5px solid #332f48;
  border-radius: 4px;
  padding: 0.5rem 0;
  min-width: 130px;
  display: none;
  z-index: 1000;
}

.dropdown-item {
  display: block;
  padding: 0.5rem 1rem;
  color: #9966ff;
  text-decoration: none;
  font-family: "Neue Montreal", "Arial", sans;
  transition: all 0.3s ease;
}
.dropdown-item:hover {
  background-color: #332f48;
  color: #cfbbf6;
}

@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  .nav-brand a {
    font-size: 1.25rem;
  }
  .dropdown-menu {
    position: static;
    display: block;
    box-shadow: none;
    border: none;
    padding: 0;
    margin-top: 0.5rem;
    background: transparent;
  }
  .nav-dropdown:hover .dropdown-menu {
    display: block;
  }
}
@media (max-width: 480px) {
  .nav-links {
    gap: 0.5rem;
  }
  .nav-link {
    font-size: 0.9rem;
  }
}
form {
  align-items: left;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

input {
  position: relative;
  display: flex;
  box-sizing: border-box;
  width: calc(100% - 2rem);
  max-width: 100%;
  height: 20%;
  margin: 0.7rem;
  padding: 1rem;
  color: var(--text-color);
  border: 1.5px solid var(--margin-color);
  outline: none;
  background-color: var(--widget-bg-color);
  font-family: "Rader", "Century Gothic", sans-serif;
  font-size: 1rem;
}

textarea {
  position: relative;
  display: flex;
  box-sizing: border-box;
  width: calc(100% - 2rem);
  max-width: 100%;
  height: 35%;
  margin: 0.7rem;
  padding: 1rem;
  color: var(--text-color);
  border: 1.5px solid var(--margin-color);
  outline: none;
  background-color: var(--widget-bg-color);
  font-family: "Rader", "Century Gothic", sans-serif;
  font-size: 0.75rem;
}

form button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: calc(100% - 2rem);
  max-width: 100%;
  height: 20%;
  margin: 0.7rem;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--text-color);
  border: 1.5px solid var(--margin-color);
  outline: none;
  background-color: var(--bg-color);
  font-family: "Rader", "Century Gothic", sans-serif;
  font-size: 1rem;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

form button:hover {
  color: var(--bg-color);
  border-color: var(--text-color);
  background-color: var(--text-color);
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

.footer {
  bottom: 0;
  display: grid;
  width: 100%;
  margin: 0;
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-top: 5rem;
  text-align: center;
  color: var(--text-color);
  border-top: 1.5px solid var(--margin-color);
  background-color: var(--widget-bg-color);
  font-family: "Rader", "Century Gothic", sans-serif;
  gap: 1vw;
  grid-template-columns: 1fr 1fr;
}

.footer h2 {
  padding-top: 0;
  padding-left: 5vw;
  text-align: left;
  font-size: 2rem;
}

.footer p {
  margin: 0;
  padding-right: 5vw;
  padding-left: 5vw;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: justify;
  font-size: 1.2rem;
  line-height: normal;
}

.footer-icon-container {
  display: flex;
  align-items: flex-end;
  justify-content: left;
  height: max-content;
  margin: 0;
  padding: 0;
  padding-right: 5vw;
  padding-left: 4.7vw;
}

.footer-icon {
  padding: 5px;
  color: var(--icon-color);
  font-size: 1.5rem;
  transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-icon:hover {
  color: var(--icon-hover-color);
}

.footer-form-container {
  display: flex;
  height: 100%;
}

:root {
  --bg-color: #211e33;
  --widget-bg-color: #211e33;
  --wall-bg-color: #dadada;
  --title-color: #dadada;
  --text-color: #dadada;
  --lighter-text-color: #dadada;
  --margin-color: #332f48;
  --icon-color: rgba(218, 218, 218, 0.5);
  --icon-hover-color: #cfbbf6;
}

.posts-list .posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
.posts-list .post-card {
  background: #211e33;
  border: 1.5px solid #332f48;
  border-radius: 8px;
  padding: 1.5rem;
  transition: transform 0.2s ease-out;
}
.posts-list .post-card:hover {
  transform: translateY(-5px);
}
.posts-list .post-card .post-title {
  margin: 0 0 1rem 0;
  font-size: 1.8rem;
}
.posts-list .post-card .post-title a {
  color: #dadada;
  text-decoration: none;
}
.posts-list .post-card .post-title a:hover {
  color: #cfbbf6;
}
.posts-list .post-card .post-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: rgba(218, 218, 218, 0.7);
}
.posts-list .post-card .post-meta .post-date {
  font-weight: 500;
}
.posts-list .post-card .post-meta .post-categories .category {
  background: rgba(183, 147, 255, 0.1);
  color: #b793ff;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
}
.posts-list .post-card .post-description,
.posts-list .post-card .post-excerpt {
  color: rgba(218, 218, 218, 0.8);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.posts-list .post-card .read-more {
  color: #b793ff;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
}
.posts-list .post-card .read-more:hover {
  color: #cfbbf6;
  text-decoration: underline;
}

@media (min-width: 800px) {
  .posts-list .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1400px) {
  .posts-list .posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.highlight table td {
  padding: 5px;
}

.highlight table pre {
  margin: 0;
}

.highlight,
.highlight .w {
  color: #dadada;
  background-color: #151226;
}

.highlight .k,
.highlight .kd,
.highlight .kn,
.highlight .kp,
.highlight .kr,
.highlight .kt,
.highlight .kv {
  color: #cf222e;
}

.highlight .gr {
  color: #f6f8fa;
}

.highlight .gd {
  color: #cf222e;
  background-color: #151226;
}

.highlight .nb {
  color: #ff6000;
}

.highlight .nc {
  color: #ff6000;
}

.highlight .no {
  color: #ff6000;
}

.highlight .nn {
  color: #ff6000;
}

.highlight .sr {
  color: #24c754;
}

.highlight .na {
  color: #24c754;
}

.highlight .nt {
  color: #24c754;
}

.highlight .gi {
  color: #24c754;
  background-color: #dafbe1;
}

.highlight .ges {
  font-weight: bold;
  font-style: italic;
}

.highlight .kc {
  color: #3890ff;
}

.highlight .l,
.highlight .ld,
.highlight .m,
.highlight .mb,
.highlight .mf,
.highlight .mh,
.highlight .mi,
.highlight .il,
.hig hlight .mo,
.highlight .mx {
  color: #3890ff;
}

.highlight .sb {
  color: #3890ff;
}

.highlight .bp {
  color: #3890ff;
}

.highlight .ne {
  color: #3890ff;
}

.highlight .nl {
  color: #3890ff;
}

.highlight .py {
  color: #3890ff;
}

.highlight .nv,
.highlight .vc,
.highlight .vg,
.highlight .vi,
.highlight .vm {
  color: #3890ff;
}

.highlight .o,
.highlight .ow {
  color: #3890ff;
}

.highlight .gh {
  color: #3890ff;
  font-weight: bold;
}

.highlight .gu {
  color: #3890ff;
  font-weight: bold;
}

.highlight .s,
.highlight .sa,
.highlight .sc,
.highlight .dl,
.highlight .sd,
.highlight .s2,
.highlight .se,
.highlight .sh,
.hi ghlight .sx,
.highlight .s1,
.highlight .ss {
  color: #3890ff;
}

.highlight .nd {
  color: #8250df;
}

.highlight .nf,
.highlight .fm {
  color: #8250df;
}

.highlight .err {
  color: #f6f8fa;
  background-color: #82071e;
}

.highlight .c,
.highlight .ch,
.highlight .cd,
.highlight .cm,
.highlight .cp,
.highlight .cpf,
.highlight .c1,
.highlight .cs {
  color: #6e7781;
}

.highlight .gl {
  color: #6e7781;
}

.highlight .gt {
  color: #6e7781;
}

.highlight .ni {
  color: #24292f;
}

.highlight .si {
  color: #24292f;
}

.highlight .ge {
  color: #24292f;
  font-style: italic;
}

.highlight .gs {
  color: #24292f;
  font-weight: bold;
}

body {
  font-family: "Neue Montreal", "Arial", sans;
  color: #dadada;
  line-height: 1.6;
  margin: 0;
  background-color: #211e33;
}

main {
  padding: 0 27vw;
}

@media (max-width: 600px) {
  main {
    padding: 0 7vw;
  }
}
h1 {
  color: #dadada;
  text-align: center;
  font-size: clamp(2rem, 5vw, 6rem);
  font-family: "Rader", "Century Gothic", sans-serif;
  font-weight: 500;
  line-height: 1;
  padding: 6rem 0 1rem 0;
  margin: 5vh 0 0 0;
}

h2 {
  color: #dadada;
  text-align: left;
  font-size: clamp(1.7rem, 3vw, 4rem);
  font-family: "Rader", "Century Gothic", sans-serif;
  font-weight: 500;
  line-height: 1;
  padding: 1rem 0 0 0;
  margin: 0;
}

h3 {
  color: #dadada;
  text-align: left;
  font-size: clamp(1.5rem, 2.5vw, 3rem);
  font-family: "Rader", "Century Gothic", sans-serif;
  font-weight: 500;
  line-height: 1;
  padding: 1rem 0 0 0;
  margin: 0;
}

h4 {
  color: #dadada;
  text-align: left;
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-family: "Rader", "Century Gothic", sans-serif;
  font-weight: 500;
  line-height: 1;
  padding: 1rem 0 0 0;
  margin: 0;
}

p {
  text-align: justify;
  font-family: "Neue Montreal", "Arial", sans;
  font-size: 1.1rem;
  margin: 0.5rem 0;
}

code {
  font-family: "Jetbrains Mono", monospace;
  line-height: 1.5;
  font-variant-ligatures: normal;
  text-wrap: balance;
}

pre code {
  font-size: 0.9rem;
}
pre .highlight {
  border: none;
}

div .highlight:not(pre) {
  border: 1.5px solid #332f48;
  margin: 1rem;
  padding: 0.5rem 1rem;
}

ul,
ol {
  font-family: "Neue Montreal", "Arial", sans;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 1rem 0;
  padding-left: 2rem;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

li {
  margin: 0.5rem 0;
  text-align: justify;
}

a {
  color: #b793ff;
  text-decoration: none;
}
a:hover {
  color: #cfbbf6;
}
a:visited {
  color: #9966ff;
}

hr {
  height: 1.5px;
  color: #332f48;
  background-color: #332f48;
  border: none;
}

footer {
  text-align: center;
  margin-top: 2rem;
  padding: 1rem;
  color: #dadada;
}

.subtitle {
  text-align: center;
  padding: 0 0 3rem 0;
  margin: 0;
}

html,
body {
  overflow-x: hidden; /* Remove horizontal scrollbar */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

::selection {
  background-color: #dadada;
  color: #211e33;
}

/* For Firefox compatibility */
::-moz-selection {
  background-color: #dadada;
  color: #211e33;
}

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