/* Import Bootstrap (jika belum lewat bundler seperti Mix/Vite) */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css');

/* Custom fonts (Inter seperti di Leeasy) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #f9fafb;
    color: #343a40;
}

/* Header */
.navbar-brand {
    font-weight: 700;
    color: #6366f1 !important; /* Indigo-500 */
}

.nav-link {
    color: #6c757d;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #6366f1;
}

/* Artikel layout */
.article-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.article-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    color: #495057;
}

.article-content img {
    max-width: 100%;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

.article-content blockquote {
    border-left: 4px solid #6366f1;
    padding-left: 1rem;
    font-style: italic;
    color: #6c757d;
    margin: 1.5rem 0;
}

.article-content a {
    color: #6366f1;
    text-decoration: underline;
}

footer {
    background: #fff;
    border-top: 1px solid #dee2e6;
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.875rem;
    color: #6c757d;
}
