/* ========================================
   ERWIN OLAF CHARCOAL THEME
   Edward Meijer - Pianostemmer & Pianotechnicus
   Cinematisch, dramatisch, verstild
   ======================================== */

:root {
    /* Charcoal Palette */
    --charcoal-deep: #1C1C1C;
    --charcoal-dark: #2C2C2C;
    --charcoal-medium: #3D3D3D;
    --charcoal-soft: #5A5A5A;
    --gray-warm: #888888;
    --gray-light: #ABABAB;
    --gray-pale: #D0D0D0;
    --gray-whisper: #E8E8E8;
    --white-warm: #FAFAFA;
    --white-pure: #FFFFFF;
    
    /* Functional Colors */
    --text-primary: var(--charcoal-dark);
    --text-secondary: var(--charcoal-soft);
    --text-muted: var(--gray-warm);
    --border-light: var(--gray-whisper);
    --border-medium: var(--gray-pale);
    
    /* Typography */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    
    /* Transitions */
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-weight: 400;
    color: var(--text-primary);
    background-color: var(--white-warm);
    line-height: 1.7;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 500;
    color: var(--charcoal-deep);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 400;
}

h2 {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    margin-bottom: var(--space-md);
    position: relative;
    padding-bottom: var(--space-sm);
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background: var(--charcoal-dark);
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    color: var(--text-secondary);
}

a {
    color: var(--text-secondary);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition-smooth);
}

a:hover {
    color: var(--charcoal-dark);
}

/* ========================================
   HEADER - DESKTOP (verborgen, logo nu in sidebar)
   ======================================== */

.desktop-header {
    display: none;
}

/* Sidebar Logo - boven menu */
.sidebar-logo {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e5e5;
}

.sidebar-logo img {
    max-width: 100%;
    height: auto;
    transition: opacity 0.3s ease;
}

.sidebar-logo img:hover {
    opacity: 0.8;
}

.desktop-header h1 {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    letter-spacing: 0.02em;
    color: var(--charcoal-deep);
    background: none;
    -webkit-text-fill-color: var(--charcoal-deep);
}

.desktop-header .subtitle {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 400;
}

.desktop-header .header-logo {
    max-height: 70px;
    width: auto;
    display: block;
    transition: var(--transition-smooth);
}

.desktop-header .header-logo:hover {
    opacity: 0.8;
}

/* ========================================
   HEADER - MOBILE
   ======================================== */

.mobile-header {
    display: none;
    padding: var(--space-md);
    border-bottom: 1px solid var(--border-light);
    background: var(--white-pure);
    position: sticky;
    top: 0;
    z-index: 999;
}

.mobile-header .header-brand {
    flex: 1;
    min-width: 0;
}

.mobile-header .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-header .header-brand h1 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.125rem;
    color: var(--charcoal-deep);
    background: none;
    -webkit-text-fill-color: var(--charcoal-deep);
}

.mobile-header .header-brand .subtitle {
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 400;
}

.mobile-header .header-logo {
    max-height: 50px;
    width: auto;
}

/* Hamburger Button */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    flex-shrink: 0;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--charcoal-dark);
    transition: var(--transition-smooth);
    transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation Overlay */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: var(--white-pure);
    z-index: 1000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

