@font-face {
    font-family: 'Doves';
    src: url('/fonts/doves-regular.woff2') format('woff2'),
         url('/fonts/doves-regular.woff') format('woff'),
         url('/fonts/doves-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Doves';
    src: url('/fonts/doves-bold.woff2') format('woff2'),
         url('/fonts/doves-bold.woff') format('woff'),
         url('/fonts/doves-bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Doves Headline';
    src: url('/fonts/doves-headline-regular.woff2') format('woff2'),
         url('/fonts/doves-headline-regular.woff') format('woff'),
         url('/fonts/doves-headline-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Doves Headline';
    src: url('/fonts/doves-headline-bold.woff2') format('woff2'),
         url('/fonts/doves-headline-bold.woff') format('woff'),
         url('/fonts/doves-headline-bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

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

body {
    font-family: 'Doves', serif;
    line-height: 1.4;
    color: #333;
    background-color: #faf8f3;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
header {
    background-color: #006400;
    border-bottom: 1px solid #004d00;
    padding: .25rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: 'Doves Headline', serif;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: #faf8f3;
}

.menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.menu li a {
    font-family: 'Doves', serif;
    text-decoration: none;
    color: #faf8f3;
    font-size: 1rem;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.menu li a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Main Content */
main {
    flex: 1;
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 3rem 2rem;
    gap: 3rem;
}

.content {
    flex: 1;
}

.content h1 {
    font-family: 'Doves Headline', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    max-width: 65ch;
    text-indent: 1em;
}

.content p:first-child,
.content h1 + p,
.content h2 + p,
.content h3 + p,
.content h4 + p,
.content h5 + p,
.content h6 + p {
    text-indent: 0;
}

/* Project Section Styling */
.content h2 {
    font-family: 'Doves Headline', serif;
    font-size: 1.75rem;
    font-weight: bold;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.content h2:first-of-type {
    margin-top: 1.5rem;
}

.content ul,
.content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
    max-width: 65ch;
}

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

.content li a {
    color: #006400;
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.content li a:hover {
    color: #004d00;
    text-decoration: underline;
}

.content blockquote {
    margin: 1.5rem 0;
    padding-left: 1rem;
    border-left: 2px solid #e0e0e0;
    font-style: italic;
    color: #666;
    line-height: 1.5;
}

.content blockquote p:last-child {
    margin-bottom: 0;
    text-align: right;
    font-size: 0.9rem;
    font-style: normal;
    color: #888;
    margin-top: 0.75rem;
    padding-right: 1rem;
}

.content blockquote p:last-child::before {
    content: "— ";
}

/* Right Column for Links */
.links-column {
    width: 200px;
    flex-shrink: 0;
}

.links-column h2 {
    font-family: 'Doves Headline', serif;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.links-column ul {
    list-style: none;
}

.links-column li {
    margin-bottom: 1rem;
}

.links-column a {
    font-family: 'Doves', serif;
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    display: block;
    transition: color 0.3s ease;
}

.links-column a:hover {
    color: #666;
}

/* Footer */
footer {
    background-color: #faf8f3;
    border-top: 1px solid #e0e0e0;
    padding: .25rem 2rem;
    text-align: center;
}

footer p {
    font-family: 'Doves', serif;
    font-size: 0.9rem;
    color: #666;
    margin: 0.25rem 0;
}

footer a {
    color: #006400;
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

footer a:hover {
    color: #004d00;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    main {
        flex-direction: column;
        padding: 2rem 1.5rem;
    }

    .links-column {
        width: 100%;
    }

    .menu {
        gap: 1rem;
        flex-wrap: wrap;
    }

    header {
        padding: .25rem 1.5rem;
    }

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

    .content h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
    }
}




