/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 4vw 0.7rem 15px;
    background-color: #ebe8e3;
    box-shadow: none;
    min-height: 72px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Hamburger menu styles */
.hamburger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
    z-index: 1001;
    position: relative;
    width: 25px;
    height: 20px;
    pointer-events: auto;
}

.hamburger__line {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #333;
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
    position: absolute;
    left: 0;
    pointer-events: none;
}

.hamburger__line:nth-child(1) {
    top: 0;
}
.hamburger__line:nth-child(2) {
    top: 8px;
}
.hamburger__line:nth-child(3) {
    top: 16px;
}

.logo img {
    height: auto;
    max-height: 32px;
    width: auto;
    display: block;
    padding: 2px 0 2px 0;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 1.3rem;
}

nav ul li {
    position: relative;
    margin: 0;
    display: flex;
    align-items: center;
}

nav ul li a {
    color: #8b857c;
    text-decoration: none;
    font-size: 0.87rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: none;
    padding: 0.08rem 0.32rem;
    transition: color 0.2s;
    box-shadow: none;
    display: flex;
    align-items: center;
    position: relative;
    line-height: 1.1;
}

nav ul li a.has-dropdown {
    gap: 0.25em;
    padding-right: 0;
}

/* Verwijder het Unicode pijltje, we gaan een SVG gebruiken in de HTML */
nav ul li a.has-dropdown::after {
    display: none;
}

/* Verberg alle dropdowns */
nav ul li .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    transform: none;
    background-color: #fff;
    min-width: 180px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
    border-radius: 8px;
    padding: 0.5rem 0 0.5rem 0;
    z-index: 1000;
    border: none;
    margin-top: 0.1rem;
}

nav ul li:hover .dropdown-content,
nav ul li:focus-within .dropdown-content {
    display: block;
}

nav ul li .dropdown-content a {
    color: #8b857c;
    padding: 0.5rem 1.2rem;
    display: block;
    font-size: 0.87rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: none;
    border: none;
    transition: color 0.2s;
    text-align: left;
    box-shadow: none;
    border-radius: 0;
    position: relative;
}

nav ul li .dropdown-content a span {
    display: inline-block;
    position: relative;
}

nav ul li .dropdown-content a::after {
    display: none;
}

nav ul li .dropdown-content a:hover span::after,
nav ul li .dropdown-content a:focus span::after {
    opacity: 1;
    transform: scaleX(1);
}

nav ul li .dropdown-content a span::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.32em;
    height: 2px;
    width: 100%;
    background: #a89c8e;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: opacity 0.3s, transform 0.3s;
    border-radius: 1px;
}

/* Geen hover-effecten die het pijltje of uitlijning veranderen */
nav ul li a.has-dropdown:hover,
nav ul li a.has-dropdown:focus {
    color: #7c6e5d;
    background: none;
    text-decoration: none;
}

nav a {
    position: relative;
    text-decoration: none;
    color: #a89c8e;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.87rem;
    transition: color 0.3s;
    padding: 0.08rem 0.32rem 0.08rem 0.32rem;
    background: none;
    border-radius: 0;
    overflow: visible;
    line-height: 1.1;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

nav a:focus:not(:focus-visible) {
    outline: none;
}

nav a:focus-visible {
    outline: 2px solid #a89c8e;
    outline-offset: 4px;
    border-radius: 2px;
}

nav a::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.2em;
    height: 2px;
    background: #a89c8e;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: opacity 0.3s, transform 0.3s;
    border-radius: 1px;
}

nav a:hover,
nav a:focus {
    color: #7c6e5d;
    background: none;
}

nav a:hover::after,
nav a:focus::after {
    opacity: 1;
    transform: scaleX(1);
}

nav .contact-btn {
    background-color: #636A63;
    color: #ebe8e3;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    border-radius: 10px;
    padding: 0.32rem 1.1rem;
    letter-spacing: 0.18em;
    font-size: 0.87rem;
    transition: background 0.3s, color 0.3s;
    box-shadow: none;
    border: none;
    text-transform: uppercase;
    position: relative;
    overflow: visible;
    display: inline-block;
    line-height: 1.2;
    -webkit-tap-highlight-color: transparent;
    outline: none;
    transform: translateY(-1px);
}

nav .contact-btn:focus:not(:focus-visible) {
    outline: none;
}

nav .contact-btn:focus-visible {
    outline: 2px solid #4d544d;
    outline-offset: 4px;
    border-radius: 12px;
}

nav .contact-btn::after {
    display: none;
}

