/*
Theme Name: Boekenhoek
Theme URI: https://example.com/boekenhoek
Author: Webontwerper
Author URI: https://example.com
Description: Een warm en uitnodigend WordPress thema voor boekenbloggers. Geïnspireerd op een modern lifestyle blog design. Volledig aanpasbaar via het WordPress Aanpasscherm - foto's, teksten en menu's zijn zonder technische kennis te wijzigen.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: boekenhoek
Tags: blog, one-column, two-columns, custom-menu, custom-logo, featured-images, threaded-comments, translation-ready, full-width-template, wide-blocks
*/

/* ============================================
   CSS VARIABELEN
============================================ */
:root {
  --kleur-hoofd: #8B4513;
  --kleur-accent: #D4956A;
  --kleur-licht: #FFF8F0;
  --kleur-tekst: #2C1810;
  --kleur-tekst-licht: #6B4C3B;
  --kleur-wit: #FFFFFF;
  --kleur-rand: #E8D5C4;
  --kleur-donker: #1a0f0a;
  --lettertype-hoofd: 'Playfair Display', Georgia, serif;
  --lettertype-tekst: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  --schaduw: 0 4px 20px rgba(139, 69, 19, 0.1);
  --schaduw-hover: 0 8px 30px rgba(139, 69, 19, 0.2);
  --rand-radius: 12px;
  --animatie: all 0.3s ease;
}

/* ============================================
   RESET & BASIS
============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--lettertype-tekst);
  font-size: 16px;
  line-height: 1.75;
  color: var(--kleur-tekst);
  background-color: var(--kleur-wit);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--kleur-hoofd);
  text-decoration: none;
  transition: var(--animatie);
}

a:hover { color: var(--kleur-accent); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--lettertype-hoofd);
  line-height: 1.3;
  color: var(--kleur-tekst);
}

p { margin-bottom: 1.2rem; }

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

/* ============================================
   TOPBALK
============================================ */
.site-topbar {
  background-color: var(--kleur-hoofd);
  padding: 8px 0;
  font-size: 13px;
}

.topbar-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}

.topbar-inner a {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.topbar-inner a:hover { color: var(--kleur-wit); }

/* ============================================
   SITEHEADER
============================================ */
.site-header {
  background: var(--kleur-wit);
  padding: 28px 0 20px;
  border-bottom: 1px solid var(--kleur-rand);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--schaduw);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.site-logo-wrap {
  flex-shrink: 0;
}

.site-logo-wrap .custom-logo {
  max-height: 70px;
  width: auto;
}

.site-branding {
  text-align: center;
  flex: 1;
}

.site-title {
  font-family: var(--lettertype-hoofd);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 2px;
}

.site-title a { color: var(--kleur-hoofd); }
.site-title a:hover { color: var(--kleur-accent); }

.site-description {
  font-size: 13px;
  color: var(--kleur-tekst-licht);
  font-style: italic;
  letter-spacing: 0.5px;
}

/* Header zoekbalk */
.header-search-wrap {
  flex-shrink: 0;
}

.header-search-wrap form {
  display: flex;
  align-items: center;
  border: 2px solid var(--kleur-rand);
  border-radius: 50px;
  overflow: hidden;
  background: var(--kleur-licht);
}

.header-search-wrap input[type="search"] {
  border: none;
  background: transparent;
  padding: 8px 14px;
  font-size: 14px;
  color: var(--kleur-tekst);
  width: 160px;
  outline: none;
}

.header-search-wrap button {
  background: none;
  border: none;
  padding: 8px 14px;
  cursor: pointer;
  color: var(--kleur-hoofd);
  font-size: 16px;
}

/* ============================================
   NAVIGATIE
============================================ */
.site-nav-wrap {
  background: var(--kleur-licht);
  border-bottom: 2px solid var(--kleur-rand);
}

.site-nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

#primary-menu {
  display: flex;
  align-items: center;
  gap: 0;
}

#primary-menu > li {
  position: relative;
}

#primary-menu > li > a {
  display: block;
  padding: 16px 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--kleur-tekst);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: var(--animatie);
}

#primary-menu > li > a:hover,
#primary-menu > li.current-menu-item > a,
#primary-menu > li.current-menu-ancestor > a {
  color: var(--kleur-hoofd);
  background: rgba(139, 69, 19, 0.06);
}

