/* Keluarga Bahagia — Blog Parenting & Keluarga */
/* System font, no external dependencies */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink: #e91e8c;
  --pink-dark: #c2177a;
  --pink-light: #f8a8d8;
  --yellow: #ffd600;
  --yellow-dark: #e6c100;
  --bg: #fff0f7;
  --bg2: #fff8fc;
  --white: #ffffff;
  --text: #2d1a24;
  --text2: #5a3a4a;
  --text3: #8a6070;
  --border: #f0c8df;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 4px 20px rgba(233,30,140,0.10);
  --shadow-hover: 0 8px 30px rgba(233,30,140,0.18);
  --font: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}

/* ===== DEMO BAR ===== */
.demo-bar {
  background: var(--text);
  color: #fff;
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  letter-spacing: 0.01em;
}
.demo-bar a {
  color: var(--yellow);
  text-decoration: none;
  font-weight: 700;
  margin: 0 4px;
}
.demo-bar a:hover { text-decoration: underline; }

/* ===== HEADER & NAV ===== */
header {
  background: var(--white);
  border-bottom: 3px solid var(--pink);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(233,30,140,0.08);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--pink);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--pink) 60%, var(--yellow));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Mobile menu — checkbox hack */
.nav-toggle { display: none; }
.nav-toggle-label {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle-label span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
  transition: 0.3s;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
}
nav a {
  color: var(--text2);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 20px;
  transition: 0.2s;
}
nav a:hover, nav a.active {
  background: var(--bg);
  color: var(--pink);
}

/* ===== MAIN LAYOUT ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

main { padding: 40px 0 60px; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--pink) 0%, #f050b0 50%, var(--pink-dark) 100%);
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0.15;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -30px;
  width: 160px; height: 160px;
  background: var(--white);
  border-radius: 50%;
  opacity: 0.10;
}

.hero-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }

.hero-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero p {
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: 0.2s;
}
.btn-yellow {
  background: var(--yellow);
  color: var(--text);
}
.btn-yellow:hover { background: var(--yellow-dark); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); }

.btn-pink {
  background: var(--pink);
  color: var(--white);
}
.btn-pink:hover { background: var(--pink-dark); transform: translateY(-2px); box-shadow: var(--shadow-hover); }

.btn-outline {
  background: transparent;
  color: var(--pink);
  border: 2px solid var(--pink);
}
.btn-outline:hover { background: var(--pink); color: var(--white); }

/* ===== SECTION TITLES ===== */
.section-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title::after {
  content: '';
  flex: 1;
  height: 3px;
  background: linear-gradient(to right, var(--pink), transparent);
  border-radius: 2px;
}
.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 8px;
}

/* ===== HOME LAYOUT ===== */
.home-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  margin-top: 48px;
}

/* ===== FEATURED POST (large) ===== */
.featured-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  display: block;
  transition: 0.3s;
}
.featured-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }

.featured-thumb {
  width: 100%;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffd6ec, #ffe082);
  position: relative;
}

.featured-body { padding: 24px; }

.tag {
  display: inline-block;
  background: var(--bg);
  color: var(--pink);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 10px;
  border: 1px solid var(--border);
}

.featured-body h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}
.featured-body p {
  color: var(--text2);
  font-size: 0.92rem;
  margin-bottom: 16px;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text3);
}

/* ===== POST GRID ===== */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.post-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  display: block;
  transition: 0.3s;
}
.post-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }

.post-thumb {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-body { padding: 16px; }
.post-body h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.35;
}
.post-body p {
  font-size: 0.85rem;
  color: var(--text2);
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== SIDEBAR ===== */
.sidebar { display: flex; flex-direction: column; gap: 24px; }

.widget {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.widget-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--bg);
}

/* Subscribe widget */
.subscribe-widget {
  background: linear-gradient(135deg, var(--pink), #f050b0);
  color: white;
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.subscribe-widget h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.subscribe-widget p { font-size: 0.85rem; opacity: 0.9; margin-bottom: 16px; }
.subscribe-form { display: flex; flex-direction: column; gap: 10px; }
.subscribe-form input {
  padding: 10px 14px;
  border: none;
  border-radius: 20px;
  font-size: 0.9rem;
  font-family: var(--font);
  outline: none;
}
.subscribe-form button {
  background: var(--yellow);
  color: var(--text);
  border: none;
  padding: 10px;
  border-radius: 20px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: 0.2s;
}
.subscribe-form button:hover { background: var(--yellow-dark); }

/* Category list */
.cat-list { list-style: none; }
.cat-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--bg);
  font-size: 0.9rem;
}
.cat-list li:last-child { border-bottom: none; }
.cat-list a { text-decoration: none; color: var(--text2); font-weight: 600; }
.cat-list a:hover { color: var(--pink); }
.cat-count {
  background: var(--bg);
  color: var(--pink);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
}

