:root {
    --primary-yellow: #FFD700;
    --deep-blue: #1a3a52;
    --ocean-blue: #2c5f7f;
    --light-sand: #fefdfb;
    --text-dark: #1a1a1a;
    --text-light: #666;
}

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

body {
    font-family: 'Work Sans', sans-serif;
    color: var(--text-dark);
    background: var(--light-sand);
    line-height: 1.6;
}

/* Header Section */
.header {
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--ocean-blue) 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><path d="M30 15 Q 35 20 30 25 Q 25 20 30 15 M 20 25 Q 15 30 20 35 M 40 25 Q 45 30 40 35" stroke="rgba(255,215,0,0.1)" fill="none" stroke-width="2"/></svg>');
    opacity: 0.3;
}

.site-title {
    font-family: 'DM Serif Display', serif;
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    letter-spacing: 1px;
}

.site-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

/* Navigation Links - Now stays horizontal across the page */
.nav-links {
    background: white;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-links ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    display: block;
    padding: 1.2rem 2rem;
    color: var(--deep-blue);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--primary-yellow);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: var(--ocean-blue);
    background: rgba(255, 215, 0, 0.05);
}

.nav-links a:hover::after {
    width: 80%;
}

/* Content Section */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.content {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    min-height: 400px;
}

.content h1 {
    font-family: 'DM Serif Display', serif;
    color: var(--deep-blue);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.content h2 {
    font-family: 'DM Serif Display', serif;
    color: var(--ocean-blue);
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.content h3 {
    color: var(--ocean-blue);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.content p {
    margin-bottom: 1.25rem;
    color: var(--text-light);
    font-size: 1.05rem;
}

.content ul, .content ol {
    margin-left: 2rem;
    margin-bottom: 1.25rem;
    color: var(--text-light);
}

.content li {
    margin-bottom: 0.5rem;
}

.content a {
    color: var(--ocean-blue);
    text-decoration: none;
    border-bottom: 2px solid var(--primary-yellow);
    transition: all 0.2s ease;
}

.content a:hover {
    color: var(--deep-blue);
    border-bottom-color: var(--ocean-blue);
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-title {
        font-size: 2.5rem;
    }

    /* On mobile, stack the menu items vertically for better usability */
    .nav-links ul {
        flex-direction: column;
    }

    .nav-links a {
        padding: 1rem;
        text-align: center;
    }

    .content {
        padding: 2rem;
    }

    .content h1 {
        font-size: 2rem;
    }

    .content-wrapper {
        padding: 2rem 1rem;
    }
}
