/* Add Google Fonts import at the top */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&display=swap');

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Inter', 'Segoe UI', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #333;
    /* Light gradient background for good readability */
    background: linear-gradient(135deg, #fff8e1 0%, #ffe0b2 25%, #ffccbc 50%, #ffab91 75%, #ff8a65 100%);
    background-attachment: fixed;
    min-height: 100vh;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.01em;
    
    display: flex;
    flex-direction: column;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
a {
    color: inherit;
    text-decoration: none;
}

/* Header */
.site-header {
    /* Dark red to orange gradient header */
    background: linear-gradient(to bottom, #D32F2F 0%, #FF5722 100%);
    color: #fff;
    padding: 15px 0;
    flex-shrink: 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo h1 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    color: #fff;
    letter-spacing: -0.02em;
    font-family: 'Poppins', 'Inter', sans-serif;
}
.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}
.main-nav li {
    margin-left: 20px;
}
.main-nav a {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
    padding: 8px 12px;
    border-radius: 5px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.2), rgba(0,0,0,0.1));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), inset 0 -1px 0 rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
    letter-spacing: 0.02em;
}
.main-nav a:hover {
    transform: translateY(1px);
    box-shadow: inset 0 2px 2px rgba(0,0,0,0.2);
    text-decoration: none;
    background: linear-gradient(to bottom, #FF9800, #FFD600);
    color: #333;
    text-shadow: none;
}
.main-nav a:active {
    transform: translateY(2px);
    box-shadow: inset 0 3px 5px rgba(0,0,0,0.3);
}

/* Article Section */
.article-section {
    flex: 1 0 auto;
    padding: 60px 0;
}
.article-container {
    display: flex;
    gap: 40px;
}
.article-content {
    flex: 1;
}
.article-card {
    background: rgba(255,255,255,0.95);
    border: 2px solid rgba(255,152,0,0.3);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.breadcrumb {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #555;
    letter-spacing: 0.01em;
}
.breadcrumb a {
    color: #FF5722;
    text-decoration: underline;
    font-weight: 600;
}
.breadcrumb a:hover {
    text-decoration: none;
    color: #D32F2F;
}
.article-card h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #D32F2F;
    letter-spacing: -0.03em;
    line-height: 1.2;
    font-family: 'Poppins', 'Inter', sans-serif;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}
.article-meta {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 35px;
    color: #666;
    letter-spacing: 0.01em;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255,152,0,0.2);
}
.article-body p {
    line-height: 1.7;
    margin-bottom: 24px;
    color: #333;
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}
.article-body h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 35px;
    color: #D32F2F;
    letter-spacing: -0.02em;
    font-family: 'Poppins', 'Inter', sans-serif;
}

/* Sidebar */
.sidebar {
    width: 320px;
    flex-shrink: 0;
}
.banner-slot {
    background: rgba(255,255,255,0.95);
    border: 2px solid rgba(255,152,0,0.2);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 25px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.banner-slot:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    border-color: rgba(255,152,0,0.4);
}
.banner-slot img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 4px;
}

/* Footer */
.site-footer {
    background: linear-gradient(to right, #D32F2F, #FF5722);
    color: #fff;
    text-align: center;
    padding: 20px 0;
    flex-shrink: 0;
    box-shadow: 0 -2px 4px rgba(0,0,0,0.1);
}
.site-footer p {
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .article-container {
        flex-direction: column;
    }
    .sidebar {
        width: 100%;
    }
    .article-card {
        padding: 30px;
    }
    .article-card h1 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .main-nav ul {
        flex-direction: column;
        align-items: center;
    }
    .main-nav li {
        margin: 10px 0;
    }
    .article-card {
        padding: 25px;
    }
    .article-card h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 500px) {
    .breadcrumb {
        font-size: 0.85rem;
    }
    .article-card h1 {
        font-size: 2rem;
    }
    .article-body h2 {
        font-size: 1.5rem;
    }
    .article-card {
        padding: 20px;
    }
    .article-body p {
        font-size: 1rem;
    }
}