/* Shared styles used across the site (base + layout + nav + footer). */

/* Color Variables based on your Logo */
:root {
    --navy: #0d2a54; /* Match the dark blue in your logo */
    --gold: #e2b039; /* Match the yellow/gold in your logo */
    --white: #ffffff;
    --light-gray: #f4f4f4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: var(--white);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
nav {
    background: var(--navy);
    padding: 15px 0;
    border-bottom: 3px solid var(--gold);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 60px;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li a {
    color: var(--white);
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
}

/* Footer */
footer {
    background: var(--navy);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
    border-top: 3px solid var(--gold);
}

footer a {
    color: var(--gold);
}

.copyright {
    margin-top: 20px;
    opacity: 0.8;
}
