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

:root {
  --color-dark: #1A1410;
  --color-text: #2F2A28;
  --color-text-light: #4B4643;
  --color-text-muted: #6B655E;
  --color-accent: #C47A55;
  --color-accent-dark: #A86843;
  --color-accent-light: #D68D6A;
  --color-white: #FFFFFF;
  --color-bg: #f2f2f2;
  --color-border: #E8E4E0;
  
  --color-nav: #303133;
  --color-logo: #A07C68;
  --color-footer: #6E6E6E;
  
  --font-serif: 'Merriweather', serif;
  --font-sans: 'Inter', sans-serif;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
}

body {
  font-family: var(--font-sans);
  color: var(--color-dark);
  background-color: var(--color-bg);
  line-height: 1.6;
}

html, body, #app {
  height: 100%;
}

/* Header & Navigation */
header {
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-brand {

  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0.25rem 0;
}

.logo-brand:hover {
  color: var(--color-accent);
  
}
/* Zorg dat logo en hamburger exact op dezelfde lijn staan */
.header-container {
  display: flex;
  align-items: center;
}

/* Logo optisch gelijk trekken met de hamburger (2–3px tunen) */
.logo-image {
  margin-top: -3px; 
  display: block;
}

/* Hamburger zelf netjes centreren */
.hamburger-btn {
  display: flex;
  align-items: center;
}

nav {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

nav a {
  color: var(--color-nav);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
  cursor: pointer;
}

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

nav a.active {
  color: var(--color-accent);
  font-weight: 700;
  border-bottom: 3px solid var(--color-accent);
  padding-bottom: 0.25rem;
}

.nav-btn-primary {
  background-color: var(--color-accent);
  color: var(--color-white);
  padding: 0.65rem 1.8rem;
  border: none;
  border-radius: 25px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(212, 122, 84, 0.2);
  letter-spacing: 0.3px;
}

.nav-btn-primary:hover {
  background-color: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212, 122, 84, 0.3);
}

/* Hamburger Menu */
.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  justify-content: center;
  align-items: center;
}

.hamburger-btn span {
  width: 24px;
  height: 2.5px;
  background-color: var(--color-text);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Main Content */
main {
 margin-top: 11rem; 
  min-height: calc(100vh - 5rem);
  display: flex;
  flex-direction: column;
}
/* ===== PRINTABLES (BLOG STYLE) ===== */

.printables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, 320px);
  gap: 1.25rem;
  justify-content: center;
  margin-top: 3rem;
}
@media (max-width: 480px) {
  .printables-grid {
    grid-template-columns: 1fr;
  }
}

/* Card */
.printables-card {
  background-color: var(--color-white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.printables-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}
.printables-card-image {
  width: 100%;
  height: 280px;            /* vaste zone */
  object-fit: contain;     /* niets wordt afgesneden */
  object-position: center; /* netjes gecentreerd */
  background-color: #f4f2ee;
  padding: 1rem;           /* voorkomt “plakken” aan rand */
  display: block;
}

/* Content */
.printables-card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.printables-card-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.printables-description {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
  color: var(--color-text-light);
}

/* Button altijd onderaan */
.printables-btn {
  margin-top: auto;
  align-self: flex-start;
}

/* ===== DISABLED / BINNENKORT ===== */

.printables-btn[disabled] {
  background-color: var(--color-border);
  color: var(--color-text-muted);
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

/* Subtiele disabled uitstraling */
.printables-card:has(.printables-btn[disabled]) {
  opacity: 0.85;
}

/* ===== MOBILE ===== */

@media (max-width: 768px) {
  .printables-grid {
    gap: 2rem;
  }

  .printables-card-content {
    padding: 1.5rem;
  }

  .printables-card-title {
    font-size: 1.2rem;
  }
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  width: 100%;
  flex: 1;
}

.container-lg {
  max-width: 1280px;
}

/* Hero Section */
.hero {
  background-color: var(--color-white);
  border-radius: 20px;
  padding: 4rem 2rem;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}
d
.hero h1 {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  color: var(--color-text-light);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Home Hero */
.home-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 75vh;
  text-align: center;
  gap: 3rem;
}

.home-title {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0;
  line-height: 1.1;
}

.home-hero .btn-primary {
  padding: 1.25rem 3rem;
  font-size: 1.1rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(212, 122, 84, 0.25);
}

@media (max-width: 768px) {
  .home-title {
    font-size: 2.5rem;
  }
}

/* Contact Page */
.contact-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.contact-header .page-title {
  margin-bottom: 0.5rem;
  font-family: var(--font-serif);
  font-size: 2.5rem;
}



.contact-subtitle {
  font-size: 1rem;
  color: var(--color-text-light);
  font-weight: 400;
}

.contact-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background-color: var(--color-white);
  padding: 4rem;
  border-radius: 8px;
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--color-text);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: none;
  border-bottom: 1px solid var(--color-border);
  background-color: transparent;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--color-text);
  transition: border-color 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom-color: var(--color-accent);
}