/* Popular list */
.popular-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.popular-item { display: flex; gap: 12px; align-items: flex-start; }
.popular-num {
  width: 26px; height: 26px;
  background: var(--pink);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 800;
  flex-shrink: 0;
}
.popular-item a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  line-height: 1.4;
}
.popular-item a:hover { color: var(--pink); }

/* ===== ARTIKEL PAGE ===== */
.page-hero {
  background: linear-gradient(135deg, var(--pink), #f050b0);
  padding: 48px 20px;
  text-align: center;
}
.page-hero h1 { color: white; font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 900; margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1rem; }

.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 32px 0 24px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.filter-btn {
  padding: 7px 16px;
  border: 2px solid var(--border);
  border-radius: 20px;
  background: transparent;
  color: var(--text2);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  transition: 0.2s;
  text-decoration: none;
  display: inline-block;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--pink);
  color: var(--pink);
  background: var(--bg);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.article-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: 0.3s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.article-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }

.article-thumb {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.article-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.article-body h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.35;
}
.article-body p {
  font-size: 0.875rem;
  color: var(--text2);
  flex: 1;
  margin-bottom: 14px;
}
.article-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text3);
  margin-top: auto;
  border-top: 1px solid var(--bg);
  padding-top: 10px;
}
.read-more {
  color: var(--pink);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.82rem;
}

/* ===== DETAIL PAGE ===== */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  margin-top: 32px;
}

.article-header { margin-bottom: 28px; }
.article-header .tag { font-size: 0.8rem; padding: 4px 12px; }
.article-header h1 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 900;
  color: var(--text);
  margin: 14px 0 16px;
  line-height: 1.25;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--text3);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border);
}
.meta-item { display: flex; align-items: center; gap: 5px; font-weight: 600; }

.article-cover {
  width: 100%;
  height: 340px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffd6ec, #ffe082);
  margin-bottom: 32px;
  overflow: hidden;
}

.article-content h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--pink);
  margin: 28px 0 12px;
}
.article-content p {
  color: var(--text2);
  margin-bottom: 18px;
  line-height: 1.8;
}
.article-content ul {
  margin: 0 0 18px 20px;
  color: var(--text2);
}
.article-content ul li { margin-bottom: 8px; line-height: 1.7; }

.article-content blockquote {
  border-left: 4px solid var(--pink);
  padding: 14px 20px;
  background: var(--bg);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 20px 0;
  font-style: italic;
  color: var(--text2);
}

