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

:root {
    --primary: #1a3a52;
    --secondary: #2c4f6a;
    --accent: #d4a855;
    --gold: #d4a855;
    --text: #333;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --dark: #0d1f2d;
    --navy: #1a3a52;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: var(--text);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', serif;
}

/* Header - Standardized Across All Pages */
.header {
    background: var(--navy);
    color: var(--white);
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid var(--gold);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left h1 {
    font-family: 'Georgia', serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 0.3rem;
    font-weight: normal;
    letter-spacing: 0.5px;
}

.header-left p {
    font-size: 1.05rem;
    color: var(--white);
    font-style: italic;
}

nav {
    flex-shrink: 0;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--gold);
    font-family: 'Georgia', serif;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
    padding-bottom: 0.25rem;
}

.nav-menu a:hover {
    color: var(--white);
    border-bottom-color: var(--white);
}

/* All active nav links get gold underline */
.nav-menu a.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

/* Card Design - Standardized */
.card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border: 1px solid #e0e0e0;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-date {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.card-title {
    color: var(--navy);
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    font-family: 'Georgia', serif;
    line-height: 1.3;
}

.card-description {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.card-cta {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

/* Alternating CTA colors */
.card:nth-child(odd) .card-cta {
    color: var(--gold);
}

.card:nth-child(even) .card-cta {
    color: var(--navy);
}

/* Footer - Standardized Across All Pages */
.footer {
    background: var(--navy);
    color: var(--white);
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1;
}

.footer h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-family: 'Georgia', serif;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
}

.footer-nav a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
    font-family: 'Georgia', serif;
}

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

.footer-contact p {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-family: 'Georgia', serif;
}

.footer-contact a {
    color: var(--gold);
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 168, 85, 0.3);
    text-align: center;
}

.footer-bottom p {
    color: var(--white);
    font-size: 0.9rem;
    font-family: 'Georgia', serif;
}

/* Content Sections */
.content {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.content h2 {
    color: var(--navy);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content h3 {
    color: var(--navy);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .header {
        flex-direction: column;
        padding: 1.5rem 2rem;
        gap: 1rem;
    }

    .header-left h1 {
        font-size: 2rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .nav-menu a {
        font-size: 0.95rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-nav {
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (max-width: 640px) {
    .header {
        padding: 1rem;
    }

    .header-left h1 {
        font-size: 1.5rem;
    }

    .nav-menu {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .nav-menu a {
        font-size: 0.85rem;
    }

    .content {
        padding: 0 1rem;
    }
}

/* Blog Post Full Page Styles */
.blog-post-full {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.post-header {
    margin-bottom: 3rem;
    text-align: center;
}

.post-header h1 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
    line-height: 1.3;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content h2 {
    font-size: 1.8rem;
    color: var(--navy);
    margin: 2.5rem 0 1.5rem 0;
    font-family: 'Georgia', serif;
}

.post-content strong {
    font-weight: 600;
    color: var(--navy);
}

.post-content em {
    font-style: italic;
}

.post-content a {
    color: var(--navy);
    text-decoration: underline;
}

.post-content a:hover {
    color: var(--accent);
}

.post-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-gray);
}

.back-link {
    color: var(--navy);
    text-decoration: none;
    font-weight: 500;
}

.back-link:hover {
    color: var(--accent);
}

@media (max-width: 640px) {
    .blog-post-full {
        padding: 0 1rem;
        margin: 2rem auto;
    }

    .post-header h1 {
        font-size: 2rem;
    }

    .post-content {
        font-size: 1rem;
    }

    .post-content h2 {
        font-size: 1.5rem;
    }
}