/* Dropdown */
#primary-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--kleur-wit);
  border: 1px solid var(--kleur-rand);
  border-radius: var(--rand-radius);
  box-shadow: var(--schaduw-hover);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--animatie);
  z-index: 200;
}

#primary-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#primary-menu .sub-menu li a {
  display: block;
  padding: 12px 20px;
  font-size: 14px;
  color: var(--kleur-tekst);
  border-bottom: 1px solid var(--kleur-licht);
}

#primary-menu .sub-menu li:last-child a { border-bottom: none; }

#primary-menu .sub-menu li a:hover {
  background: var(--kleur-licht);
  color: var(--kleur-hoofd);
  padding-left: 26px;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: 2px solid var(--kleur-rand);
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 20px;
  color: var(--kleur-hoofd);
}

/* ============================================
   HERO SECTIE (Homepage)
============================================ */
.hero-sectie {
  background: var(--kleur-licht);
  padding: 70px 0 60px;
  overflow: hidden;
  position: relative;
}

.hero-sectie::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='%23D4956A' stroke-width='0.3' opacity='0.3'/%3E%3C/svg%3E") repeat;
  opacity: 0.3;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.hero-afbeelding-links,
.hero-afbeelding-rechts {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.hero-foto {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--kleur-wit);
  box-shadow: var(--schaduw-hover);
  transition: var(--animatie);
}

.hero-foto:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 40px rgba(139, 69, 19, 0.25);
}

.hero-foto-groot {
  width: 140px;
  height: 140px;
}

.hero-tekst {
  text-align: center;
  padding: 20px 0;
}

.hero-tekst h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--kleur-hoofd);
  margin-bottom: 12px;
  line-height: 1.1;
}

.hero-tekst h2 {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--kleur-tekst-licht);
  font-style: italic;
  margin-bottom: 10px;
}

.hero-tekst h3 {
  font-size: 1rem;
  font-weight: 400;
  color: var(--kleur-tekst-licht);
}

.hero-knop {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 32px;
  background: var(--kleur-hoofd);
  color: var(--kleur-wit) !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  box-shadow: var(--schaduw);
  transition: var(--animatie);
}

.hero-knop:hover {
  background: var(--kleur-accent);
  transform: translateY(-2px);
  box-shadow: var(--schaduw-hover);
}

/* ============================================
   UITGELICHTE BERICHTEN (2 grote posts)
============================================ */
.uitgelicht-sectie {
  padding: 70px 0 30px;
  background: var(--kleur-wit);
}

.uitgelicht-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.uitgelicht-post {
  display: flex;
  flex-direction: column;
  border-radius: var(--rand-radius);
  overflow: hidden;
  box-shadow: var(--schaduw);
  transition: var(--animatie);
  background: var(--kleur-wit);
  border: 1px solid var(--kleur-rand);
}

.uitgelicht-post:hover {
  transform: translateY(-4px);
  box-shadow: var(--schaduw-hover);
}

.uitgelicht-afbeelding {
  position: relative;
  overflow: hidden;
  height: 260px;
}

.uitgelicht-afbeelding img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.uitgelicht-post:hover .uitgelicht-afbeelding img {
  transform: scale(1.04);
}

.uitgelicht-categorie-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--kleur-hoofd);
  color: var(--kleur-wit);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 50px;
}

.uitgelicht-content {
  padding: 28px 30px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.uitgelicht-content h2 {
  font-size: 1.45rem;
  margin-bottom: 14px;
  line-height: 1.35;
}

.uitgelicht-content h2 a { color: var(--kleur-tekst); }
.uitgelicht-content h2 a:hover { color: var(--kleur-hoofd); }

.uitgelicht-content p {
  color: var(--kleur-tekst-licht);
  font-size: 15px;
  flex: 1;
}

.post-meta {
  font-size: 13px;
  color: var(--kleur-tekst-licht);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.post-meta a { color: var(--kleur-tekst-licht); }
.post-meta a:hover { color: var(--kleur-hoofd); }

.lees-meer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--kleur-hoofd);
  font-weight: 600;
  font-size: 14px;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: var(--animatie);
}

.lees-meer::after { content: '→'; }

