/* Weber State Professional Theme */
:root {
    --wsu-purple: #46166b;
    --wsu-accent: #6d3a9d;
    --white: #ffffff;
    --gray-light: #f4f4f4;
    --text-dark: #222;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: var(--white);
}

header {
    background-color: var(--wsu-purple);
    color: var(--white);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 20px;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
    letter-spacing: 1px;
}

nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    background: var(--gray-light);
    padding: 10px;
    border-radius: 5px;
    position: sticky;
    top: 0;
}

nav a {
    text-decoration: none;
    color: var(--wsu-purple);
    font-weight: bold;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--wsu-accent);
}

h2 {
    color: var(--wsu-purple);
    border-bottom: 2px solid var(--wsu-purple);
    padding-bottom: 5px;
    margin-top: 2rem;
}

section {
    padding: 10px 0;
}

ul {
    list-style-type: square;
}

footer {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    font-size: 0.9rem;
    color: #666;
    border-top: 1px solid #eee;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    header h1 { font-size: 1.8rem; }
    nav { flex-direction: column; align-items: center; }
}