/* Site Navigation & Footer — shared across drewgarraway.com personal pages */

.site-nav {
    position: sticky;
    top: 0;
    z-index: 10;
    padding: 1.25rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(8px);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.site-nav .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-nav-home {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: color 0.2s;
}

.site-nav-home:hover {
    color: rgba(255,255,255,1);
}

/* Primary nav links (homepage + section indexes) */
.site-nav-links {
    display: flex;
    gap: 1.5rem;
}

.site-nav-links a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}

.site-nav-links a:hover,
.site-nav-links a.active {
    color: rgba(255,255,255,0.95);
}

/* Breadcrumb nav (content pages) */
.site-nav-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-nav-breadcrumb a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.site-nav-breadcrumb a:hover {
    color: rgba(255,255,255,0.85);
}

.nav-sep {
    color: rgba(255,255,255,0.2);
    font-size: 0.875rem;
}

.nav-current {
    color: rgba(255,255,255,0.4);
    font-size: 0.875rem;
}

/* Footer */
.site-footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 2rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.site-footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.site-footer-copy {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

.site-footer-links {
    display: flex;
    gap: 1.5rem;
}

.site-footer-links a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.2s;
}

.site-footer-links a:hover {
    color: rgba(255,255,255,0.75);
}

/* Responsive */
@media (max-width: 600px) {
    .site-nav {
        padding: 1rem 1.5rem;
    }

    .site-nav-links {
        gap: 1rem;
    }

    .site-nav-links a {
        font-size: 0.8rem;
    }

    .site-nav-breadcrumb {
        gap: 0.35rem;
    }

    .site-nav-breadcrumb a,
    .nav-sep,
    .nav-current {
        font-size: 0.8rem;
    }

    .site-footer-inner {
        flex-direction: column;
        text-align: center;
    }
}
