:root {
    --vp-items__gap: 5px;
    --vp-items__gap-vertical: 5px;
    --vp-transition-duration: 0.3s;
    --vp-transition-easing: ease;
    --vp-images__object-fit: cover;
    --vp-images__object-position: center;
    --vp-wrap__min-height: 200px;
    --vp-elements__gap: 5px;
}

.vp-portfolio {
    position: relative;
    box-sizing: border-box;
    min-height: var(--vp-wrap__min-height);
    overflow-wrap: break-word;
}

.vp-portfolio *,
.vp-portfolio *::before,
.vp-portfolio *::after {
    box-sizing: inherit;
}

.vp-portfolio__items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--vp-items__gap);
    transition: var(--vp-transition-duration) height var(--vp-transition-easing),
                var(--vp-transition-duration) transform var(--vp-transition-easing);
}

.vp-portfolio__item-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: transform var(--vp-transition-duration) var(--vp-transition-easing);
}

.vp-portfolio__item-wrap:hover {
    transform: translateY(-5px);
}

.vp-portfolio__item-img-wrap {
    position: relative;
    display: block;
    overflow: hidden;
    padding-top: 75%; /* 4:3 aspect ratio */
}

.vp-portfolio__item-img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.vp-portfolio__item-img img {
    width: 100%;
    height: 100%;
    object-fit: var(--vp-images__object-fit);
    object-position: var(--vp-images__object-position);
    transition: transform var(--vp-transition-duration) var(--vp-transition-easing);
}

.vp-portfolio__item-wrap:hover .vp-portfolio__item-img img {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .vp-portfolio__items {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .vp-portfolio__items {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* Minimalistische Footer */
.footer {
  margin-top: auto;
  background-color: #f8f8f8;
  /* border-top: 1px solid #eaeaea; */
  padding: 2rem 0;
  z-index: 100;
  font-size: 1rem;
  color: #333;
}
.footer__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.footer__left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__copyright {
  font-size: 0.98rem;
  color: #636A63;
}
.footer__meta {
  font-size: 0.98rem;
  color: #333;
}
.footer__legal {
  display: flex;
  gap: 1.2rem;
  margin-top: 0.2rem;
}
.footer__legal-link {
  color: #636A63;
  text-decoration: underline;
  font-size: 0.98rem;
  transition: color 0.3s;
}
.footer__legal-link:hover {
  color: #4d544d;
}
.footer__center {
  display: flex;
  gap: 2.5rem;
}
.footer__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__nav-title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.3rem;
  color: #333;
}
.footer__nav-link {
  color: #333;
  text-decoration: none;
  font-size: 0.98rem;
  display: block;
  margin-bottom: 0.2rem;
  transition: color 0.2s;
}
.footer__nav-link:hover {
  color: #636A63;
}
.footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.7rem;
}
.footer__social {
  display: flex;
  gap: 0.5rem;
}
.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: none;
  color: #636A63;
  transition: background 0.2s, color 0.2s;
}
.footer__social-link svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: #636A63;
  transition: fill 0.2s;
}
.footer__social-link:hover svg,
.footer__social-link:focus svg {
  fill: #4d544d;
}
@media (max-width: 900px) {
  .footer__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
  .footer__right {
    align-items: flex-start;
  }
}
@media (max-width: 600px) {
  .footer__content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }
  .footer__left, .footer__right {
    align-items: center;
  }
  .footer__center {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
  }
}

.footer__left img {
  max-width: 90px;
  margin-bottom: 1rem;
  display: block;
}

.footer__contact-info {
  font-size: 0.98rem;
  color: #333;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer__contact-info a {
  color: #636A63;
  text-decoration: underline;
  transition: color 0.2s;
}
.footer__contact-info a:hover {
  color: #4d544d;
}

.footer__cta-btn {
  background: #636A63;
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 0.7em 2em;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}
.footer__cta-btn:hover {
  background: #a89c8e;
  color: #fff;
}

.footer__cta span {
  color: #636A63;
  font-size: 1.18rem;
  font-weight: 500;
  text-align: center;
}

/* Blog Styles */
body {
  background: #fff;
}

.blog-main {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 1.2rem 2vw 2rem 2vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.blog-sidebar {
  width: 280px;
  flex-shrink: 0;
}

.popular-posts, .recent-posts {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
  padding: 1.2rem 1.5rem;
  margin-bottom: 2rem;
}

.popular-posts h3, .recent-posts h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #636A63;
  font-family: 'Montserrat', Arial, sans-serif;
}

.popular-posts ul, .recent-posts ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.popular-posts li, .recent-posts li {
  margin-bottom: 0.7rem;
}

