/* General */

:root {
  --bg: #000000;
  --fg: #e6e6e6;
  --muted: #9aa0a6;
  --accent: #e4ecfd;
}

* {
  box-sizing: border-box;
}

html {
  scrollbar-gutter: stable;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 0;
}

body {
  margin: 0 5vh;
  font-family: system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: var(--accent);
}

/* Skelleton */

.site-header {
  position: relative;
  height: 150px;
  overflow: hidden;
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("/img/header.png");
  background-size: cover;
  background-position: top;
  mask-image:
    linear-gradient(to bottom, black 0%, transparent 100%),
    linear-gradient(
      to right,
      transparent 0%,
      black 25%,
      black 75%,
      transparent 100%
    );
  mask-composite: intersect;
}

.site-header nav {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 3rem);
}

.nav-list {
  display: flex;
  justify-content: space-between; /* Spread items evenly */
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer {
  margin-top: auto;
  padding: 1.5rem 1rem;
  text-align: center;
  font-size: 0.875rem;
  color: #666;
  border-top: 1px solid #333;
}
