/* Blog Post Styles - Dark Theme */

.blog-post {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    min-height: 100vh;
}

.post-header {
    background: #333333;
    padding: 60px 20px 40px;
    color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.breadcrumbs {
    font-size: 0.9em;
    margin-bottom: 20px;
    opacity: 0.8;
    color: #aaa;
}

.breadcrumbs a {
    color: #e0e0e0;
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: #bc1a1a;
    text-decoration: underline;
}

.post-header h1 {
    font-size: 2.8em;
    line-height: 1.3;
    margin-bottom: 20px;
    max-width: 900px;
    color: #fff;
    text-shadow: 0px 3px 8px rgba(0, 0, 0, 0.3);
}

.post-header .post-meta {
    display: flex;
    gap: 30px;
    font-size: 0.95em;
    flex-wrap: wrap;
    color: #ccc;
}

.post-header .post-meta i {
    margin-right: 8px;
    color: #bc1a1a;
}

/* Content Layout */
.post-content {
    padding: 60px 20px;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.main-content {
    max-width: 800px;
}

.featured-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.main-content h2 {
    font-size: 2em;
    color: #fff;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #bc1a1a;
}

.main-content h3 {
    font-size: 1.5em;
    color: #e0e0e0;
    margin-top: 30px;
    margin-bottom: 15px;
}

.main-content p {
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 20px;
    font-size: 1.05em;
}

.main-content ul,
.main-content ol {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
    color: #ccc;
}

.main-content li {
    margin-bottom: 10px;
}

.main-content strong {
    color: #fff;
    font-weight: 600;
}

/* Info Boxes */
.info-box,
.highlight-box,
.warning-box {
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
}

.info-box {
    background: rgba(74, 144, 226, 0.15);
    border-left: 5px solid #4a90e2;
    color: #fff;
}

.highlight-box {
    background: rgba(188, 26, 26, 0.15);
    border: 2px solid #bc1a1a;
    color: #fff;
}

.warning-box {
    background: rgba(255, 160, 0, 0.15);
    border-left: 5px solid #ffa000;
    color: #fff;
}

.info-box h3,
.highlight-box h3,
.warning-box h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.3em;
    color: #fff;
}

.info-box ul,
.highlight-box ul,
.warning-box ul {
    margin: 15px 0 0 20px;
    color: #e0e0e0;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    background: #bc1a1a;
    color: white;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    margin-top: 20px;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(188, 26, 26, 0.3);
}

.cta-button:hover {
    background: linear-gradient(135deg, #a01616 0%, #4B45D9 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(108, 99, 255, 0.4);
}

.cta-box {
    background: #333333;
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin: 50px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.cta-box h3 {
    color: white;
    margin-top: 0;
    font-size: 2em;
}

.cta-box p {
    color: #e0e0e0;
    font-size: 1.1em;
    margin-bottom: 25px;
}

.cta-box .cta-button {
    background: #bc1a1a;
    color: white;
}

.cta-box .cta-button:hover {
    background: linear-gradient(135deg, #a01616 0%, #4B45D9 100%);
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.sidebar-widget {
    background: #333333;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.sidebar-widget h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #fff;
    font-size: 1.3em;
}

.related-posts {
    list-style: none;
    margin: 0;
    padding: 0;
}

.related-posts li {
    margin-bottom: 15px;
}

.related-posts a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.related-posts a:hover {
    color: #bc1a1a;
}

.sidebar-widget .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sidebar-widget .tag {
    background: #444;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    color: #aaa;
    border: 1px solid #555;
}

/* Share Section */
.share-section {
    background: #333333;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.share-section h3 {
    margin-bottom: 20px;
    color: #fff;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btn {
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s;
}

.share-btn.twitter { background: #1da1f2; }
.share-btn.facebook { background: #1877f2; }
.share-btn.linkedin { background: #0077b5; }
.share-btn.whatsapp { background: #25d366; }

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .post-header h1 {
        font-size: 2em;
    }
    
    .main-content h2 {
        font-size: 1.5em;
    }
    
    .share-buttons {
        flex-direction: column;
    }
}
