/* Blog Post Styles */

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

:root {
    --dark-bg: #0A0A0A;
    --dark-secondary: #1A1A1A;
    --dark-tertiary: #2A2A2A;
    --gold: #B09256;
    --gold-light: #C4A266;
    --blue: #1E88E5;
    --blue-light: #42A5F5;
    --text-primary: #F5F5F5;
    --text-secondary: #B8B8B8;
    --text-tertiary: #888888;
}

body {
    font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.8;
    font-weight: 300;
    overflow-x: hidden;
}

/* Navigation - Same as main site */
nav {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(176, 146, 86, 0.15);
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.logo-container:hover {
    opacity: 0.8;
}

.logo-image-img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 3px;
    font-family: 'Work Sans', sans-serif;
}

.logo-subtext {
    font-size: 0.65rem;
    color: var(--text-tertiary);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
}

nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

nav a:hover::after {
    width: 100%;
}

/* Blog Post Article */
.blog-post {
    max-width: 800px;
    margin: 0 auto;
    padding: 10rem 5% 4rem;
}

.post-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(176, 146, 86, 0.2);
}

.post-category {
    color: var(--blue-light);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.post-header h1 {
    font-size: 3.5rem;
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.post-subtitle {
    font-size: 1.4rem;
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

.post-date, .post-author {
    letter-spacing: 0.5px;
}

/* Post Content */
.post-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-primary);
}

.post-content .lead {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

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

.post-content h2 {
    font-size: 2rem;
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold);
    font-weight: 400;
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.post-content h3 {
    font-size: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold-light);
    font-weight: 400;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.post-content strong {
    color: var(--gold-light);
    font-weight: 500;
}

.post-content .highlight {
    background: rgba(176, 146, 86, 0.1);
    border-left: 3px solid var(--gold);
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    font-style: italic;
    color: var(--text-primary);
    font-size: 1.15rem;
}

.post-content ul, .post-content ol {
    margin: 1.5rem 0 1.5rem 2rem;
    color: var(--text-secondary);
}

.post-content li {
    margin-bottom: 0.8rem;
}

.post-content a {
    color: var(--blue-light);
    text-decoration: none;
    border-bottom: 1px solid rgba(8, 133, 105, 0.3);
    transition: all 0.3s ease;
}

.post-content a:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

/* Post Footer */
.post-footer {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(176, 146, 86, 0.2);
}

.author-bio {
    background: var(--dark-secondary);
    padding: 3rem;
    border-radius: 0;
    margin-bottom: 3rem;
    border-left: 3px solid var(--gold);
}

.author-bio h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.author-bio p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.author-bio strong {
    color: var(--text-primary);
}

.post-cta {
    background: linear-gradient(135deg, var(--dark-secondary) 0%, var(--dark-tertiary) 100%);
    padding: 3rem;
    text-align: center;
    border-radius: 0;
    border-top: 2px solid var(--gold);
}

.post-cta h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.post-cta p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--gold);
    color: var(--dark-bg);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    font-size: 0.95rem;
}

.cta-button:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(176, 146, 86, 0.3);
}

/* Related Posts */
.related-posts {
    background: var(--dark-secondary);
    padding: 5rem 5%;
}

.related-posts .container {
    max-width: 1200px;
    margin: 0 auto;
}

.related-posts h2 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 3rem;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.related-card {
    background: var(--dark-bg);
    padding: 2.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid var(--gold);
}

.related-card:hover {
    transform: translateX(10px);
    border-left-color: var(--blue-light);
}

.related-card h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-family: 'Cormorant Garamond', serif;
}

.related-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Footer */
footer {
    background: var(--dark-bg);
    border-top: 1px solid rgba(176, 146, 86, 0.2);
    padding: 2rem 5%;
    text-align: center;
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
}

.copyright {
    color: var(--text-tertiary);
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        padding: 1rem 5%;
    }

    nav ul {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .logo-image-img {
        width: 45px;
        height: 45px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .logo-subtext {
        font-size: 0.6rem;
    }

    .blog-post {
        padding: 8rem 5% 3rem;
    }

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

    .post-subtitle {
        font-size: 1.1rem;
    }

    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

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

    .post-content .lead {
        font-size: 1.1rem;
    }

    .post-content h2 {
        font-size: 1.6rem;
        margin-top: 2.5rem;
    }

    .author-bio, .post-cta {
        padding: 2rem;
    }

    .related-posts {
        padding: 3rem 5%;
    }
}

@media (max-width: 480px) {
    .post-header h1 {
        font-size: 1.8rem;
    }

    .post-cta h3 {
        font-size: 1.5rem;
    }

    nav ul {
        flex-wrap: wrap;
        gap: 0.8rem;
    }
}

html {
    scroll-behavior: smooth;
}
