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

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #111;
}

.container {
  max-width: 1200px;   /* limit content width (matches 1440px frame - 120px margins) */
  margin: 0 auto;      /* center the container horizontally */
  padding: 0 24px;     /* inner left/right spacing so content doesn’t touch edges */
}

.nav {
    border-bottom: 1px solid #111;
}

.nav-inner {
  display: flex;                     /* horizontal layout (like Auto Layout row) */
  align-items: center;               /* vertically center logo + links */
  justify-content: space-between;    /* push logo left, links right */
  padding: 20px 0;                   /* navbar height (top & bottom spacing) */
}

.nav-links {
  display: flex;                     /* arrange links in a row */
  align-items: center;               /* vertically align link text */
  gap: 32px;                         /* spacing between nav items */
}

.nav-links a {
  text-decoration: none;             /* remove default underline */
  color: #111;                     /* set link color */
  font-size: 14px;                   /* nav link text size */
}

.nav-footer {
    border-top: 1px solid #111;
}