.lees-meer:hover {
  border-bottom-color: var(--kleur-hoofd);
  gap: 12px;
}

/* ============================================
   OVER-SECTIE (Homepage tussenblok)
============================================ */
.over-sectie-home {
  background: var(--kleur-hoofd);
  padding: 60px 0;
  color: var(--kleur-wit);
}

.over-sectie-inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.over-sectie-inner h2 {
  color: var(--kleur-wit);
  font-size: 2rem;
  margin-bottom: 18px;
}

.over-sectie-inner p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 0;
}

/* ============================================
   RECENTE BERICHTEN LIJST
============================================ */
.recente-berichten-sectie {
  padding: 70px 0;
}

.sectie-titel {
  font-size: 1.9rem;
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 3px solid var(--kleur-accent);
  display: inline-block;
}

.berichten-lijst {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.bericht-rij {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
  border-radius: var(--rand-radius);
  overflow: hidden;
  border: 1px solid var(--kleur-rand);
  transition: var(--animatie);
  background: var(--kleur-wit);
}

.bericht-rij:hover {
  box-shadow: var(--schaduw);
  transform: translateX(4px);
}

.bericht-rij-afbeelding {
  height: 200px;
  overflow: hidden;
  border-radius: var(--rand-radius) 0 0 var(--rand-radius);
}

.bericht-rij-afbeelding img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bericht-rij:hover .bericht-rij-afbeelding img { transform: scale(1.05); }

.bericht-rij-afbeelding-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--kleur-licht), var(--kleur-rand));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.bericht-rij-content {
  padding: 24px 28px 24px 0;
  display: flex;
  flex-direction: column;
}

.bericht-rij-content h2 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  line-height: 1.35;
}

.bericht-rij-content h2 a { color: var(--kleur-tekst); }
.bericht-rij-content h2 a:hover { color: var(--kleur-hoofd); }

.bericht-rij-content p {
  color: var(--kleur-tekst-licht);
  font-size: 15px;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Paginatie */
.paginatie {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 50px;
}

.paginatie .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 600;
  color: var(--kleur-tekst);
  border: 2px solid var(--kleur-rand);
  transition: var(--animatie);
}

.paginatie .page-numbers:hover,
.paginatie .page-numbers.current {
  background: var(--kleur-hoofd);
  color: var(--kleur-wit);
  border-color: var(--kleur-hoofd);
}

/* ============================================
   CATEGORIE GRID
============================================ */
.categorie-sectie {
  background: var(--kleur-licht);
  padding: 70px 0;
}

.categorie-sectie .sectie-titel {
  text-align: center;
  display: block;
  border-bottom: none;
  margin-bottom: 10px;
}

.categorie-subtitel {
  text-align: center;
  color: var(--kleur-tekst-licht);
  font-size: 16px;
  margin-bottom: 44px;
}

.categorie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 24px;
}

.categorie-kaart {
  background: var(--kleur-wit);
  border-radius: var(--rand-radius);
  padding: 30px 20px;
  text-align: center;
  border: 2px solid var(--kleur-rand);
  transition: var(--animatie);
  text-decoration: none;
  display: block;
  color: var(--kleur-tekst);
}

.categorie-kaart:hover {
  border-color: var(--kleur-hoofd);
  transform: translateY(-4px);
  box-shadow: var(--schaduw-hover);
  color: var(--kleur-hoofd);
}

.categorie-icoon {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
}

.categorie-kaart h3 {
  font-size: 15px;
  font-weight: 700;
  font-family: var(--lettertype-tekst);
}

/* ============================================
   SIDEBAR
============================================ */
.content-sidebar-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 50px;
  padding: 70px 0;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 110px;
}

.widget {
  background: var(--kleur-licht);
  border-radius: var(--rand-radius);
  padding: 28px 26px;
  margin-bottom: 28px;
  border: 1px solid var(--kleur-rand);
}

.widget-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--kleur-accent);
  color: var(--kleur-hoofd);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--lettertype-tekst);
}

/* Over mij widget */
.over-mij-widget {
  text-align: center;
}

.over-mij-foto {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 4px solid var(--kleur-accent);
}

.over-mij-widget h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--kleur-hoofd);
}

