@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:wght@400;600;700;800;900&family=Playfair+Display:ital,wght@0,700;1,400&display=swap');

:root {
  --pink: #e91e8c;
  --pink-light: #fce4ec;
  --blue: #1565c0;
  --blue-light: #e3f2fd;
  --orange: #ff6600;
  --text: #1a1a2e;
  --text-muted: #546e7a;
  --white: #ffffff;
  --bg: #fafafa;
  --card-shadow: 0 4px 20px rgba(0,0,0,0.08);
  --radius: 16px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; color: var(--text); background: var(--bg); line-height: 1.7; font-size: 16px; }
header { background: #fff; border-bottom: 3px solid var(--pink); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 12px rgba(233,30,140,0.1); }
.header-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { font-family: 'Fredoka One', cursive; font-size: 1.6em; color: var(--pink); text-decoration: none; display: flex; align-items: center; gap: 8px; }
.logo span { color: var(--blue); }
nav { display: flex; gap: 6px; align-items: center; }
nav a { text-decoration: none; color: var(--text); font-weight: 700; font-size: 0.88em; padding: 7px 14px; border-radius: 999px; transition: all 0.2s; }
nav a:hover, nav a.active { background: var(--pink-light); color: var(--pink); }
.nav-test { background: var(--pink) !important; color: #fff !important; font-weight: 800 !important; }
.nav-test:hover { background: #c2185b !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; }
.hero { background: linear-gradient(135deg, #fff9f0 0%, #ffeef8 50%, #eef4ff 100%); padding: 80px 24px 60px; text-align: center; }
.hero h1 { font-family: 'Fredoka One', cursive; font-size: clamp(2.2em, 5vw, 3.5em); color: var(--pink); line-height: 1.1; margin-bottom: 16px; }
.hero p { font-size: 1.15em; color: var(--text-muted); max-width: 600px; margin: 0 auto 28px; font-weight: 600; }
.hero-flags { font-size: 2em; letter-spacing: 6px; margin-bottom: 28px; }
.btn { display: inline-block; padding: 14px 32px; border-radius: 999px; font-weight: 800; font-size: 0.95em; text-decoration: none; transition: all 0.2s; cursor: pointer; border: none; }
.btn-primary { background: var(--pink); color: #fff; }
.btn-primary:hover { background: #c2185b; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(233,30,140,0.3); }
.btn-secondary { background: var(--blue); color: #fff; margin-left: 12px; }
.btn-secondary:hover { background: #0d47a1; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--pink); border: 2px solid var(--pink); }
.btn-outline:hover { background: var(--pink); color: #fff; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 60px 0; }
.section-title { font-family: 'Fredoka One', cursive; font-size: clamp(1.6em, 3vw, 2.2em); color: var(--blue); text-align: center; margin-bottom: 10px; }
.section-sub { text-align: center; color: var(--text-muted); font-weight: 600; margin-bottom: 40px; font-size: 1.02em; }
.articles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.article-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--card-shadow); transition: transform 0.25s, box-shadow 0.25s; text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.article-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,0.13); }
.card-img { width: 100%; height: 160px; display: flex; align-items: center; justify-content: center; font-size: 4em; }
.card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.card-tag { display: inline-block; padding: 3px 12px; border-radius: 999px; font-size: 0.75em; font-weight: 800; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.tag-vocab { background: #fce4ec; color: var(--pink); }
.tag-grammar { background: #e3f2fd; color: var(--blue); }
.tag-culture { background: #e8f5e9; color: #2e7d32; }
.tag-tips { background: #fff3e0; color: #e65100; }
.card-body h3 { font-family: 'Fredoka One', cursive; font-size: 1.1em; color: var(--text); margin-bottom: 8px; line-height: 1.3; }
.card-body p { font-size: 0.88em; color: var(--text-muted); flex: 1; margin: 0; }
.card-footer { padding: 12px 20px; border-top: 1px solid #f0f0f0; display: flex; justify-content: space-between; align-items: center; font-size: 0.82em; color: var(--text-muted); font-weight: 600; }
.social-banner { background: linear-gradient(135deg, #1565c0, #c2185b); color: #fff; padding: 50px 24px; text-align: center; }
.social-banner h2 { font-family: 'Fredoka One', cursive; font-size: 1.8em; margin-bottom: 10px; }
.social-banner p { opacity: 0.9; margin-bottom: 28px; font-size: 1.05em; }
.social-links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.social-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 22px; border-radius: 999px; font-weight: 800; font-size: 0.88em; text-decoration: none; transition: transform 0.2s; border: 2px solid rgba(255,255,255,0.5); color: #fff; background: rgba(255,255,255,0.15); }
.social-btn:hover { transform: scale(1.05); background: rgba(255,255,255,0.25); }
.test-cta { background: linear-gradient(135deg, #fff9f0, #ffeef8); border: 3px solid var(--pink); border-radius: 20px; padding: 40px; text-align: center; margin: 40px 0; }
.test-cta h3 { font-family: 'Fredoka One', cursive; font-size: 1.6em; color: var(--pink); margin-bottom: 10px; }
.test-cta p { color: var(--text-muted); font-weight: 600; margin-bottom: 20px; }
.article-hero { background: linear-gradient(135deg, #fff9f0 0%, #ffeef8 50%, #eef4ff 100%); padding: 60px 24px 40px; text-align: center; }
.article-hero .emoji-big { font-size: 4em; margin-bottom: 16px; display: block; }
.article-hero h1 { font-family: 'Fredoka One', cursive; font-size: clamp(1.8em, 4vw, 2.8em); color: var(--pink); margin-bottom: 10px; line-height: 1.2; }
.article-hero .subtitle { font-size: 1.1em; color: var(--blue); font-weight: 700; margin-bottom: 16px; }
.article-meta { color: var(--text-muted); font-size: 0.88em; font-weight: 600; }
.article-layout { max-width: 1200px; margin: 0 auto; padding: 40px 24px; display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.article-content h2 { font-family: 'Fredoka One', cursive; font-size: 1.5em; color: var(--blue); margin: 36px 0 14px; padding-bottom: 8px; border-bottom: 3px solid var(--blue-light); }
.article-content h3 { font-size: 1.15em; color: var(--pink); font-weight: 800; margin: 24px 0 10px; }
.article-content p { margin: 14px 0; color: #333; line-height: 1.8; }
.article-content ul, .article-content ol { padding-left: 24px; margin: 14px 0; }
.article-content li { margin: 8px 0; line-height: 1.7; }
.vocab-table { width: 100%; border-collapse: collapse; margin: 24px 0; border-radius: 12px; overflow: hidden; box-shadow: var(--card-shadow); }
.vocab-table th { background: var(--pink); color: #fff; padding: 12px 16px; text-align: left; font-weight: 800; font-size: 0.9em; }
.vocab-table td { padding: 11px 16px; border-bottom: 1px solid #f0f0f0; font-size: 0.92em; }
.vocab-table tr:nth-child(even) { background: #fafafa; }
.vocab-table tr:hover { background: var(--pink-light); }
.vocab-table .dutch { font-weight: 800; color: var(--blue); }
.vocab-table .english { color: var(--text-muted); }
.vocab-table .emoji { font-size: 1.3em; }
.vocab-table .example { font-style: italic; font-size: 0.85em; color: #888; }
.tip-box { background: linear-gradient(135deg, #fff9f0, #ffeef8); border-left: 5px solid var(--pink); border-radius: 12px; padding: 18px 22px; margin: 24px 0; display: flex; gap: 14px; align-items: flex-start; }
.tip-icon { font-size: 1.8em; flex-shrink: 0; }
.tip-content strong { display: block; color: var(--pink); margin-bottom: 6px; }
.tip-content p { margin: 0; font-size: 0.93em; }
.info-box { background: var(--blue-light); border-left: 5px solid var(--blue); border-radius: 12px; padding: 18px 22px; margin: 24px 0; }
.info-box strong { color: var(--blue); display: block; margin-bottom: 6px; }
.grammar-box { background: #f3e5f5; border: 2px solid #9c27b0; border-radius: 12px; padding: 20px 24px; margin: 24px 0; }
.grammar-box h4 { color: #7b1fa2; font-size: 1.05em; margin-bottom: 12px; font-weight: 800; }
.practice-section { background: #f8f9ff; border: 2px solid var(--blue-light); border-radius: 16px; padding: 24px; margin: 32px 0; }
.practice-section h3 { font-family: 'Fredoka One', cursive; color: var(--blue); margin-bottom: 16px; font-size: 1.3em; }
.sidebar { position: sticky; top: 90px; }
.sidebar-card { background: #fff; border-radius: var(--radius); padding: 22px; margin-bottom: 20px; box-shadow: var(--card-shadow); }
.sidebar-card h4 { font-family: 'Fredoka One', cursive; color: var(--blue); margin-bottom: 14px; font-size: 1.05em; }
.sidebar-card .btn { width: 100%; text-align: center; display: block; margin-bottom: 10px; }
.related-list { list-style: none; padding: 0; }
.related-list li { margin: 8px 0; }
.related-list a { text-decoration: none; color: var(--text); font-weight: 600; font-size: 0.88em; display: flex; align-items: center; gap: 8px; padding: 8px 10px; border-radius: 8px; transition: background 0.2s; }
.related-list a:hover { background: var(--pink-light); color: var(--pink); }
.social-sidebar a { display: flex; align-items: center; gap: 10px; padding: 9px 14px; border-radius: 10px; text-decoration: none; font-weight: 700; font-size: 0.88em; margin-bottom: 8px; transition: transform 0.2s; color: #fff; }
.social-sidebar a:hover { transform: scale(1.02); }
.s-web { background: var(--orange); }
.s-fb { background: #1877f2; }
.s-ig { background: linear-gradient(135deg, #f09433, #dc2743, #bc1888); }
.s-tt { background: #000; }
.breadcrumb { padding: 12px 24px; max-width: 1200px; margin: 0 auto; font-size: 0.85em; color: var(--text-muted); font-weight: 600; }
.breadcrumb a { color: var(--pink); text-decoration: none; }
.breadcrumb span { margin: 0 6px; }
.stats-bar { background: var(--blue); color: #fff; padding: 28px 24px; }
.stats-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px; }
.stat-item { text-align: center; }
.stat-num { font-family: 'Fredoka One', cursive; font-size: 2em; display: block; }
.stat-label { font-size: 0.85em; opacity: 0.85; font-weight: 600; }
footer { background: var(--text); color: #ccc; padding: 50px 24px 24px; }
.footer-grid { max-width: 1200px; margin: 0 auto 40px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .logo { color: #fff; margin-bottom: 14px; display: inline-block; }
.footer-brand p { font-size: 0.88em; line-height: 1.7; color: #aaa; }
footer h4 { color: #fff; font-weight: 800; margin-bottom: 14px; font-size: 0.95em; }
footer ul { list-style: none; padding: 0; }
footer li { margin: 8px 0; }
footer a { color: #aaa; text-decoration: none; font-size: 0.88em; transition: color 0.2s; }
footer a:hover { color: var(--pink); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 20px; border-top: 1px solid #333; display: flex; justify-content: space-between; align-items: center; font-size: 0.82em; color: #666; }
.page-hero { background: linear-gradient(135deg, #eef4ff, #ffeef8); padding: 60px 24px; text-align: center; }
.page-hero h1 { font-family: 'Fredoka One', cursive; font-size: 2.2em; color: var(--blue); margin-bottom: 10px; }
.page-hero p { color: var(--text-muted); font-size: 1.05em; font-weight: 600; }
.page-content { max-width: 800px; margin: 0 auto; padding: 50px 24px; }
.page-content h2 { font-family: 'Fredoka One', cursive; color: var(--blue); font-size: 1.5em; margin: 30px 0 14px; }
.page-content p { margin: 14px 0; line-height: 1.8; color: #333; }
.hl-dutch { color: var(--blue); font-weight: 800; }
.hl-pink { color: var(--pink); font-weight: 800; }
.example-sentence { background: #fff; border-left: 4px solid var(--orange); padding: 12px 18px; margin: 10px 0; border-radius: 0 10px 10px 0; font-size: 0.93em; }
.example-sentence .dutch-s { font-weight: 800; color: var(--blue); display: block; }
.example-sentence .english-s { color: var(--text-muted); font-style: italic; display: block; }
.pagination { display: flex; gap: 8px; justify-content: center; margin: 40px 0; flex-wrap: wrap; }
.pagination a, .pagination span { padding: 8px 16px; border-radius: 8px; font-weight: 700; font-size: 0.9em; text-decoration: none; transition: all 0.2s; }
.pagination a { color: var(--blue); border: 2px solid var(--blue-light); }
.pagination a:hover { background: var(--blue); color: #fff; }
.pagination .active { background: var(--pink); color: #fff; border: 2px solid var(--pink); }
.article-img-box { width: 100%; border-radius: 14px; margin: 20px 0; font-size: 5em; text-align: center; background: linear-gradient(135deg, #ffeef8, #eef4ff); padding: 30px; display: block; }
@media (max-width: 900px) { .article-layout { grid-template-columns: 1fr; } .sidebar { position: static; } .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { nav { display: none; } nav.open { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: #fff; padding: 16px; border-bottom: 2px solid var(--pink-light); box-shadow: 0 8px 20px rgba(0,0,0,0.1); z-index: 99; } .hamburger { display: flex; } .footer-grid { grid-template-columns: 1fr; } .articles-grid { grid-template-columns: 1fr; } .btn-secondary { margin-left: 0; margin-top: 10px; } }
