@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
    --color-primary: #6B9BD1;
    --color-secondary: #5BB3A0;
    --color-light-cream: #F5F3FF;
    --color-white: #FFFFFF;
    --color-text-dark: #2C3E50;
    --color-text-muted: #475569;
    --shadow-soft-sm: 0 4px 15px rgba(107, 155, 209, 0.08);
    --shadow-soft-md: 0 8px 28px rgba(107, 155, 209, 0.12);
    --transition-smooth: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-ease: all 0.3s ease-in-out;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'DM Sans', sans-serif; }
html { scroll-behavior: smooth; }
body { background: linear-gradient(135deg, var(--color-light-cream) 0%, #FBF8FF 100%); color: var(--color-text-dark); line-height: 1.6; overflow-x: hidden; min-height: 100vh; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; font-weight: 700; letter-spacing: -0.01em; }
a { text-decoration: none; transition: var(--transition-smooth); color: inherit; }

/* ================= NAVBAR & FOOTER GLOBAL ================= */
.navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: rgba(245, 243, 255, 0.85); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); padding: 14px 5%; display: flex; justify-content: center; align-items: center; border-bottom: 1px solid rgba(107, 155, 209, 0.1); box-shadow: var(--shadow-soft-sm); }
.nav-brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nav-brand img { height: 48px; width: auto; max-width: 150px; object-fit: contain; filter: drop-shadow(0 4px 8px rgba(107, 155, 209, 0.15)); }
.nav-brand-text { display: flex; flex-direction: column; justify-content: center; gap: 3px; }
.nav-brand-title { font-size: 25px; font-weight: 800; color: var(--color-text-dark); letter-spacing: 1.2px; line-height: 1; font-family: 'Outfit', sans-serif; }

/* Perbaikan Linter: background-clip ditambahkan */
.nav-brand-title span { background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.nav-brand-tagline { font-size: 11px; font-weight: 700; color: #64748B; letter-spacing: 1.8px; text-transform: uppercase; line-height: 1; }

footer { background: linear-gradient(135deg, #1F2937 0%, #2C3E50 100%); color: #9CA3AF; padding: 80px 5% 40px; border-top: 1px solid rgba(107, 155, 209, 0.1); margin-top: auto; }
.footer-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1000px; margin: 0 auto 60px; text-align: left; }
.footer-brand { display: flex; align-items: center; gap: 12px; font-size: 22px; font-weight: 800; color: var(--color-white); margin-bottom: 20px; }
.footer-brand img { height: 40px; width: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.9; }

/* Perbaikan Linter: background-clip ditambahkan */
.footer-brand span { background: linear-gradient(135deg, #6B9BD1, #5BB3A0); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.footer-col p { font-size: 14px; line-height: 1.8; color: #9CA3AF; font-weight: 400; }
.footer-col h4 { color: var(--color-white); font-size: 16px; font-weight: 700; margin-bottom: 22px; letter-spacing: 0.3px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 14px; display: flex; align-items: flex-start; gap: 12px; font-size: 14px; }
.footer-col ul li i { color: var(--color-primary); margin-top: 3px; font-size: 12px; flex-shrink: 0; }
.footer-bottom { text-align: center; padding-top: 28px; border-top: 1px solid rgba(255, 255, 255, 0.05); font-size: 13px; color: #6B7280; font-weight: 400; letter-spacing: 0.3px; }

@media (max-width: 1024px) {
    .footer-wrapper { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-brand { justify-content: center; }
    .footer-col ul { display: inline-block; text-align: left; }
}
@media (max-width: 480px) {
    .nav-brand { gap: 10px; }
    .nav-brand img { height: 40px; }
    .nav-brand-title { font-size: 20px; letter-spacing: 0.8px; }
    .nav-brand-tagline { font-size: 8.5px; letter-spacing: 0.8px; }
}

/* ================= DESAIN HALAMAN ARTIKEL LENGKAP ================= */
.full-article-section { padding: 120px 5% 80px; max-width: 900px; margin: 0 auto; min-height: 75vh; }
.full-article-card { background: var(--color-white); border-radius: 22px; padding: 40px; box-shadow: var(--shadow-soft-md); border: 1px solid rgba(107, 155, 209, 0.08); }
.article-title { font-family: 'Outfit', sans-serif; font-size: 24px; font-weight: 700; color: var(--color-text-dark); margin-bottom: 25px; padding-bottom: 15px; border-bottom: 2px solid rgba(107, 155, 209, 0.15); display: flex; align-items: center; gap: 12px; }
.article-title i { color: var(--color-primary); }

/* Render HTML dari Quill */
.html-content { font-size: 15.5px; line-height: 1.8; color: var(--color-text-muted); text-align: justify; }
.html-content p { margin-bottom: 18px; }
.html-content h1, .html-content h2, .html-content h3, .html-content h4, .html-content h5, .html-content h6 { color: var(--color-text-dark); margin-top: 30px; margin-bottom: 15px; }
.html-content ul, .html-content ol { margin-left: 25px; margin-bottom: 20px; }
.html-content li { margin-bottom: 8px; }
.html-content blockquote { border-left: 4px solid var(--color-primary); padding-left: 15px; font-style: italic; color: #64748B; background: #F8FAFC; padding: 15px; border-radius: 0 8px 8px 0; margin-bottom: 20px;}
.html-content a { color: var(--color-primary); text-decoration: underline; }

.btn-back-home { display: inline-flex; align-items: center; gap: 8px; padding: 10px 22px; background: rgba(107, 155, 209, 0.12); color: var(--color-primary); font-weight: 700; border-radius: 50px; text-decoration: none; margin-bottom: 25px; transition: var(--transition-smooth); border: 1px solid rgba(107, 155, 209, 0.25); font-size: 14.5px; }
.btn-back-home:hover { background: linear-gradient(135deg, var(--color-primary), #4D83C4); color: var(--color-white); border-color: transparent; box-shadow: 0 4px 15px rgba(107, 155, 209, 0.35); transform: translateY(-2px); }

@media (max-width: 768px) {
    .full-article-section { padding-top: 95px; }
    .full-article-card { padding: 25px 20px; }
    .article-title { font-size: 20px; }
    .html-content { font-size: 14.5px; }
}