.over-mij-widget p {
  font-size: 14px;
  color: var(--kleur-tekst-licht);
  margin-bottom: 0;
}

/* Recente berichten widget */
.widget ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--kleur-rand);
}

.widget ul li:last-child { border-bottom: none; }

.widget ul li a {
  font-size: 14px;
  color: var(--kleur-tekst);
  line-height: 1.4;
}

.widget ul li a:hover { color: var(--kleur-hoofd); }

/* Nieuwsbrief widget */
.nieuwsbrief-widget p {
  font-size: 14px;
  color: var(--kleur-tekst-licht);
  margin-bottom: 14px;
}

.nieuwsbrief-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nieuwsbrief-form input[type="email"] {
  padding: 12px 16px;
  border: 2px solid var(--kleur-rand);
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  background: var(--kleur-wit);
  color: var(--kleur-tekst);
  transition: var(--animatie);
}

.nieuwsbrief-form input[type="email"]:focus {
  border-color: var(--kleur-hoofd);
}

.nieuwsbrief-form button {
  padding: 12px;
  background: var(--kleur-hoofd);
  color: var(--kleur-wit);
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--animatie);
}

.nieuwsbrief-form button:hover { background: var(--kleur-accent); }

/* ============================================
   SINGLE POST
============================================ */
.single-post-header {
  background: var(--kleur-licht);
  padding: 50px 0 40px;
  border-bottom: 1px solid var(--kleur-rand);
}

.single-post-categorie {
  display: inline-block;
  background: var(--kleur-hoofd);
  color: var(--kleur-wit);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.single-post-title {
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.single-uitgelichte-afbeelding {
  margin: 0 0 50px;
  border-radius: var(--rand-radius);
  overflow: hidden;
  max-height: 500px;
}

.single-uitgelichte-afbeelding img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-content {
  font-size: 16.5px;
  line-height: 1.85;
}

.post-content h2 {
  font-size: 1.7rem;
  margin: 40px 0 16px;
}

.post-content h3 {
  font-size: 1.3rem;
  margin: 30px 0 12px;
}

.post-content p { margin-bottom: 1.4rem; }

.post-content a {
  text-decoration: underline;
  color: var(--kleur-hoofd);
}

.post-content blockquote {
  background: var(--kleur-licht);
  border-left: 4px solid var(--kleur-hoofd);
  padding: 20px 26px;
  margin: 30px 0;
  border-radius: 0 var(--rand-radius) var(--rand-radius) 0;
  font-style: italic;
  font-size: 17px;
  color: var(--kleur-tekst-licht);
}

.post-content ul, .post-content ol {
  padding-left: 26px;
  margin-bottom: 1.4rem;
  list-style: disc;
}

.post-content ul li, .post-content ol li {
  margin-bottom: 6px;
}

.post-content img {
  border-radius: var(--rand-radius);
  margin: 24px auto;
}

/* Tags */
.post-tags {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--kleur-rand);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.post-tags .tag-label {
  font-weight: 700;
  font-size: 14px;
  color: var(--kleur-tekst-licht);
}

.post-tags a {
  background: var(--kleur-licht);
  border: 1px solid var(--kleur-rand);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 13px;
  color: var(--kleur-tekst-licht);
  transition: var(--animatie);
}

.post-tags a:hover {
  background: var(--kleur-hoofd);
  color: var(--kleur-wit);
  border-color: var(--kleur-hoofd);
}

/* ============================================
   PAGINA
============================================ */
.pagina-header {
  background: var(--kleur-licht);
  padding: 50px 0;
  border-bottom: 1px solid var(--kleur-rand);
  text-align: center;
}

.pagina-title {
  font-size: 2.4rem;
  color: var(--kleur-hoofd);
}

.pagina-content {
  padding: 60px 0;
}

/* ============================================
   FOOTER
============================================ */
.site-footer {
  background: var(--kleur-donker);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-widget-title {
  color: var(--kleur-wit);
  font-family: var(--lettertype-hoofd);
  font-size: 1.15rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.footer-about p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 0;
  color: rgba(255,255,255,0.65);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  transition: var(--animatie);
}

.footer-links ul li a:hover {
  color: var(--kleur-accent);
  padding-left: 6px;
}

.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.social-knop {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  font-size: 18px;
  color: rgba(255,255,255,0.7) !important;
  transition: var(--animatie);
}

.social-knop:hover {
  background: var(--kleur-hoofd);
  color: var(--kleur-wit) !important;
  transform: translateY(-2px);
}

.footer-nieuwsbrief input[type="email"] {
  width: 100%;
  padding: 10px 14px;
  border: none;
  border-radius: 8px 8px 0 0;
  font-size: 14px;
  background: rgba(255,255,255,0.1);
  color: var(--kleur-wit);
  outline: none;
  margin-bottom: 4px;
}

.footer-nieuwsbrief input::placeholder { color: rgba(255,255,255,0.4); }

.footer-nieuwsbrief button {
  width: 100%;
  padding: 10px;
  background: var(--kleur-hoofd);
  color: var(--kleur-wit);
  border: none;
  border-radius: 0 0 8px 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--animatie);
}

.footer-nieuwsbrief button:hover { background: var(--kleur-accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a {
  color: rgba(255,255,255,0.4);
  transition: var(--animatie);
}

.footer-bottom a:hover { color: var(--kleur-accent); }

/* ============================================
   COMMENTAREN
============================================ */
.commentaren-sectie {
  padding: 50px 0;
  border-top: 1px solid var(--kleur-rand);
}

.commentaren-sectie h2 {
  font-size: 1.6rem;
  margin-bottom: 30px;
}

.comment-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--kleur-tekst);
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--kleur-rand);
  border-radius: 8px;
  font-size: 15px;
  font-family: var(--lettertype-tekst);
  margin-bottom: 18px;
  outline: none;
  background: var(--kleur-wit);
  transition: var(--animatie);
}

.comment-form input:focus,
.comment-form textarea:focus {
  border-color: var(--kleur-hoofd);
}

.comment-form textarea { min-height: 140px; resize: vertical; }

.comment-form input[type="submit"] {
  width: auto;
  padding: 14px 36px;
  background: var(--kleur-hoofd);
  color: var(--kleur-wit);
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--animatie);
  margin-bottom: 0;
}