.author-box {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 32px;
}
.author-avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
}
.author-info h4 { font-size: 0.95rem; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.author-info p { font-size: 0.82rem; color: var(--text2); }

.related-posts { margin-top: 48px; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.related-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow);
  transition: 0.2s;
}
.related-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.related-thumb {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.related-body { padding: 12px; }
.related-body h4 { font-size: 0.83rem; font-weight: 700; color: var(--text); line-height: 1.35; }

/* Share bar */
.share-bar {
  margin-top: 28px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
}
.share-bar span { font-weight: 700; font-size: 0.9rem; color: var(--text2); }
.share-btn {
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s;
}
.share-btn:hover { opacity: 0.85; }
.share-wa { background: #25d366; color: white; }
.share-fb { background: #1877f2; color: white; }
.share-tw { background: #1da1f2; color: white; }
.share-copy { background: var(--bg); color: var(--pink); border: 1px solid var(--border); cursor: pointer; font-family: var(--font); }

/* ===== TENTANG PAGE ===== */
.tentang-hero {
  background: linear-gradient(135deg, var(--pink), #f050b0);
  padding: 60px 20px;
  text-align: center;
}
.tentang-hero h1 { color: white; font-size: clamp(1.5rem, 4vw, 2.4rem); font-weight: 900; margin-bottom: 12px; }
.tentang-hero p { color: rgba(255,255,255,0.88); max-width: 600px; margin: 0 auto; }

.about-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  margin-top: 48px;
  align-items: start;
}

.author-profile {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.author-svg-avatar {
  width: 120px; height: 120px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-light), var(--yellow));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.author-profile h2 { font-size: 1.2rem; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.author-profile .role { color: var(--pink); font-size: 0.85rem; font-weight: 700; margin-bottom: 12px; }
.author-profile p { font-size: 0.87rem; color: var(--text2); line-height: 1.7; margin-bottom: 16px; }

.social-links { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.social-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  background: var(--bg);
  color: var(--text2);
  border: 1px solid var(--border);
  transition: 0.2s;
}
.social-link:hover { border-color: var(--pink); color: var(--pink); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow);
}
.stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label { font-size: 0.82rem; color: var(--text2); font-weight: 600; }

.mission-section {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  margin-top: 24px;
}
.mission-section h3 { font-size: 1.1rem; font-weight: 800; color: var(--text); margin-bottom: 14px; }
.mission-section p { color: var(--text2); font-size: 0.92rem; line-height: 1.8; margin-bottom: 12px; }

.values-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.values-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--text2);
}
.values-list li strong { color: var(--text); }
.val-icon {
  width: 32px; height: 32px;
  background: var(--pink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ===== KONTAK PAGE ===== */
.kontak-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  margin-top: 32px;
}

.contact-form-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.contact-form-box h2 { font-size: 1.3rem; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.contact-form-box > p { font-size: 0.9rem; color: var(--text2); margin-bottom: 24px; }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text2);
  margin-bottom: 6px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg2);
  outline: none;
  transition: 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--pink);
  background: white;
}
.form-group textarea { min-height: 120px; resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-sidebar { display: flex; flex-direction: column; gap: 20px; }

.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.info-card h3 { font-size: 1rem; font-weight: 800; color: var(--text); margin-bottom: 14px; }

.contact-items { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.contact-item { display: flex; gap: 12px; align-items: flex-start; }
.contact-icon {
  width: 36px; height: 36px;
  background: var(--bg);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item-text { font-size: 0.85rem; }
.contact-item-text strong { display: block; color: var(--text); font-weight: 700; margin-bottom: 2px; }
.contact-item-text span { color: var(--text2); }

.collab-card {
  background: linear-gradient(135deg, var(--pink), #f050b0);
  color: white;
  border-radius: var(--radius);
  padding: 24px;
}
.collab-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 10px; }
.collab-card p { font-size: 0.85rem; opacity: 0.9; margin-bottom: 14px; }
.collab-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.collab-list li {
  font-size: 0.82rem;
  opacity: 0.9;
  padding-left: 14px;
  position: relative;
}
.collab-list li::before { content: '✓'; position: absolute; left: 0; color: var(--yellow); font-weight: 700; }

/* ===== FOOTER ===== */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.75);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}
.footer-brand .logo { color: var(--yellow); margin-bottom: 12px; display: inline-flex; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; }

footer h4 {
  color: white;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 14px;
}
footer ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
footer ul a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.85rem; }
footer ul a:hover { color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: var(--yellow); text-decoration: none; }

/* ===== THUMB COLORS ===== */
.thumb-1 { background: linear-gradient(135deg, #ffd6ec 0%, #ffecb3 100%); }
.thumb-2 { background: linear-gradient(135deg, #f8bbd9 0%, #e0f7fa 100%); }
.thumb-3 { background: linear-gradient(135deg, #ffe0b2 0%, #fce4ec 100%); }
.thumb-4 { background: linear-gradient(135deg, #e8f5e9 0%, #fce4ec 100%); }
.thumb-5 { background: linear-gradient(135deg, #e3f2fd 0%, #ffd6ec 100%); }
.thumb-6 { background: linear-gradient(135deg, #fff9c4 0%, #fce4ec 100%); }
.thumb-7 { background: linear-gradient(135deg, #f3e5f5 0%, #ffe0b2 100%); }
.thumb-8 { background: linear-gradient(135deg, #e0f2f1 0%, #fce4ec 100%); }

/* ===== PAGINATION ===== */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.page-btn {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text2);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: 0.2s;
}
.page-btn:hover, .page-btn.active {
  background: var(--pink);
  color: white;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .home-grid { grid-template-columns: 1fr; }
  .detail-layout { grid-template-columns: 1fr; }
  .kontak-layout { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 640px) {
  .nav-toggle-label { display: flex; }
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 3px solid var(--pink);
    padding: 12px 20px;
    display: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }
  .nav-toggle:checked ~ nav { display: block; }
  nav ul { flex-direction: column; gap: 2px; }
  nav a { display: block; padding: 10px 12px; border-radius: var(--radius-sm); }
  header { position: relative; }

  .posts-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .article-cover { height: 200px; }
}
