/* Stanvee Blog Single Page CSS */

:root {
    --primary: #002147; /* Dark Blue */
    --accent: #FFD700;  /* Gold */
    --secondary: #00152e;
    --text-main: #333;
    --text-muted: #666;
    --white: #ffffff;
    --bg-light: #f4f7f6;
    --shadow-main: 0 10px 30px rgba(0, 33, 71, 0.1);
    --shadow-hover: 0 20px 40px rgba(0, 33, 71, 0.2);
    --transition: all 0.3s ease;
}

 /* Header Mockup */
.main-header {
    background: var(--primary);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
}

.logo img {
    height: 60px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    margin-left: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    opacity: 0.8;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent);
    opacity: 1;
}

.btn-gold {
    background: var(--accent);
    color: var(--primary);
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
}

.btn-gold:hover {
    background: var(--white);
    transform: translateY(-2px);
}

/* Article Hero/Header */
.article-header {
    padding: 80px 0 40px;
    text-align: center;
}

.category-tag {
    background: var(--primary);
    color: var(--accent);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
}

.article-header h1 {
    font-size: 42px;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.article-meta {
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    justify-content: center;
    gap: 20px;
}

.article-meta span b {
    color: var(--primary);
}

/* Featured Image */
.featured-image-container {
    margin-bottom: 60px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-main);
    height: 500px;
}

.featured-image-container img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

/* Content Area */
.article-content {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

.article-content p {
    margin-bottom: 25px;
}

.article-content h3 {
    margin: 40px 0 20px;
    color: var(--primary);
    font-size: 28px;
}

.article-content blockquote {
    background: var(--bg-light);
    border-left: 5px solid var(--accent);
    padding: 30px;
    margin: 40px 0;
    font-style: italic;
    font-size: 22px;
    color: var(--primary);
    border-radius: 0 15px 15px 0;
}

.article-content ol, .article-content ul {
    margin-bottom: 25px;
    padding-left: 30px;
}

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

.article-content a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: var(--transition);
}

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

/* Footer Section */
.article-footer {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.share-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.share-links span {
    font-weight: 700;
    font-size: 14px;
    color: var(--primary);
}

/* Related Posts */
.related-posts {
    background: var(--bg-light);
    padding: 80px 0;
    margin-top: 80px;
}

.related-posts h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: var(--primary);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.related-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-main);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.related-card img {
    width: 100%;
    height: 180px;
    object-fit: fill;
}

.related-card-content {
    padding: 20px;
}

.related-card-content h4 {
    font-size: 16px;
    color: var(--primary);
    line-height: 1.4;
}

/* Main Footer */
.main-footer {
    background: var(--primary);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-logo p {
    max-width: 300px;
    opacity: 0.7;
}

.footer-links h4, .footer-contact h4 {
    color: var(--accent);
    margin-bottom: 25px;
    font-size: 18px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent);
}

.footer-contact p {
    margin-bottom: 15px;
    opacity: 0.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 768px) {
    .article-header h1 {
        font-size: 32px;
    }
    .featured-image-container {
        height: 300px;
    }
    .related-grid {
        grid-template-columns: 1fr;
    }
    .main-header .container {
        flex-direction: column;
        gap: 20px;
    }
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}