.comment-form input[type="submit"]:hover {
  background: var(--kleur-accent);
  transform: translateY(-2px);
}

/* ============================================
   404 PAGINA
============================================ */
.not-found-sectie {
  padding: 100px 0;
  text-align: center;
}

.not-found-sectie .groot-getal {
  font-size: 8rem;
  font-family: var(--lettertype-hoofd);
  color: var(--kleur-rand);
  line-height: 1;
  margin-bottom: 20px;
}

.not-found-sectie h1 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.not-found-sectie p {
  color: var(--kleur-tekst-licht);
  margin-bottom: 30px;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .content-sidebar-wrap {
    grid-template-columns: 1fr 300px;
    gap: 36px;
  }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-afbeelding-links,
  .hero-afbeelding-rechts {
    display: none;
  }

  .uitgelicht-grid {
    grid-template-columns: 1fr;
  }

  .content-sidebar-wrap {
    grid-template-columns: 1fr;
  }

  .sidebar { position: static; }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }

  .site-nav-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 24px;
  }

  #primary-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 10px 0 20px;
  }

  #primary-menu.is-open { display: flex; }

  #primary-menu > li > a {
    padding: 12px 0;
    border-bottom: 1px solid var(--kleur-rand);
  }

  #primary-menu .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding-left: 16px;
    display: none;
  }

  #primary-menu li.is-open > .sub-menu { display: block; }

  .header-inner { flex-wrap: wrap; }

  .header-search-wrap { order: 3; width: 100%; }
  .header-search-wrap form { border-radius: 8px; }
  .header-search-wrap input { width: 100%; }

  .bericht-rij {
    grid-template-columns: 1fr;
  }

  .bericht-rij-afbeelding {
    height: 200px;
    border-radius: var(--rand-radius) var(--rand-radius) 0 0;
  }

  .bericht-rij-content {
    padding: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .hero-tekst h1 { font-size: 2.4rem; }

  .single-post-title { font-size: 1.8rem; }

  .categorie-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-tekst h1 { font-size: 2rem; }
  .categorie-grid { grid-template-columns: repeat(2, 1fr); }
  .uitgelicht-afbeelding { height: 200px; }
}
