/* Custom Font Integration (Optional but recommended) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: #121212; /* Deep dark background */
    color: #e0e0e0;
}

/* Navbar Enhancements */
.navbar {
    background-color: #1e1e1e !important;
    border-bottom: 1px solid #2d2d2d;
}

/* Card Hover Effects */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    background-color: #1e1e1e !important; /* Slightly lighter than background */
    border: 1px solid #2d2d2d !important;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5) !important;
}

.card-title a {
    transition: color 0.2s ease;
}

.card-title a:hover {
    color: #0d6efd !important; /* Bootstrap primary color */
}

/* Typography & Content Spacing */
h1, h2, h3, h4, h5, h6 {
    letter-spacing: -0.5px;
}

/* Rich Text Article Styling */
article {
    color: #cccccc;
}

article p {
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

article img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

article blockquote {
    border-left: 4px solid #0d6efd;
    padding-left: 1rem;
    font-style: italic;
    color: #adb5bd;
    background: #1e1e1e;
    padding: 1rem;
    border-radius: 0 8px 8px 0;
}

/* Custom Scrollbar for a native app feel */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #121212;
}

::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #666;
}