.mobile-nav-content {
    text-align: center;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-menu li {
    margin-bottom: var(--space-md);
}

.mobile-nav-menu a {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
    display: block;
    padding: 0.5rem 1rem;
    -webkit-tap-highlight-color: transparent;
}

.mobile-nav-menu a:hover,
.mobile-nav-menu a.active {
    color: var(--gray-warm);
}

/* ========================================
   THREE COLUMN LAYOUT - Fixed sidebars, scrolling center
   ======================================== */

.three-column-layout {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 100vh;
    position: relative;
}

/* Left Sidebar - Fixed */
.left-sidebar {
    width: 220px;
    flex-shrink: 0;
    padding: var(--space-xl) var(--space-lg);
    border-right: 1px solid #e5e5e5;
    background: #fafafa;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    box-shadow: none;
    backdrop-filter: none;
}

.left-sidebar .widget {
    background: transparent;
    padding: 0 0 var(--space-lg) 0;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    margin-bottom: var(--space-xl);
}

/* Blog Tags Widget */
.left-sidebar .blog-tags-widget {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid #e5e5e5;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tag-cloud-item {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: #666;
    text-decoration: none;
    padding: 0.375rem 0.75rem;
    background: transparent;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.tag-cloud-item:hover {
    color: #333;
    border-color: #999;
}

.left-sidebar h3,
.widget h3 {
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #888;
    margin-bottom: var(--space-lg);
    background: none;
    -webkit-text-fill-color: #888;
}

/* Sidebar Navigation - elegant */
.sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav li {
    margin-bottom: 0;
}

.sidebar-nav a {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: #666;
    text-decoration: none;
    display: block;
    padding: 0.75rem 0;
    padding-left: var(--space-sm);
    border-left: 1px solid transparent;
    transition: all 0.3s ease;
    background: none;
}

.sidebar-nav a:hover {
    color: #333;
    border-left-color: #ccc;
    background: none;
}

.sidebar-nav a.active {
    color: #333;
    border-left-color: #333;
    background: transparent;
    font-weight: 500;
}

/* Main Content - Scrollable */
.main-content {
    flex: 1;
    padding: var(--space-xl) var(--space-lg);
    background: var(--white-warm);
    min-height: calc(100vh - 80px);
    overflow-y: auto;
}

.main-content h2 {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.main-content h2:first-child {
    margin-top: 0;
}

.main-content p {
    margin-bottom: var(--space-md);
}

/* Right Sidebar - elegant, fixed */
.right-sidebar {
    width: 240px;
    flex-shrink: 0;
    padding: var(--space-xl) var(--space-lg);
    border-left: 1px solid #e5e5e5;
    background: #fafafa;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    box-shadow: none;
    backdrop-filter: none;
}

.right-sidebar .widget {
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid #e5e5e5;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    border-radius: 0;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
}

.right-sidebar .widget:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.right-sidebar .widget p {
    font-size: 0.875rem;
    line-height: 1.9;
    color: #555;
}

/* ========================================
   FEATURED IMAGE STYLING
   ======================================== */

/* Featured Image Container & Alignment */
.featured-image-container {
    margin-bottom: 1.5rem;
}

/* Image Caption styling */
.image-caption {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--charcoal-medium);
    margin-top: 0.5rem;
    margin-bottom: 0;
    line-height: 1.4;
}

.featured-image-container.align-links {
    text-align: left;
}

.featured-image-container.align-midden {
    text-align: center;
}

.featured-image-container.align-rechts {
    text-align: right;
}

.featured-image-container.align-volledig {
    text-align: center;
}

.featured-image-container.align-volledig .featured-image {
    width: 100% !important;
    max-width: 100% !important;
}

/* Featured Image Shapes */
.featured-image {
    height: auto;
    display: inline-block;
    transition: var(--transition-smooth);
    max-width: none;
    border: none;
    border-radius: 4px;
}

.featured-image.vierkant {
    border-radius: 4px;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.featured-image.rond {
    border-radius: 50%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.featured-image.langwerpig {
    border-radius: 4px;
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* Shadow effect */
.featured-image.with-shadow {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 4px 16px rgba(0, 0, 0, 0.1);
}

.featured-image:hover {
    transform: scale(1.02);
}

/* ========================================
   FEATURED IMAGE - MOBILE RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .featured-image-container {
        text-align: center !important;
        margin-bottom: 1.5rem;
        display: flex;
        justify-content: center;
    }
    
    /* Reset alle inline styles voor mobiel - 65% van desktop */
    .featured-image[style] {
        width: 65% !important;
        max-width: 390px !important;
        height: auto !important;
        margin: 0 auto;
        display: block;
        object-fit: cover;
    }
    
    .featured-image.rond[style] {
        width: 65% !important;
        max-width: 390px !important;
        aspect-ratio: 1/1 !important;
        height: unset !important;
        object-fit: cover;
        border-radius: 50% !important;
    }
    
    .featured-image.vierkant[style] {
        width: 65% !important;
        max-width: 390px !important;
        aspect-ratio: 1/1 !important;
        height: unset !important;
        object-fit: cover;
    }
    
    .featured-image:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
    .featured-image[style] {
        width: 65% !important;
        max-width: 320px !important;
        height: auto !important;
        object-fit: cover;
    }
    
    .featured-image.rond[style] {
        width: 65% !important;
        max-width: 320px !important;
        aspect-ratio: 1/1 !important;
        height: unset !important;
        object-fit: cover;
        border-radius: 50% !important;
    }
    
    .featured-image.vierkant[style] {
        width: 65% !important;
        max-width: 320px !important;
        aspect-ratio: 1/1 !important;
        height: unset !important;
        object-fit: cover;
    }
}

/* ========================================
   SERVICE CARDS
   ======================================== */

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 2.5rem;
    margin-bottom: 3rem;
}

.service-card {
    background: transparent;
    border: none;
    border-left: 2px solid #e5e5e5;
    padding: 0 0 0 2rem;
    transition: var(--transition-smooth);
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
}

.service-card:hover {
    border-left-color: #1a1a1a;
    box-shadow: none;
    transform: none;
}

.service-card h3 {
    margin-bottom: 0.75rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    font-size: 1.375rem;
    color: #1a1a1a;
    letter-spacing: 0.01em;
}

.service-card p {
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-bottom: 0;
    color: #555;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.125rem;
    font-weight: 400;
    font-style: italic;
    text-transform: none;
    letter-spacing: 0.02em;
    padding: 0;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: none;
    border-bottom: 1px solid #1a1a1a;
    cursor: pointer;
    background: transparent;
    color: #1a1a1a;
    padding-bottom: 0.25rem;
}

.btn:hover {
    background: transparent;
    color: #555;
    border-bottom-color: #555;
}

.btn-outline {
    background: transparent;
    color: var(--charcoal-dark);
    border: 1px solid var(--charcoal-dark);
}

.btn-outline:hover {
    background: var(--charcoal-dark);
    color: var(--white-pure);
}

/* ========================================
   FOOTER
   ======================================== */

footer {
    background: var(--white-pure);
    color: var(--charcoal-dark);
    padding: var(--space-lg) var(--space-md);
    margin-top: var(--space-2xl);
    border-top: 1px solid var(--border-light);
}

footer .footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

footer .footer-left {
    flex: 1;
}

footer .footer-right {
    flex-shrink: 0;
}

footer .footer-socials {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

footer .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--charcoal-dark);
    color: var(--white-pure);
    transition: all 0.2s ease;
}

footer .social-icon:hover {
    background: var(--charcoal-deep);
    color: var(--white-pure);
}

footer .social-icon i {
    width: 18px;
    height: 18px;
}

footer .footer-menu {
    margin-bottom: 0.75rem;
}

footer .footer-menu a {
    font-size: 0.8125rem;
    color: var(--charcoal-dark);
}

footer .footer-divider {
    margin: 0 0.5rem;
    opacity: 0.4;
    color: var(--charcoal-dark);
}

footer p {
    font-size: 0.8125rem;
    color: var(--charcoal-dark);
    margin: 0;
}

footer a {
    color: var(--charcoal-dark);
    text-decoration: none;
    transition: color var(--transition-smooth);
}

footer a:hover {
    color: var(--charcoal-deep);
}

footer .footer-disclaimer {
    margin-top: 0.5rem;
}

footer .footer-disclaimer p {
    font-size: 0.75rem;
    opacity: 0.7;
}

/* Google Footer Link */
footer .footer-google {
    margin-top: 0.5rem;
}

footer .google-footer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: var(--charcoal-soft);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer .google-footer-link:hover {
    color: var(--charcoal-deep);
}

/* Association Logos */
.footer-associations {
    text-align: right;
}

.associations-label {
    display: block;
    font-size: 0.6875rem;
    color: var(--charcoal-soft);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.association-logos {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.association-logo {
    height: 45px;
    width: auto;
    filter: none;
    opacity: 1;
    transition: all 0.2s ease;
}

.association-logo:hover {
    filter: brightness(0) invert(1);
    opacity: 1;
}

/* ========================================
   SUBTLE CHARCOAL TEXTURE
   ======================================== */

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0.012;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    z-index: 9999;
}

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

@media (max-width: 1024px) {
    .desktop-header {
        display: none;
    }
    
    .mobile-header {
        display: flex;
    }
    
    .mobile-nav {
        display: flex;
    }
    
    .three-column-layout {
        flex-direction: column;
    }
    
    .left-sidebar {
        display: none;
    }
    
    .right-sidebar {
        width: 100%;
        height: auto;
        position: static;
        border-left: none;
        border-top: 1px solid var(--border-light);
    }
    
    .main-content {
        min-height: auto;
    }
    
    .desktop-only {
        display: none !important;
    }
}

@media (max-width: 768px) {
    :root {
        --space-lg: 2rem;
        --space-xl: 3rem;
        --space-2xl: 4rem;
    }
    
    .mobile-header {
        padding: var(--space-sm) var(--space-md);
    }
    
    .main-content {
        padding: var(--space-lg) var(--space-md);
    }
    
    /* Centreer content op mobiel */
    .main-content h2:first-child {
        text-align: center;
    }
    
    .main-content h2:first-child::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: var(--space-md);
    }
    
    .right-sidebar {
        padding: var(--space-lg) var(--space-md);
    }
    
    footer .footer-content {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
    
    footer .footer-left {
        order: 2;
    }
    
    footer .footer-right {
        order: 1;
    }
    
    footer .footer-socials {
        justify-content: center;
    }
    
    .footer-associations {
        text-align: center;
    }
    
    .association-logos {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .mobile-header .header-brand h1 {
        font-size: 1.125rem;
    }
    
    .mobile-header .header-brand .subtitle {
        font-size: 0.625rem;
    }
    
    .mobile-nav-menu a {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.375rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.75rem;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.text-center {
    text-align: center;
}

.mt-lg {
    margin-top: var(--space-lg);
}

.mb-lg {
    margin-bottom: var(--space-lg);
}

/* ========================================
   BLOG STYLING - PHOTOGRAPHISCH
   ======================================== */

/* Blog Overview - Compact Cards */
.blog-overview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.blog-card {
    background: var(--white-pure);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.blog-card-image {
    display: block;
    position: relative;
    height: 180px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 1.25rem;
}

.blog-card-title-link {
    text-decoration: none;
    color: inherit;
}

.blog-card-title-link h2 {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    color: var(--charcoal-deep);
}

.blog-card-title-link h2::after {
    display: none;
}

.blog-card .blog-date {
    font-size: 0.75rem;
    color: var(--gray-warm);
    margin-bottom: 0.75rem;
}

.blog-card .blog-excerpt {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--charcoal-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s, gap 0.2s;
}

.btn-read-more:hover {
    color: var(--charcoal-deep);
    gap: 0.75rem;
}

.btn-read-more svg {
    width: 14px;
    height: 14px;
}

/* Blog Detail - Hero Style */
.blog-hero {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    height: 50vh;
    min-height: 350px;
    max-height: 500px;
    overflow: hidden;
    background: var(--charcoal-deep);
}

.blog-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 2rem 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
}

.blog-hero-content {
    max-width: 800px;
    margin: 0 auto;
    color: white;
    text-align: center;
}

.blog-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 400;
    margin: 0 0 0.5rem 0;
    color: white;
}

.blog-hero .blog-meta {
    font-size: 0.875rem;
    opacity: 0.85;
}

.blog-hero-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal-deep) 100%);
    font-size: 4rem;
    color: var(--gray-warm);
}

/* Blog Article Content */
.blog-article-detail {
    max-width: 100%;
}

.blog-article-detail .blog-header {
    margin-bottom: 2rem;
}

.blog-article-detail .blog-header h1 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.blog-article-detail .blog-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-warm);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.blog-featured-image {
    margin: 0 0 2rem 0;
    border-radius: 12px;
    overflow: hidden;
}

.blog-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-content-body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.blog-content-body p {
    margin-bottom: 1.25rem;
}

.blog-content-body a {
    color: var(--charcoal-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.blog-content-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

/* Blog Tags */
.blog-post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.blog-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 980px;
    font-size: 0.75rem;
    color: white;
    text-decoration: none;
    transition: opacity 0.2s;
}

.blog-tag:hover {
    opacity: 0.85;
}

/* Blog Media Gallery - Photographisch */
.blog-media-gallery {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.media-gallery-title {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--charcoal-dark);
}

.media-gallery-title::after {
    display: none;
}

.blog-photos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
}

.blog-photo {
    display: block;
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px;
    background: var(--gray-whisper);
}

.blog-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-photo:hover img {
    transform: scale(1.05);
}

.blog-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background 0.3s ease;
    pointer-events: none;
}

