/* GLOBAL COLORS & NAV STYLES */
html {
    overflow-y: scroll;
    background-color: hsl(222, 47%, 6%);
}

:root {
    --primary-dark: #0a1628; /* Matches your hero background */
    --accent-teal: #3dd5c8;
    --accent-orange: #f59e0b;
    --text-light: #ffffff;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: hsl(222, 47%, 6%);
    color: hsl(210, 40%, 98%);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Suppress transitions during page load (class removed by nav.js after 50ms) */
html.no-transition * {
    transition: none !important;
    animation-duration: 0s !important;
}

/* Navigation Bar */
nav {
    background-color: var(--primary-dark);
    padding: 14px 2%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    width: 100%;
    min-height: 96px;
    box-sizing: border-box;
}

/* Spacer pushes page content below the fixed nav */
.nav-spacer {
    height: 96px;
}

.logo-container {
    height: 68px;
    display: flex;
    align-items: center;
}

.logo-container img {
    height: 68px;
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    padding-bottom: 5px !important;
    border-bottom: 2px solid transparent !important;
    display: inline-block;
}

.nav-links a:hover {
    color: var(--accent-teal) !important;
}

.nav-links .active {
    border-bottom: 2px solid var(--accent-teal);
    color: #ffffff !important;
}

@media (max-width: 1024px) {
    .nav-links { display: none; } /* Consider adding a hamburger menu later */
}
