/* Color Palette */
:root {
    --ocean-deep: #1f3a5f;
    --ocean-light: #3e7cb1;
    --sea-foam: #d9f0f7;
    --sand: #f4f1ea;
    --charcoal: #2b2b2b;
    --white: #ffffff;
}

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

/* Body */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--sand);
    color: var(--charcoal);
    line-height: 1.6;
}

/* Layout */
.container {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.site-header {
    display: flex;
    align-items: center;
    gap: 60px; /* space between logo and nav */
    padding: 20px 40px;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--ocean-deep);
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--ocean-light);
}

nav a.active {
    border-bottom: 2px solid var(--ocean-light);
    padding-bottom: 4px;
}

/* Remove bullets and make inline */
.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #1f3a5f;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3e7cb1;
}

.csumb-logo {
    width: 160px;
    height: auto;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 50px;
}

.hero h1 {
    font-size: 3rem;
    color: var(--ocean-deep);
}

.tagline {
    font-size: 1.2rem;
    color: var(--ocean-light);
    margin-top: 10px;
}

/* Sections */
section {
    margin-bottom: 50px;
}

h2 {
    margin-bottom: 15px;
    color: var(--ocean-deep);
    font-weight: 600;
}

ul {
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 0;
    background-color: var(--white);
    margin-top: 60px;
    font-size: 0.9rem;
    color: #777;
}