.blog-photo:hover::after {
    background: rgba(0,0,0,0.1);
}

/* Video Container */
.blog-video-container {
    margin-top: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    background: var(--charcoal-deep);
}

.blog-video-container video {
    width: 100%;
    display: block;
}

.video-caption {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: var(--gray-light);
    background: var(--charcoal-dark);
}

/* Blog Footer */
.blog-footer {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--white-pure);
    border: 1px solid var(--border-medium);
    border-radius: 980px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.btn-back:hover {
    background: var(--gray-whisper);
    border-color: var(--gray-pale);
}

.btn-back svg {
    width: 16px;
    height: 16px;
}

/* Lightbox */
.lightbox,
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active,
.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay img,
.lightbox-image {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    border: none;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 2rem;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.2s;
    line-height: 1;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.2);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border: none;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 2rem;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.2s;
}

.lightbox-prev {
    left: 1.5rem;
}

.lightbox-next {
    right: 1.5rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.2);
}

/* Lightbox layout-3col components */
.lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    font-family: var(--font-sans);
}

/* Tag Filter Info */
.tag-filter-info {
    background: var(--gray-whisper);
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

/* Responsive Blog */
@media (max-width: 768px) {
    .blog-overview {
        grid-template-columns: 1fr;
    }
    
    .blog-card-image {
        height: 200px;
    }
    
    .blog-hero {
        height: 40vh;
        min-height: 280px;
    }
    
    .blog-photos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 44px;
        height: 44px;
        font-size: 1.5rem;
    }
    
    .lightbox-prev {
        left: 0.75rem;
    }
    
    .lightbox-next {
        right: 0.75rem;
    }
}