.popular-posts a, .recent-posts a {
  color: #222;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}

.popular-posts a:hover, .recent-posts a:hover {
  color: #636A63;
}

@media (max-width: 900px) {
  .blog-main {
    flex-direction: column;
  }
  .blog-sidebar {
    width: 100%;
    margin-bottom: 2rem;
  }
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.blog-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
  color: #333;
}

.blog-headline {
  font-size: 2.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #636A63;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.2rem;
  letter-spacing: 0.01em;
}

.blog-categories {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
  justify-content: center;
}

.category-btn {
  background: #fff;
  color: #a89c8e;
  border: 1.5px solid #ebe8e3;
  border-radius: 999px;
  padding: 0.45rem 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(168,156,142,0.06);
  transition: background 0.2s, color 0.2s, border 0.2s;
}

.category-btn.active,
.category-btn:hover {
  background: #a89c8e;
  color: #fff;
  border-color: #a89c8e;
}

.blog-grid {
  width: 100%;
  max-width: none;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  grid-auto-flow: dense;
}

.blog-card, .featured-card {
  margin: 0;
  padding: 0.3rem 0.3rem 0.7rem 0.3rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(168,156,142,0.07);
  overflow: hidden;
  align-items: flex-start;
  border: 1.5px solid #ebe8e3;
  transition: box-shadow 0.2s, transform 0.2s;
  width: 100%;
  margin: 0 auto;
}

.blog-card.landscape {
  flex: 2 1 420px;
  max-width: 700px;
}

.blog-card.portrait {
  flex: 1 1 280px;
  max-width: 340px;
}

.blog-image-container {
  width: 100%;
  height: 340px;
  background: #f8f8f8;
  overflow: hidden;
  border-bottom: 1.5px solid #ebe8e3;
  display: block;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #f8f8f8;
}

.blog-content {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  justify-content: space-between;
  padding: 1.1rem 0.5rem 0.5rem 0.5rem;
  width: 100%;
}

.blog-content h2, .featured-title {
  font-size: 1.08rem;
  color: #222;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 0.3rem;
  margin-top: 0;
}

.blog-content p {
  font-size: 0.97rem;
  color: #636A63;
  margin-bottom: 0.7rem;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.read-more {
  display: inline;
  color: #636A63;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  text-decoration: none;
  box-shadow: none;
  line-height: 1.1;
  cursor: pointer;
  transition: color 0.2s, text-decoration 0.2s;
}

.read-more:hover, .read-more:focus {
  color: #4d544d;
  text-decoration: underline;
}

.arrow-icon {
  display: none;
}

/* Verwijder overlay-stijl */
.blog-card.overlay, .blog-overlay { all: unset; }

@media (max-width: 700px) {
  .blog-image-container {
    height: 160px;
  }
  .blog-content {
    padding: 1rem;
  }
}

@media (max-width: 900px) {
  .blog-main {
    padding: 2rem 1vw;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-card.landscape {
    grid-column: span 1;
    max-width: 100%;
  }
  .blog-card.portrait {
    max-width: 100%;
  }
  .blog-content {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
}

.featured-posts {
  margin-bottom: 2.5rem;
}

.featured-posts h3 {
  font-size: 1.15rem;
  color: #636A63;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 1rem;
  font-weight: 600;
}

.featured-posts-row {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  margin-bottom: 2.5rem;
  align-items: stretch;
}

.featured-posts-row .blog-card {
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
}

.featured-posts-row .blog-card.landscape {
  flex: 2 1 0;
}

.featured-posts-row .blog-card.portrait {
  flex: 1 1 0;
}

.featured-posts-row .blog-image-container {
  height: 340px;
  width: 100%;
  background: #f8f8f8;
  overflow: hidden;
  border-bottom: 1.5px solid #ebe8e3;
  display: block;
}

.featured-posts-row .blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.featured-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 32px rgba(168,156,142,0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1.5px solid #ebe8e3;
  transition: box-shadow 0.2s, transform 0.2s;
}

.featured-card:hover {
  box-shadow: 0 12px 36px rgba(168,156,142,0.13);
  transform: translateY(-4px) scale(1.03);
}

.featured-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  background: #f8f8f8;
  display: block;
  border-bottom: 1.5px solid #ebe8e3;
}

.featured-title {
  font-size: 1.12rem;
  color: #222;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin: 1.1rem 0 0.7rem 0;
  text-align: center;
}

.blog-card.overlay {
  background: none;
  box-shadow: none;
  border: none;
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.blog-image-container {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: 18px;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 2.2rem 1.5rem 1.2rem 1.5rem;
  background: linear-gradient(0deg, rgba(34,34,34,0.72) 60%, rgba(34,34,34,0.12) 100%);
  color: #fff;
  border-radius: 0 0 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.blog-overlay h2 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #fff;
}

.blog-overlay p {
  font-size: 1rem;
  margin-bottom: 0.7rem;
  color: #f6f5f2;
}

.read-more .arrow {
  margin-left: 0.5em;
  font-size: 1.2em;
  transition: transform 0.2s;
}

.read-more:hover {
  color: #a89c8e;
}

.read-more:hover .arrow {
  transform: translateX(4px);
}

.blog-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Alleen voor popular posts (featured-posts-row) */
.featured-posts-row .blog-card.landscape {
  flex: 2 1 420px;
  max-width: 700px;
}

.featured-posts-row .blog-card.portrait {
  flex: 1 1 280px;
  max-width: 340px;
}

.featured-posts-row .blog-image-container.landscape {
  aspect-ratio: 3/2;
  width: 100%;
  height: auto;
  min-width: 240px;
  background: #f8f8f8;
  overflow: hidden;
  border-bottom: 1.5px solid #ebe8e3;
  display: block;
}

.featured-posts-row .blog-image-container.portrait {
  aspect-ratio: 2/3;
  width: 100%;
  height: auto;
  min-width: 120px;
  background: #f8f8f8;
  overflow: hidden;
  border-bottom: 1.5px solid #ebe8e3;
  display: block;
}

.featured-posts-row .blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}