/* ================================
   DJMIKO.NET — SITE BASE STYLES
   Visual baseline: mixvault.html
   ================================ */

/* RESET */
* {
  box-sizing: border-box;
}

/* BODY */
body {
  margin: 0;
  background: radial-gradient(circle at top, #0d1b2a, #000);
  font-family: system-ui, -apple-system, sans-serif;
  color: #fff;
}

/* LINKS */
a {
  color: inherit;
  text-decoration: none;
}

/* NAVIGATION */
.site-header {
  background: #020b18;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav-wrap {
  max-width: 1100px;
  margin: auto;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
  letter-spacing: .12em;
  color: #fff;
}

nav a {
  margin-left: 18px;
  opacity: .7;
}

nav a.active,
nav a:hover {
  opacity: 1;
}

/* PAGE CONTAINER */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 32px 20px;
}

/* HEADINGS */
h1 {
  margin-top: 0;
  font-size: 28px;
  letter-spacing: .02em;
}

h2 {
  margin: 0 0 8px;
  font-size: 20px;
}

/* META / SUBTEXT */
.meta {
  opacity: .6;
}

/* MOBILE */
@media (max-width: 768px) {
  .container {
    padding: 24px 16px;
  }
}