.form-group textarea {
  resize: vertical;
  font-family: var(--font-sans);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 1rem;
}

.form-group textarea:focus {
  border-color: var(--color-accent);
}

.form-submit {
  margin-top: 2.5rem;
  text-align: center;
}

.form-submit .btn-primary {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  border-radius: 6px;
}

button, a.button {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(212, 122, 84, 0.3);
}

.btn-secondary {
  background-color: var(--color-white);
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}

.btn-secondary:hover {
  background-color: var(--color-bg);
}

/* Page Title */
.page-title {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 2rem;
  text-align: center;
  line-height: 1.15;
}

.page-subtitle {
  color: var(--color-accent);
  font-weight: 400;
}

/* Blog Stack */
.blog-stack {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 720px;
  margin: 0 auto;
}

.blog-card {
  background-color: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  border: 1px solid var(--color-border);
}

.blog-card:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
  border-color: var(--color-accent);
}



.blog-card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.blog-card-tag {
  font-size: 0.8rem;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.blog-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-dark);
  margin-bottom: 0.75rem;
  line-height: 1.25;
  font-weight: 700;
}

.blog-card p {
  color: var(--color-text-light);
font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.blog-card-link {
  color: var(--color-accent);
  font-size: 0.9rem;
  display: inline-block;
  margin-top: auto;
  font-weight: 700;
  transition: all 0.2s;
  letter-spacing: 0.5px;
}

.blog-card:hover .blog-card-link {
  color: var(--color-accent-dark);
  transform: translateX(4px);
}

.blog-card-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center;
  display: block;
  background-color: #f4f2ee;
}







/* Blog Post */
.blog-post {
  background-color: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  max-width: 820px;
  margin: 0 auto;
}