/* ========================================
   PAGE GALLERY STYLES
   ======================================== */

.page-gallery {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid #e5e5e5;
}

.gallery-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 2rem;
    color: #333;
    letter-spacing: 0.01em;
}

.gallery-grid {
    display: grid;
    gap: 1.25rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
}

.gallery-link {
    display: block;
    position: relative;
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, opacity 0.3s ease;
    filter: grayscale(15%);
}

.gallery-style-grid .gallery-item img {
    aspect-ratio: 1/1;
}

.gallery-style-masonry .gallery-item img {
    aspect-ratio: auto;
    height: auto;
}

.gallery-item:hover img {
    transform: scale(1.03);
    filter: grayscale(0%);
}

/* Gallery Caption - elegant */
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    color: white;
    padding: 3rem 1rem 1rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 0.9375rem;
    font-style: italic;
    text-align: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .gallery-caption {
        opacity: 1;
        font-size: 0.8125rem;
        padding: 2rem 0.75rem 0.75rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ========================================
   PAGE CONTENT STYLING - Privacy, Algemene voorwaarden, etc.
   ======================================== */

.page-content {
    line-height: 1.9;
    color: var(--text-secondary);
}

.page-content h2 {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--charcoal-deep);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-light);
}

.page-content h2:first-child {
    margin-top: 0;
}

.page-content h3 {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--charcoal-dark);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.page-content p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.page-content ul,
.page-content ol {
    margin: 1rem 0 1.5rem 0;
    padding-left: 1.5rem;
}

.page-content li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.8;
}

.page-content li strong {
    color: var(--charcoal-dark);
    font-weight: 500;
}

.page-content a {
    color: var(--charcoal-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

.page-content a:hover {
    color: var(--gray-warm);
}

.page-content em {
    font-style: italic;
    color: var(--text-muted);
}

/* Final paragraph with date - subtle */
.page-content > p:last-child em {
    display: block;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
    font-size: 0.875rem;
    color: var(--text-muted);
}
