/* Single Post Styles - Golden Vintage Theme */

/* Post Header */
.blog-post-single .post-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #d4af37;
    position: relative;
}

.blog-post-single .post-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #b8860b, #d4af37, #b8860b);
}

.blog-post-single .post-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-golden);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.blog-post-single .post-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: #8b6914;
    margin-bottom: 1rem;
}

.blog-post-single .post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-post-single .post-meta i {
    color: #d4af37;
    font-size: 1rem;
}

.blog-post-single .post-tags {
    margin-top: 0.5rem;
    text-align: center;
}

.blog-post-single .post-tags a {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: white;
    padding: 0.3rem 0.8rem;
    margin: 0.2rem;
    border-radius: 15px;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
}

.blog-post-single .post-tags a:hover {
    background: linear-gradient(135deg, #b8860b, #8b6914);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.4);
}

/* Featured Image */
.blog-post-single .post-featured-image {
    margin: 2rem 0;
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.blog-post-single .post-featured-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.blog-post-single .post-featured-image:hover img {
    transform: scale(1.02);
}

/* Post Content */
.blog-post-single .post-content h2,
.blog-post-single .post-content h3,
.blog-post-single .post-content h4 {
    color: var(--primary-golden);
    margin: 2rem 0 1rem 0;
    position: relative;
}

.blog-post-single .post-content h2 {
    font-size: 2rem;
    border-bottom: 1px solid #d4af37;
    padding-bottom: 0.5rem;
}

.blog-post-single .post-content h3 {
    font-size: 1.6rem;
}

.blog-post-single .post-content h4 {
    font-size: 1.3rem;
    color: #b8860b;
}

.blog-post-single .post-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.blog-post-single .post-content blockquote {
    background: linear-gradient(135deg, #faf8f0, #f5f1e8);
    border-left: 4px solid #d4af37;
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.1rem;
    color: #5d4e37;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.blog-post-single .post-content ul,
.blog-post-single .post-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.blog-post-single .post-content li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

/* Page Links */
.blog-post-single .page-links {
    text-align: center;
    margin: 2rem 0;
    padding: 1rem;
    background: linear-gradient(135deg, #faf8f0, #f5f1e8);
    border-radius: 8px;
    border: 1px solid #d4af37;
}

.blog-post-single .page-links a {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0 0.3rem;
    background: #d4af37;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.blog-post-single .page-links a:hover {
    background: #b8860b;
    transform: translateY(-2px);
}

/* Post Footer */
.blog-post-single .post-footer {
    margin: 3rem 0 2rem 0;
    padding: 2rem 0;
    border-top: 1px solid #d4af37;
    border-bottom: 1px solid #d4af37;
}

.blog-post-single .post-tags-footer {
    margin-bottom: 2rem;
    text-align: center;
}

.blog-post-single .post-tags-footer a {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: white;
    padding: 0.4rem 1rem;
    margin: 0.3rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(212, 175, 55, 0.3);
}

.blog-post-single .post-tags-footer a:hover {
    background: linear-gradient(135deg, #b8860b, #8b6914);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.4);
}

/* Social Share */
.blog-post-single .post-share {
    margin: 2rem 0;
}

.blog-post-single .post-share h4 {
    color: #2c1810;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.blog-post-single .social-share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.blog-post-single .social-share-buttons a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.blog-post-single .share-facebook {
    background: linear-gradient(135deg, #1877f2, #166fe5);
    color: white;
}

.blog-post-single .share-twitter {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
    color: white;
}

.blog-post-single .share-linkedin {
    background: linear-gradient(135deg, #0077b5, #005885);
    color: white;
}

.blog-post-single .social-share-buttons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* CTA Section */
.blog-post-single .post-cta {
    background: linear-gradient(135deg, #000000, #2a2a2a);
    padding: 3rem 2rem;
    margin: 3rem 0;
    border-radius: 12px;
    border: 1px solid #d4af37;
    position: relative;
    overflow: hidden;
}

.blog-post-single .post-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.blog-post-single .post-cta h3 {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.blog-post-single .post-cta p {
    font-size: 1.1rem;
    color: #5d4e37;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.blog-post-single .post-cta .button {
    position: relative;
    z-index: 2;
    margin: 0 0.5rem;
}

/* Navigation */
.blog-post-single .post-navigation {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid #e0d0b7;
}

.blog-post-single .nav-link {
    display: block;
    padding: 0px;
    background: black;
    border-radius: 8px;
    text-decoration: none;
    color: #cea23d;
    transition: all 0.3s ease;
    height: 100%;
}

.blog-post-single .nav-direction {
    display: block;
    font-size: 0.9rem;
    color: #8b6914;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.blog-post-single .nav-title {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
}

/* Related Posts */
.blog-post-single .related-posts {
    margin: 4rem 0 2rem 0;
    padding: 3rem 0;
    border-top: 1px solid #d4af37;
}

.blog-post-single .related-posts .section-title {
    font-size: 2.2rem;
    color: #2c1810;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.blog-post-single .related-posts .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #b8860b, #d4af37, #b8860b);
    border-radius: 2px;
}

/* Post Cards */
.blog-post-single .post-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #e0d0b7;
}

.blog-post-single .post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
}

.blog-post-single .post-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.blog-post-single .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post-single .post-card:hover .post-image img {
    transform: scale(1.05);
}

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

.blog-post-single .post-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #8b6914;
}

.blog-post-single .post-card-meta .post-date {
    font-weight: 600;
}

.blog-post-single .post-card-meta .post-category a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
}

.blog-post-single .post-card-title {
    margin-bottom: 1rem;
    flex-grow: 1;
}

.blog-post-single .post-card-title a {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c1810;
    text-decoration: none;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.blog-post-single .post-card-title a:hover {
    color: #d4af37;
}

.blog-post-single .post-card-excerpt {
    color: #5d4e37;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.blog-post-single .post-button {
    margin-top: auto;
}

/* Comments */
.blog-post-single .post-comments {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid #d4af37;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .blog-post-single .post-title {
        font-size: 2.2rem;
    }
    
    .blog-post-single .post-meta {
        gap: 1rem;
    }
    
    .blog-post-single .social-share-buttons {
        gap: 0.8rem;
    }
    
    .blog-post-single .social-share-buttons a {
        padding: 0.7rem 1.2rem;
    }
}

@media (max-width: 768px) {
    .blog-post-single .post-title {
        font-size: 1.8rem;
    }
    
    .blog-post-single .post-meta {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }
    
    .blog-post-single .post-content {
        font-size: 1rem;
    }
    
    .blog-post-single .post-cta {
        padding: 2rem 1rem;
    }
    
    .blog-post-single .post-cta h3 {
        font-size: 1.6rem;
    }
    
    .blog-post-single .social-share-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .blog-post-single .social-share-buttons a {
        width: 200px;
        justify-content: center;
    }
    
    .blog-post-single .related-posts .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .blog-post-single .post-title {
        font-size: 1.5rem;
    }
    
    .blog-post-single .post-content h2 {
        font-size: 1.6rem;
    }
    
    .blog-post-single .post-content h3 {
        font-size: 1.3rem;
    }
    
    .blog-post-single .post-cta {
        padding: 1.5rem 1rem;
    }
    
    .blog-post-single .post-cta h3 {
        font-size: 1.4rem;
    }
    
    .blog-post-single .nav-link {
        padding: 1rem;
    }
    
    .blog-post-single .post-card-content {
        padding: 1rem;
    }
}

/* Animation */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Print Styles */
@media print {
    .blog-post-single .post-share,
    .blog-post-single .post-cta,
    .blog-post-single .post-navigation,
    .blog-post-single .related-posts,
    .blog-post-single .post-comments {
        display: none;
    }
    
    .blog-post-single .post-content {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .blog-post-single .post-title {
        font-size: 18pt;
        color: black;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .blog-post-single .post-card {
        border: 1px solid #000;
    }
    
    .blog-post-single .post-title,
    .blog-post-single .post-content h2,
    .blog-post-single .post-content h3,
    .blog-post-single .post-content h4 {
        color: #000;
    }
    
    .blog-post-single .button {
        border: 1px solid #000;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .blog-post-single .post-card,
    .blog-post-single .nav-link,
    .blog-post-single .social-share-buttons a,
    .blog-post-single .post-featured-image img {
        transition: none;
    }
    
    .blog-post-single .post-cta::before {
        animation: none;
    }
}