.blog-post-header {
  text-align: center;
  background: linear-gradient(135deg, rgba(242, 242, 242, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
  border-bottom: 2px solid var(--color-border);
  padding: 2rem 3rem;
  text-align: center;
}

.blog-post-title {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.blog-post-meta {
  color: var(--color-accent);
  font-size: 0.95rem;
  margin-bottom: 0;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.blog-post-header-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  background-color: transparent;
  border-radius: 8px;
}





.blog-post-content {
  font-size: 1.1rem;
  line-height: 1.85;
  padding: 4rem 3rem;
  color: var(--color-dark);
}

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

.blog-post-content strong {
  color: var(--color-text);
  font-weight: 600;
}

.blog-post-content ul {
  list-style-type: disc;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}

.blog-post-content li {
margin-bottom: 0.5rem;
}


.blog-highlight {
  margin: 2.5rem 0;
  padding: 1.75rem 2rem;
  background-color: var(--color-bg);
  border-left: 4px solid var(--color-accent);
  border-radius: 4px;
  font-style: italic;
}

.blog-highlight p {
  margin-bottom: 0;
  color: var(--color-text);
  font-size: 1.1rem;
  font-family: var(--font-serif);
  font-weight: 600;
}

/* Accordion/FAQ */
.faq-subtitle {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 500;
  margin-top: 1.5rem;
 background: rgba(160, 124, 104, 0.12); 
  padding: 1.5rem 2rem;
  border-radius: 12px;
  box-shadow: none;
}

.faq-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.faq-item {
  background-color: var(--color-white);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1.5px solid var(--color-border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-anchor: none;
}

.faq-item:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  border-color: rgba(196, 122, 85, 0.5);
}

.faq-button {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  min-height: 40px;
  transition: all 0.2s ease;
}

.faq-button:hover {
  color: var(--color-accent);
}

.faq-button h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.4;
  margin: 0;
  text-align: left;
  flex: 1;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  margin-bottom: 0;
}

.faq-toggle svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform 0.3s;
}

.faq-item.open .faq-toggle svg {
  transform: rotate(45deg);
}

.faq-content {
  margin-top: 1.5rem;
  font-family: var(--font-sans);
font-size: 1rem;
  line-height: 1.8;
  color: var(--color-dark);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-content {
  max-height: 2000px;
}

.faq-content p {
  margin-bottom: 1rem;
}

.faq-content strong {
  color: var(--color-text);
  font-weight: 700;
}

.highlight-accent {
  background: transparent;
  color: var(--color-text);
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  box-shadow: none;
  display: inline-block;
  line-height: 1.6;
}

/* CHANGED: faq-highlight-quote now has the same styling as blog-highlight */
.faq-highlight-quote {
  margin: 1.5rem 0 0 0;
  padding: 1.75rem 2rem;
  background-color: var(--color-bg);
  border-left: 4px solid var(--color-accent);
  border-radius: 4px;
  font-style: normal;
  color: var(--color-text);
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.6;
}

/* Success Modal */
.success-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.success-modal.show {
  opacity: 1;
}

.success-modal-content {
  background: var(--color-white);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.success-modal-icon {
  width: 80px;
  height: 80px;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.success-modal-content h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  margin-top: 0;
  width: 100%;
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
}

.success-modal-content p {
  font-size: 1.05rem;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.success-modal-subtitle {
font-size: 1rem;
  color: var(--color-text-muted);
  margin-top: 1rem;
}

/* Footer */
footer {
  background-color: transparent;
  color: var(--color-text-muted);
  padding: 3rem 1.5rem;
  text-align: center;
  margin-top: 6rem;
  border-top: 1px solid var(--color-border);
}

footer p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: var(--color-footer);
}

footer a {
  color: var(--color-accent);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .header-container {
    padding: 1rem;
  }
  
  .logo-brand {
    font-size: 1.25rem;
  }
  
  nav {
    gap: 1.5rem;
  }
  
  nav a {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  main {
    margin-top: 4.5rem;
    min-height: calc(100vh - 4.5rem);
  }
  
  .header-container {
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  header {
    position: fixed;
  }
  
  .logo-brand {
    font-size: 1.1rem;
  }
  
  .hamburger-btn {
    display: flex;
  }
  
  #mobile-nav {
    position: fixed;
    top: 4.5rem;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    justify-content: center;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }
  
  #mobile-nav.active {
    max-height: 500px;
    opacity: 1;
    pointer-events: auto;
  }
  
  nav {
    gap: 0;
  }
  
  nav a {
    font-size: 0.9rem;
    font-weight: 500;
    display: block;
    padding: 0.75rem 0;
  }
  
  nav a.active {
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: 0.5rem;
  }
  
  .nav-btn-primary {
    padding: 0.75rem 1.4rem;
    font-size: 0.9rem;
    width: 100%;
  }
  
  /* Hero Section */
  .hero {
    padding: 3rem 1.5rem;
    min-height: calc(100vh - 4.5rem);
  }
  
  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
  
  .hero-btn {
    padding: 0.95rem 1.75rem;
    font-size: 0.95rem;
  }
  
  /* Page Title */
  .page-title {
    font-size: 2rem;
    margin-bottom: 1.25rem;
  }
  
  /* Subtitle */
  .faq-subtitle {
    font-size: 1rem;
    padding: 1.25rem 1.5rem;
    margin-top: 1.25rem;
  }
  
  /* Container */
  .container {
    padding: 2rem 1.5rem;
    max-width: 100%;
  }
  
  /* Blog */
  .blog-stack {
    gap: 2rem;
    max-width: 100%;
    padding: 0 1.5rem;
  }
  
  .blog-card {
    border-radius: 10px;
  }
  
  
  .blog-card-content {
    padding: 1.75rem;
  }
  
  .blog-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }
  
  .blog-card p {
font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  /* Blog Post */
  .blog-post {
    border-radius: 10px;
    max-width: 100%;
    margin: 0 1.5rem;
  }
  
  .blog-post-header-image {
    height: 350px;
  }
  
  .blog-post-header {
    padding: 2.5rem 1.5rem 2rem;
  }
  
  .blog-post-title {
    font-size: 1.85rem;
    margin-bottom: 0.75rem;
  }
  
  .blog-post-meta {
    font-size: 0.85rem;
  }
  
  .blog-post-content {
    padding: 2.5rem 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
  }
  
  .blog-post-content p {
    margin-bottom: 1.5rem;
  }
  
  .blog-highlight {
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid var(--color-accent);
  }
  
  .blog-highlight p {
    font-size: 1rem;
  }
  
  /* FAQ */
  .faq-section {
    max-width: 100%;
    padding: 0 1.5rem;
  }
  
  .faq-item {
    padding: 1.25rem;
    border-radius: 14px;
    margin-bottom: 1rem;
  }
  
  .faq-button h3 {
    font-size: 1rem;
  }
  
  .faq-content p {
font-size: 1rem;
    line-height: 1.7;
  }
  
  /* CHANGED: Mobile responsive for faq-highlight-quote */
  .faq-highlight-quote {
    margin-top: 1rem;
    padding: 1.25rem 1.5rem;
    background-color: var(--color-bg);
    border-left: 3px solid var(--color-accent);
font-size: 1rem;
    border-radius: 4px;
  }

  .faq-highlight-quote {
  margin: 1.5rem 0 0 0;
  padding: 1.5rem 1.75rem;
  background-color: rgba(196, 122, 85, 0.08);  /* zachte bruine tint */
  border-left: 4px solid var(--color-accent);
  border-radius: 6px;

  font-family: var(--font-sans);  /* Inter = helderder, rustiger */
font-size: 1rem;
    line-height: 1.7;
  color: var(--color-text);
  font-weight: 400;
}



  
  .faq-toggle {
    width: 22px;
    height: 22px;
  }
  
  /* Buttons */
  .btn-primary, .btn-secondary {
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
  }
  
  /* Contact Form */
  .contact-form-wrapper {
    max-width: 100%;
    padding: 0 1.5rem;
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    font-size: 0.95rem;
  }
  
  input, textarea {
    font-size: 16px;
    padding: 0.75rem;
  }
  
  /* Footer */
  footer {
    padding: 2rem 1.5rem;
    margin-top: 3.5rem;
  }
  
  footer p {
    font-size: 0.85rem;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  main {
    margin-top: 4.5rem;
    min-height: calc(100vh - 4.5rem);
  }
  
  header {
    position: fixed;
    top: 0;
    width: 100%;
  }
  
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
  }
  
  .logo-brand {
    font-size: 1rem;
  }
  
  .hamburger-btn {
    display: flex;
  }
  
  .hamburger-btn span {
    width: 22px;
    height: 2.5px;
  }
  
  #mobile-nav {
    position: fixed;
    top: 4.5rem;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem;
    justify-content: flex-start;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }
  
  #mobile-nav.active {
    max-height: 500px;
    opacity: 1;
    pointer-events: auto;
  }
  
  nav {
    gap: 0;
  }
  
  nav a {
    font-size: 0.9rem;
    padding: 0.75rem 0;
    display: block;
    font-weight: 500;
  }
  
  nav a.active {
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: 0.5rem;
  }
  
  .nav-btn-primary {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    width: 100%;
    margin-top: 0.5rem;
  }
  
  /* Hero */
  .hero {
    padding: 2.5rem 1rem;
    min-height: calc(100vh - 7rem);
    justify-content: center;
    align-items: center;
  }
  
  .hero h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-btn {
    padding: 0.85rem 1.75rem;
    font-size: 0.95rem;
  }
  
  /* Page Title */
  .page-title {
    font-size: 1.65rem;
    margin-bottom: 1rem;
  }
  
  /* Subtitle */
  .faq-subtitle {
font-size: 1rem;
    padding: 1rem 1.25rem;
    margin-top: 1rem;
    border-radius: 10px;
  }
  
  /* Container */
  .container {
    padding: 1.5rem 1rem;
  }
  
  /* Blog Stack */
  .blog-stack {
    gap: 1.5rem;
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .blog-card {
    border-radius: 8px;
    overflow: hidden;
  }
  
  
  .blog-card-content {
    padding: 1.25rem;
  }
  
  .blog-card-tag {
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
  }
  
  .blog-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
  }
  
  .blog-card p {
font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  .blog-card-link {
    font-size: 0.85rem;
  }
  
@media (max-width: 480px) {
  .blog-post {
    margin: 0;            /* 👈 geen extra smal maken */
        max-width: 100%;
    border-radius: 0;     /* optioneel: voelt als native app */
  }

  .blog-post-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
  .blog-post-header-image {
    height: 200px;
    border-radius: 8px 8px 0 0;
  }
  
  .blog-post-header {
    padding: 1.75rem 1rem 1.5rem;
  }
  
  .blog-post-title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }
  
  .blog-post-meta {
    font-size: 0.8rem;
  }
  
  .blog-post-content {
    padding: 1.5rem 1rem;
font-size: 1rem;
    line-height: 1.75;
  }
  
  .blog-post-content p {
    margin-bottom: 1.25rem;
  }
  
  .blog-highlight {
    padding: 1rem;
    margin: 1.5rem 0;
    border-left: 3px solid var(--color-accent);
    border-radius: 4px;
  }
  
  .blog-highlight p {
font-size: 1rem;
    font-weight: 600;
  }
  
  /* FAQ */
  .faq-section {
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .faq-item {
    padding: 1.15rem;
    border-radius: 12px;
    margin-bottom: 0.75rem;
  }
  
  .faq-button {
    flex-direction: row;
    justify-content: space-between;
    gap: 0.75rem;
  }
  
  .faq-button h3 {
    font-size: 0.9rem;
    font-weight: 600;
  }
  
  .faq-content {
    margin-top: 0.75rem;
  }
  
  .faq-content p {
font-size: 1rem;
    line-height: 1.65;
  }
  
  /* CHANGED: Small mobile responsive for faq-highlight-quote */
  .faq-highlight-quote {
    margin-top: 0.75rem;
    padding: 1rem;
    background-color: var(--color-bg);
    border-left: 3px solid var(--color-accent);
font-size: 1rem;
    border-radius: 4px;
  }
  
  .faq-toggle {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }
  
  .faq-toggle svg {
    width: 18px;
    height: 18px;
  }
  
  /* Buttons */
  .btn-primary, .btn-secondary {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    width: auto;
  }
  
  /* Contact Form */
  .contact-form-wrapper {
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .form-group {
    margin-bottom: 1.25rem;
  }
  
  .form-group label {
    font-size: 0.9rem;
    font-weight: 500;
  }
  
  input, textarea {
    font-size: 16px;
    padding: 0.75rem;
    border-radius: 6px;
  }
  
  input::placeholder, textarea::placeholder {
    font-size: 0.9rem;
  }
  
  /* Footer */
  footer {
    padding: 2rem 1rem;
    margin-top: 2.5rem;
  }
  
  footer p {
    font-size: 0.8rem;
    line-height: 1.5;
  }
}

/* Utility Classes */
.hidden {
  display: none !important;
}

.page {
  display: none;
}

.page.active {
  display: block;
}

/* Loading & States */
[data-loading="true"] {
  opacity: 0.6;
  pointer-events: none;
}


/* Basis (mobiel/tablet) */
.logo-image {
  height: 50px;
  width: auto;
}

/* Desktop */
@media (min-width: 768px) {
  .logo-image {
    height: 110px;
  }
}

/* Kleine telefoons */
@media (max-width: 480px) {
  .logo-image {
    height:50px;
  }
}



@media (min-width: 1025px) {
  .blog-stack {
    max-width: 1200px; /* of 1100 / 1280 */
  }
}
/* Desktop blog layout: 2 groot boven, daarna 3 per rij */
@media (min-width: 1025px) {
  .blog-stack {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    grid-auto-flow: row dense;
  }

  /* Eerste twee blogs: groot */
  .blog-card:nth-child(1),
  .blog-card:nth-child(2) {
    grid-column: span 3; /* 3 + 3 = 6 */
  }

  /* Alle volgende: 3 per rij */
  .blog-card:nth-child(n+3) {
    grid-column: span 2; /* 2 + 2 + 2 = 6 */
  }
}
  /* Afbeeldingshoogtes */


 
.page.blog-page,
.page.blog-page main {
  background-color: var(--color-white);
}

@media (min-width: 1025px) {
  .blog-post {
    max-width: 1000px;
  }
}

@media (max-width: 480px) {
  .blog-post {
    margin: 0;
    max-width: 100%;
    border-radius: 0;
  }
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

img, video, iframe {
  max-width: 100%;
  height: auto;
}

.printables-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.card ul {
  list-style-position: inside;
}

