@font-face {
  font-family: 'HOMOARAK';
  src: url('/fonts/HOMOARAK.woff') format('woff');
  font-display: swap;
}

/* Dark theme overrides for MVP.css */
:root {
  --color-bg: #121212;
  --color-bg-secondary: #1e1e1e;
  --color-text: #e0e0e0;
  --color-text-secondary: #a0a0a0;
  --color-link: #6ea8fe;
  --color-accent: #6ea8fe;
  --color-shadow: rgba(0, 0, 0, 0.3);
}

/* Site title font */
header nav > a {
  font-family: 'HOMOARAK', sans-serif;
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
}

/* Reduce excessive spacing from MVP.css defaults */
nav {
  margin-bottom: 0rem;
}

header, main, footer {
  padding-top: 0rem;
  padding-bottom: 0rem;
}

/* Make links in paragraphs flow inline with text */
p a {
  display: inline;
}

/* Center footer icons and keep them horizontal on all screen sizes */
footer {
  text-align: center;
}
footer nav {
  display: inline-block;
}
footer nav ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
/* Wide card: horizontal image-left layout on desktop */
section aside.wide {
  width: var(--width-card-wide);
  max-width: 100%;
}

section aside.wide img {
  max-width: 256px;
  max-height: 256px;
  border-radius: var(--border-radius);
}

@media (min-width: 600px) {
  section aside.wide {
    display: grid;
    grid-template-columns: fit-content(256px) 1fr;
    gap: 0 1.5rem;
    align-items: start;
  }

  section aside.wide > p {
    width: auto;
  }

  section aside.wide > p:not(:first-child) {
    grid-column: 2;
  }
}

/* Make icons larger than the default 1em for footer */
footer iconify-icon {
  font-size: 3em;
}
