/* Blog Post Page Styles */

.blog-post {
    min-height: 100vh;
    background: var(--bg-light);
}

.blog-post-header {
    position: relative;
    margin-top: 80px;
    height: 60vh;
    min-height: 500px;
    overflow: hidden;
}

.blog-post-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-post-header-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(26, 22, 17, 0.95) 0%, rgba(26, 22, 17, 0.7) 50%, transparent 100%);
    padding: 4rem 0 3rem;
    z-index: 2;
}

.back-to-blog {
    display: inline-block;
    color: var(--text-light);
    text-decoration: none;
    font-family: var(--body-font);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.back-to-blog:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.blog-post-title {
    font-family: var(--heading-font);
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: 2px;
}

.blog-post-meta {
    display: flex;
    gap: 2rem;
    font-family: var(--body-font);
    font-size: 1rem;
    color: var(--text-light);
    opacity: 0.9;
}

.blog-post-date,
.blog-post-category {
    display: flex;
    align-items: center;
}

.blog-post-category {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.blog-post-content {
    padding: 5rem 0;
    background: var(--bg-light);
}

.blog-post-body {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 4rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.blog-intro {
    font-family: var(--body-font);
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-weight: 400;
    font-style: italic;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--accent-color);
}

.blog-post-body h2 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: 1.5px;
}

.blog-post-body h3 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    letter-spacing: 1px;
}

.blog-post-body p {
    font-family: var(--body-font);
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(44, 36, 22, 0.8);
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.blog-post-body ul,
.blog-post-body ol {
    font-family: var(--body-font);
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(44, 36, 22, 0.8);
    margin-bottom: 1.5rem;
    margin-left: 2rem;
    font-weight: 400;
}

.blog-post-body li {
    margin-bottom: 0.8rem;
}

.blog-post-body strong {
    font-weight: 600;
    color: var(--text-dark);
}

.blog-post-footer {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--accent-color);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.blog-post-tags {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gradient-1);
    color: white;
    border-radius: 20px;
    font-family: var(--body-font);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-post-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.blog-post-share p {
    margin: 0;
    font-family: var(--body-font);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
}

.share-link {
    color: var(--primary-color);
    text-decoration: none;
    font-family: var(--body-font);
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.share-link:hover {
    color: var(--accent-color);
}

/* Responsive Styles for Blog Post Pages */
@media (max-width: 968px) {
    .blog-post-header {
        height: 50vh;
        min-height: 400px;
    }

    .blog-post-title {
        font-size: 2.8rem;
    }

    .blog-post-body {
        padding: 3rem;
    }

    .blog-intro {
        font-size: 1.2rem;
    }

    .blog-post-body h2 {
        font-size: 2.2rem;
    }

    .blog-post-body h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .blog-post-header {
        height: 40vh;
        min-height: 350px;
    }

    .blog-post-header-content {
        padding: 3rem 0 2rem;
    }

    .blog-post-title {
        font-size: 2.2rem;
    }

    .blog-post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .blog-post-body {
        padding: 2rem;
        margin: 0 1rem;
    }

    .blog-intro {
        font-size: 1.1rem;
    }

    .blog-post-body h2 {
        font-size: 1.9rem;
        margin-top: 2rem;
    }

    .blog-post-body h3 {
        font-size: 1.4rem;
        margin-top: 2rem;
    }

    .blog-post-body p {
        font-size: 1rem;
    }

    .blog-post-body ul,
    .blog-post-body ol {
        font-size: 1rem;
        margin-left: 1.5rem;
    }

    .blog-post-footer {
        flex-direction: column;
        gap: 1.5rem;
    }

    .blog-post-share {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .blog-post-header {
        height: 35vh;
        min-height: 300px;
    }

    .blog-post-title {
        font-size: 1.8rem;
    }

    .blog-post-body {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }

    .blog-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .blog-post-body h2 {
        font-size: 1.6rem;
    }

    .blog-post-body h3 {
        font-size: 1.3rem;
    }

    .blog-post-body p {
        font-size: 0.95rem;
    }
}