nav .contact-btn:hover,
nav .contact-btn:focus {
    background-color: #4d544d;
    color: #fff;
}

/* Container styles */
/* .container { */
/*     max-width: 1400px; */
/*     margin: 0 auto; */
/* } */

/* Visual Portfolio container techniek met CSS Grid */
.vp-container {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    overflow: hidden;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    width: 100%;
    margin-left: -10px;
    margin-right: -10px;
    margin-top: 10px;
    margin-bottom: 0;
    box-sizing: border-box;
}

.grid-item {
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

.grid-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    transition: transform 0.3s ease;
    object-fit: cover;
}

.grid-item img:hover {
    transform: scale(1.02);
}

/* Responsive styles */
@media (max-width: 900px) {
    header {
        padding: 0 1.5rem;
        align-items: center;
        min-height: 72px;
        flex-direction: row;
    }

    .logo img {
        max-height: 28px;
    }
    
    .hamburger {
        display: block;
        transform: translateY(-4px);
        pointer-events: auto;
        z-index: 1001;
    }

    /* Hide the original navigation */
    nav:not(.main-nav) ul {
        display: none !important;
    }

    nav.main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(235, 232, 227, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
        padding: 80px 40px 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    body.nav-open nav.main-nav {
        right: 0;
    }

    body.nav-open .hamburger {
        z-index: 1002;
    }
    
    body.nav-open .hamburger__line {
        background-color: #333;
    }

    body.nav-open .hamburger__line:nth-child(1) {
        transform: rotate(45deg);
        top: 8px;
    }
    body.nav-open .hamburger__line:nth-child(2) {
        opacity: 0;
    }
    body.nav-open .hamburger__line:nth-child(3) {
        transform: rotate(-45deg);
        top: 8px;
    }
    body.nav-open {
        overflow: hidden;
    }

    nav.main-nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        width: 100%;
        padding: 0;
        list-style: none;
    }

    nav.main-nav ul li {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    nav.main-nav ul li a {
        font-size: 1.2rem;
    }
    
    nav.main-nav .contact-btn {
        padding: 0.8rem 1.5rem;
    }
    nav.main-nav ul li .dropdown-content {
        position: static;
        background: transparent;
        box-shadow: none;
        padding: 0;
        text-align: center;
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    nav.main-nav ul li:hover .dropdown-content, .main-nav ul li:focus-within .dropdown-content {
        display: none;
    }
    nav.main-nav ul li.dropdown-open .dropdown-content {
        display: flex;
        margin-top: 0;
    }
    nav.main-nav ul li.dropdown-open a.has-dropdown svg {
        transform: rotate(180deg);
    }
    nav.main-nav ul li a.has-dropdown svg {
        transition: transform 0.3s;
    }
    nav.main-nav ul li .dropdown-content a {
        padding: 0;
        font-size: 1rem;
        letter-spacing: 0.15em;
    }
}

@media (max-width: 768px) {
    main {
        padding-bottom: 2rem;
    }

    .blog-overview-main {
        padding: 1rem;
    }

    .blog-intro {
        text-align: center;
        margin-bottom: 2rem;
    }

    .blog-intro h1 {
        font-size: 2rem;
    }

    .blog-intro p {
        font-size: 1rem;
    }

    .blog-search {
        margin: 1.1rem auto 0.8rem auto;
        max-width: 370px;
        text-align: center;
        background: none;
        border: none;
        z-index: 1;
        position: relative;
        min-height: unset;
        display: block;
        opacity: 1;
        box-shadow: none;
    }

    .search-container {
        position: relative;
        display: flex;
        align-items: center;
        background: #faf9f7;
        border: 1px solid #e5e2dd;
        border-radius: 22px;
        padding: 0.1rem 0.3rem 0.1rem 0.9rem;
        transition: all 0.18s;
        box-shadow: 0 1px 6px rgba(168, 156, 142, 0.04);
        margin: 0 auto;
        height: 36px;
    }

    .search-input {
        flex: 1;
        border: none;
        outline: none;
        padding: 0.1rem 0.3rem 0.1rem 0;
        font-size: 1rem;
        background: transparent;
        color: #333;
        font-family: inherit;
        min-width: 0;
        height: 32px;
    }

    .search-input::placeholder {
        color: #b3aea7;
        font-style: italic;
        font-size: 1rem;
        letter-spacing: 0.01em;
    }

    .search-btn {
        background: #f3f1ee;
        border: none;
        border-radius: 50%;
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background 0.18s, transform 0.18s;
        color: #a89c8e;
        margin-left: 0.3rem;
        position: relative;
        overflow: hidden;
        box-shadow: none;
        padding: 0;
    }

    .search-btn:hover {
        background: #edeae6;
        transform: scale(1.06);
    }

    .search-btn:active {
        transform: scale(0.97);
    }

    .search-btn:focus {
        outline: 2px solid #a89c8e;
        outline-offset: 2px;
    }

    .search-btn svg {
        width: 16px;
        height: 16px;
        transition: transform 0.18s;
        display: block;
    }

    .search-btn:hover svg {
        transform: scale(1.08);
    }

    .blog-categories {
        flex-wrap: wrap;
        gap: 0.8rem;
        margin-bottom: 1rem;
        padding: 0 1rem;
    }
    
    .category-btn {
        padding: 0.4rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .blog-grid-alt {
        gap: 1.5rem;
        margin: 1.5rem auto;
        padding: 0 1rem;
    }
    
    .blog-card-vertical {
        margin-bottom: 0.8rem;
    }
    
    .blog-card-content {
        padding: 1.2rem 1rem 1rem 1rem;
    }
    
    .blog-card-title {
        font-size: 1.1rem;
    }
}

@font-face {
    font-family: 'Town10Display-Hairline';
    src: url('Media/Town 10 Display/Jason Vandenberg - Town 10 Display Hairline.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

.logo svg text,
.logo svg tspan {
    font-family: 'Town10Display-Hairline', 'Town 10 Display', sans-serif !important;
}

/* Refined lightbox styles */
.lightbox {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(235, 232, 227, 0.85);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(4px);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 60px;
    opacity: 0;
    transform: scale(0.98);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox.active .lightbox-content {
    opacity: 1;
    transform: scale(1);
}

.lightbox-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.lightbox-image-inner {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
}

.lightbox-image {
    display: block;
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 2px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    -webkit-tap-highlight-color: transparent;
    border: none !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10) !important;
    outline: none !important;
    background: #fff !important;
    border-radius: 50% !important;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1) !important;
    backdrop-filter: blur(2px) !important;
    color: #636A63 !important;
    opacity: 1 !important;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10 !important;
}

.lightbox-close {
    position: absolute;
    top: -18px;
    right: -18px;
    font-size: 24px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    padding-bottom: 2px;
    z-index: 10 !important;
}

.lightbox-close::before {
    content: "\00d7";
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: normal;
    line-height: 1;
    color: #636A63 !important;
    opacity: 1 !important;
    text-align: center;
    width: 100%;
    height: 100%;
    transform: translateY(-2px);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.6) !important;
    transform: rotate(90deg);
}

.lightbox-prev {
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10 !important;
}

.lightbox-next {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10 !important;
}

.lightbox-prev::before {
    content: "\2039";
    transform: translateY(-2px);
    line-height: 1;
    font-size: 32px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.lightbox-next::before {
    content: "\203A";
    transform: translateY(-2px);
    line-height: 1;
    font-size: 32px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.6) !important;
    transform: translateY(-50%) scale(1.05);
}

/* Vertical swipe animations for lightbox */
.lightbox.closing-up {
    opacity: 0 !important;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.lightbox.closing-down {
    opacity: 0 !important;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.lightbox-content.closing-up {
    transform: translateY(-50px) !important;
    opacity: 0 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.lightbox-content.closing-down {
    transform: translateY(50px) !important;
    opacity: 0 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.lightbox-image.closing-up {
    transform: translateY(-30px) scale(0.95) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.lightbox-image.closing-down {
    transform: translateY(30px) scale(0.95) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Make images clickable */
.grid-item {
    cursor: pointer;
}

@media (max-width: 768px) {
    .lightbox-prev,
    .lightbox-next {
        display: none;
    }

    .lightbox-close {
        top: 8px;
        right: 8px;
    }

    .lightbox-content {
        padding: 0 8px;
    }
}

/* Removed portrait-specific overrides for lightbox navigation arrows */
/* .lightbox-content.portrait .lightbox-prev {
    left: 0;
}
.lightbox-content.portrait .lightbox-next {
    right: 0;
} */

.lightbox-image-inner .lightbox-prev {
    left: -50px;
}
.lightbox-image-inner .lightbox-next {
    right: -50px;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Adjust scroll margin for fixed header */
.portfolio-section {
    scroll-margin-top: 80px;
}

/* ===== Blog Overview Page Styles ===== */
.blog-overview-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.blog-intro {
  text-align: center;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.blog-intro h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.blog-intro p {
  font-size: 1.1rem;
  color: #666;
  margin-top: 0.5rem;
  max-width: 600px;
}

.blog-categories {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.category-btn {
  padding: 0.5rem 1.5rem;
  border: 1px solid #ddd;
  background: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 0.9rem;
  color: #666;
  transition: all 0.3s ease;
}

.category-btn:hover:not(.active) {
  background: #636A63;
  color: white;
  border-color: #636A63;
}

.category-btn.active {
  background: #636A63;
  color: white;
  border-color: #636A63;
}

.blog-grid-alt {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
}

.blog-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  width: 100%;
}

.blog-card-link:hover {
  transform: translateY(-2px);
}

.blog-card-link:hover .blog-card-vertical {
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.blog-card-link:hover .blog-card-image {
  transform: scale(1.02);
}

.blog-card-vertical {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  margin-bottom: 1rem;
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  margin: 0 auto 1rem auto;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  cursor: pointer;
  position: relative;
}

.blog-card-link:hover .blog-card-vertical {
  box-shadow: 0 6px 32px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

.blog-card-link:hover .blog-card-image {
  transform: scale(1.02);
}

.blog-card-image-container {
    position: relative;
    overflow: hidden;
    background-color: transparent;
}

.blog-card-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card-content {
  padding: 1.5rem 1.25rem 1.25rem 1.25rem;
  background: #faf9f7;
  border-top: 1px solid #eee;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.blog-card-category {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: #888;
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.blog-card-title {
  font-size: 1.2rem;
  margin: 0 0 0.6rem 0;
  font-weight: 700;
  color: #232323;
}

.blog-card-meta {
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 1rem;
}

.blog-card-description {
  font-size: 0.95rem;
  margin-bottom: 1.1rem;
  color: #444;
}

.read-more-btn {
  background: #5c6652;
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(92,102,82,0.07);
}

.read-more-btn:hover {
  background: #3d4232;
}

/* End of blog styles */

@media (max-width: 768px) {
  .blog-overview-main {
    padding: 1.5rem 1rem;
  }
  
  .blog-intro {
    margin-bottom: 1.5rem;
    padding: 0 1rem;
  }
  
  .blog-intro h1 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }
  
  .blog-intro p {
    font-size: 1rem;
  }
  
  .blog-categories {
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1rem;
    padding: 0 1rem;
  }
  
  .category-btn {
    padding: 0.4rem 1.2rem;
    font-size: 0.85rem;
  }
  
  .blog-grid-alt {
    gap: 1.5rem;
    margin: 1.5rem auto;
    padding: 0 1rem;
  }
  
  .blog-card-vertical {
    margin-bottom: 0.8rem;
  }
  
  .blog-card-content {
    padding: 1.2rem 1rem 1rem 1rem;
  }
  
  .blog-card-title {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .blog-overview-main {
    padding: 1rem 0.8rem;
  }
  
  .blog-intro {
    padding: 0 0.5rem;
  }
  
  .blog-intro h1 {
    font-size: 1.8rem;
  }
  
  .blog-categories {
    padding: 0 0.5rem;
  }
  
  .blog-grid-alt {
    padding: 0 0.5rem;
  }
}

@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

#scrollTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 9999;
    width: 48px;
    height: 48px;
    background: none;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: box-shadow 0.2s;
}

#scrollTopBtn svg {
    width: 40px;
    height: 40px;
    display: block;
    margin: auto;
    transition: stroke 0.2s;
}

#scrollTopBtn:hover svg path {
    stroke: #BDB7AE;
}

/* Minimalistische Footer */
.footer {
  background-color: #f8f8f8 !important;
  margin-top: auto;
  /* 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 2rem;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.footer__left {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__copyright {
  font-size: 0.875rem;
  color: #666;
}

.footer__meta {
  font-size: 0.875rem;
  color: #666;
}

.footer__legal {
  display: flex;
  gap: 1rem;
  font-size: 0.875rem;
}

.footer__legal-link {
  color: #666;
  text-decoration: none !important;
  position: relative;
  border-bottom: none !important;
}

.footer__legal-link::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.2em;
  height: 2px;
  background: #a89c8e;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 0.3s, transform 0.3s;
  border-radius: 1px;
}

.footer__legal-link:hover::after,
.footer__legal-link:focus::after {
  opacity: 1;
  transform: scaleX(1);
}

.footer__center {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer__nav-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.footer__nav-title::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #333;
}

.footer__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__nav-link {
  color: #666;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer__nav-link:hover {
  color: #333;
}

.footer__right {
  display: flex;
  justify-content: flex-start;
  min-width: 200px;
}

.footer__social {
  display: flex;
  gap: 1.5rem;
}

.footer__social-link {
  color: #666;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid #eaeaea;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}

.footer__social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f8f8f8;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 1;
}

.footer__social-link:hover::before {
  transform: translateY(0);
}

.footer__social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.footer__social-link:hover {
  color: #333;
}

.footer__social-link:hover svg {
  transform: scale(1.1);
}

/* Add padding to main content to prevent footer overlap */
main {
  flex: 1;
  padding-bottom: 8px; /* Zo compact mogelijk onderaan */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__center {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer__right {
    justify-content: flex-start;
  }

  main {
    padding-bottom: 8px; /* Ook op mobiel zo compact mogelijk */
  }
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  animation: fadeInLeft 0.8s cubic-bezier(0.4,0,0.2,1) forwards;
}

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: none;
  }
}

/* Zorg dat de golf altijd zichtbaar is */
.footer-wave {
  width: 100%;
  height: 120px;      /* zelfde als SVG viewBox hoogte */
  line-height: 0;
  position: relative;
  background: none;   /* verwijder achtergrondkleur */
  margin-bottom: -2px;
  margin-top: -6px;
  overflow: visible;
  border: none !important;
}
.footer-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

.footer__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
  gap: 1rem;
  background: #f8f8f8;
}

.footer__cta span {
  font-size: 1.2rem;
  color: #636A63;
  font-weight: 500;
}

.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__seo {
  color: #AFAFAF;
  font-size: 0.93rem;
  margin-bottom: 1.1rem;
  text-align: center;
}

/* Portfolio sections */
.portfolio-section {
    margin-bottom: 0 !important;
    padding-top: 0.5rem;
}

.portfolio-section h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #333;
    font-weight: 500;
}

.portfolio-section:first-of-type {
    padding-top: 0;
}

/* Portfolio Overview Styles */
.portfolio-overview {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 4vw;
}

.portfolio-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-intro p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    font-weight: 400;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.category-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.category-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    height: 270px;
    overflow: hidden;
}

.category-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover .category-images img {
    transform: scale(1.05);
}

.category-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.category-content p {
    flex-grow: 1;
}

.category-content h2 {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #333;
    font-weight: 600;
}

.category-content p {
    font-family: 'Helvetica Neue', sans-serif;
    color: #666;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.category-link {
    display: inline-block;
    color: #a89c8e;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
    margin-top: auto;
}

.category-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #a89c8e;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.category-link:hover {
    color: #8b857c;
}

.category-link:hover::after {
    transform: scaleX(1);
}

/* Responsive adjustments for portfolio overview */
@media (max-width: 768px) {
    .portfolio-overview {
        padding: 1.5rem 4vw;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .category-images {
        height: 200px;
    }
    
    .category-content {
        padding: 1.25rem;
    }
    
    .portfolio-intro p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .category-images {
        height: 140px;
    }
    
    .category-content h2 {
        font-size: 1.3rem;
    }
    
    .category-content p {
        font-size: 0.9rem;
    }
}

/* Adjust scroll margin for fixed header */
.portfolio-section {
    scroll-margin-top: 80px;
}

.footer-bg {
  background: #fff !important;
  width: 100vw;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box;
}
.footer {
  background: #f8f8f8 !important;
}

.footer-section-bg {
  background: #f8f8f8;
}
.home .footer-section-bg {
  background: #fff;
}
.footer__cta,
.footer {
  background: transparent !important;
}

/* Elegante, compacte linkstijl voor accordion bullets */
.accordion-bullet-list a {
  color: #a89c8e;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1.2px;
  font-weight: 500;
  letter-spacing: normal;
  padding: 0;
  margin: 0;
  background: none;
  transition: color 0.18s, text-decoration-thickness 0.18s;
}
.accordion-bullet-list a:hover {
  color: #7c6e5d;
  text-decoration-thickness: 2px;
}

/* Blog Search Styles */
.blog-search {
    margin: 1.1rem auto 0.8rem auto;
    max-width: 370px;
    text-align: center;
    background: none;
    border: none;
    z-index: 1;
    position: relative;
    min-height: unset;
    display: block;
    opacity: 1;
    box-shadow: none;
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
    background: #faf9f7;
    border: 1px solid #e5e2dd;
    border-radius: 22px;
    padding: 0.1rem 0.3rem 0.1rem 0.9rem;
    transition: all 0.18s;
    box-shadow: 0 1px 6px rgba(168, 156, 142, 0.04);
    margin: 0 auto;
    height: 36px;
}

.search-container:focus-within {
    border-color: #a89c8e;
    box-shadow: 0 2px 10px rgba(168, 156, 142, 0.10);
    transform: translateY(-1px);
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0.1rem 0.3rem 0.1rem 0;
    font-size: 1rem;
    background: transparent;
    color: #333;
    font-family: inherit;
    min-width: 0;
    height: 32px;
}

.search-input::placeholder {
    color: #b3aea7;
    font-style: italic;
    font-size: 1rem;
    letter-spacing: 0.01em;
}

.search-btn {
    background: #f3f1ee;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.18s, transform 0.18s;
    color: #a89c8e;
    margin-left: 0.3rem;
    position: relative;
    overflow: hidden;
    box-shadow: none;
    padding: 0;
}

.search-btn:hover {
    background: #edeae6;
    transform: scale(1.06);
}

.search-btn:active {
    transform: scale(0.97);
}

.search-btn:focus {
    outline: 2px solid #a89c8e;
    outline-offset: 2px;
}

.search-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.18s;
    display: block;
}

.search-btn:hover svg {
    transform: scale(1.08);
}

.search-results-info {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    min-height: 1.5rem;
    font-family: 'Montserrat', Arial, sans-serif;
}

.search-results-info.has-results {
    color: #a89c8e;
    font-weight: 500;
}

.search-results-info.no-results {
    color: #a89c8e;
    font-style: normal;
    font-weight: 500;
}

/* Hide blog cards when searching */
.blog-card-vertical.search-hidden {
    display: none;
}

.blog-grid-alt {
    margin-top: 0.8rem !important;
} 

/* Utility classes voor inline styles uit de footer */
.footer-logo {
  max-width: 90px;
  margin-bottom: 1rem;
}
.footer-contact-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-align: left;
}
.footer-email-row {
  text-align: left;
}
.footer-email-link {
  display: inline;
}
.footer-social {
  margin-top: 1rem;
  text-align: left;
} 

/* Extra utility classes voor inline styles */
.ml-018em {
  margin-left: 0.18em;
}
.v-align-middle {
  vertical-align: middle;
}
.d-inline {
  display: inline;
}
.d-inline-block {
  display: inline-block;
}
.text-underline {
  text-decoration: underline;
}
.text-underline-dotted {
  text-decoration: underline dotted;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.fw-600 {
  font-weight: 600;
}
.mb-05rem {
  margin-bottom: 0.5rem;
}
.mt-1rem {
  margin-top: 1rem;
}
.fs-11rem {
  font-size: 1.1rem;
}
.fs-125rem {
  font-size: 1.25rem;
}
.fs-115rem {
  font-size: 1.15rem;
}
.fs-13rem {
  font-size: 1.3rem;
}
.color-a89c8e {
  color: #a89c8e;
}
.border-none {
  border: none;
}
.border-radius-16px {
  border-radius: 16px;
}
.p-28-32 {
  padding: 28px 32px;
}
.gap-18px {
  gap: 18px;
}

/* Camera icon styling */
.camera-icon {
  width: 18px;
  vertical-align: middle;
  margin-right: 6px;
}

/* Footer logo styling */
.footer-logo {
  max-width: 90px;
  margin-bottom: 1rem;
}

/* Contact title styling */
.contact-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Footer social spacing */
.footer-social-spacing {
  margin-top: 1rem;
}

/* Dropdown arrow styling */
.dropdown-arrow {
  margin-left: 0.18em;
  vertical-align: middle;
  display: inline;
} 

/* Visueel verbergde breadcrumbs, maar wel toegankelijk voor SEO/screenreaders */
.breadcrumb-nav {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
} 

/* Skip to main content accessibility link */
.skip-to-content {
  position: absolute;
  left: -999px;
  top: 10px;
  background: #fff;
  color: #222;
  padding: 0.7em 1.2em;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(99,106,99,0.08);
  font-size: 1.05rem;
  font-weight: 600;
  z-index: 10000;
  transition: left 0.2s, box-shadow 0.2s;
  outline: none;
  border: 2px solid #a89c8e;
}
.skip-to-content:focus {
  left: 16px;
  box-shadow: 0 4px 16px rgba(99,106,99,0.18);
}

/* Fix for email alignment in footer */
.footer__contact-info .footer__nav-link {
  display: inline;
} 