/* Global stylesheet: base background and font rules */
:root{
	--light-mode-bg: #f4f4f4;
    --max-width: 1240px;
}

html, body {
    height: 100%;
}

body {
    margin: 0;
    background-color: var(--light-mode-bg);
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', 'Helvetica Neue', Arial;
    font-weight: 400;
    letter-spacing: -0.05em;
    color: #111;
}

/* Headings use Lato and are bold */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Lato', system-ui, -apple-system, 'Segoe UI', 'Helvetica Neue', Arial;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    letter-spacing: 0.025em;
}

/* Paragraph and other body text use Plus Jakarta Sans Light */
p, span, a, li, label, input, button {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', 'Helvetica Neue', Arial;
}

strong {
    font-weight: 700;
}

h1 span, h2 span, h3 span, h4 span, h5 span, h6 span {
    font-family: 'Lato', system-ui, -apple-system, 'Segoe UI', 'Helvetica Neue', Arial;
    font-weight: 700;
}

/* Top navigation */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    z-index: 5;
    background: var(--light-mode-bg);
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(2,6,23,0.08);
    border-bottom: 1px solid #d0d0d0;
}
.site-nav .nav-inner { max-width: var(--max-width); margin: 0 auto; width: 100%; padding: 0 16px; display:flex; align-items:center; gap:16px; box-sizing:border-box; }
.site-nav .nav-left { position:relative; display:flex; align-items:center; }
.site-nav .nav-links { list-style:none; margin:0 0 0 100px; padding:0; display:flex; gap:12px; align-items:center; }
.site-nav .nav-links a { color:#000; text-decoration:none; font-weight:600; padding:6px 8px; text-transform: uppercase; letter-spacing: 0.025rem; }
.site-nav .nav-right { margin-left:auto; color:#07b57c; font-weight:600; }

/* Emblem banner overlapping nav */
.nav-banner {
    position: absolute;
    left: -8px;
    top: -20px; /* overlaps nav */
    width: 75px;
    height: 100px;
    background: #41aafd;
    z-index: 10;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:6px;
    box-shadow: 0 6px 14px rgba(2,6,23,0.12);
}
.nav-banner .logo-emblem { color:#fff; font-weight:700; font-size:0.9rem; }
.nav-banner .logo-emblem img { width: 100%; height: auto;  }

/* ensure body content is not hidden under the fixed nav */
body { padding-top: 50px; }
