:root {
            --gold: #D4AF37;
            --gold-light: #FFD700;
            --gold-dark: #B8941F;
            --black: #000000;
            --black-soft: #111111;
            --white: #FFFFFF;
            --gray: #888888;
            --gray-light: #CCCCCC;

            /* Animaties */
            --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-fast: all 0.2s ease;

            /* Shadows */
            --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.3);
            --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.5);
            --glow-gold: 0 0 25px rgba(212, 175, 55, 0.6);
        }

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

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

        body {
            font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--black);
            color: var(--white);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Hero identiek aan index.php */
        .hero-gallery {
            position: relative;
            width: 100%;
            min-height: 100vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Background showcase identiek aan index.php */
        .showcase-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .showcase-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 2s ease-in-out;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .showcase-slide.active {
            opacity: 1;
        }

        /* Slides voor de galerij */
        .slide-gallery-1 {
            background-image:
                linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.8)),
                url('../images/gallery_01.jpg');
        }

        .slide-gallery-2 {
            background-image:
                linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)),
                url('../images/gallery_10.jpg');
        }

        .slide-gallery-3 {
            background-image:
                linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)),
                url('../images/gallery_05.jpg');
        }

        .slide-gallery-4 {
            background-image:
                linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.75)),
                url('../images/gallery_03.jpg');
        }

        /* Hoofd overlay identiek aan index.php */
        .main-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(ellipse at center, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.8) 100%),
                linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.6) 100%);
            z-index: 10;
        }

        /* Zwevende particles identiek aan index.php */
        .particles-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 5;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: var(--gold);
            border-radius: 50%;
            opacity: 0;
            animation: float 12s infinite linear;
        }

        @keyframes float {
            0% {
                opacity: 0;
                transform: translateY(100vh) translateX(0) rotate(0deg);
            }
            10% {
                opacity: 0.8;
            }
            90% {
                opacity: 0.8;
            }
            100% {
                opacity: 0;
                transform: translateY(-100px) translateX(50px) rotate(360deg);
            }
        }

        /* Centrale inhoud identiek aan index.php */
        .hero-content {
            position: relative;
            z-index: 20;
            text-align: center;
            max-width: 900px;
            width: 90%;
            padding: 2rem;
        }

        /* Logo section identiek aan index.php */
        .logo-container {
            margin-bottom: 3rem;
        }

        .main-logo {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            box-shadow: var(--glow-gold);
            transition: var(--transition-smooth);
            margin-bottom: 1.5rem;
        }

        .main-logo:hover {
            transform: scale(1.05);
            box-shadow: 0 0 40px rgba(212, 175, 55, 0.8);
        }

        .brand-tagline {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            font-weight: 400;
            letter-spacing: 3px;
            text-transform: uppercase;
            background: linear-gradient(45deg, var(--gold), var(--gold-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 600;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, var(--gold), var(--gold-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .hero-bio {
            margin-top: 2rem;
        }

        .hero-bio .lead {
            font-size: 1.1rem;
            font-weight: 400;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.9);
            font-style: italic;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero-bio .lead a {
            color: var(--gold);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition-fast);
        }

        .hero-bio .lead a:hover {
            color: var(--gold-light);
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
        }

        /* Animaties identiek aan index.php */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards;
        }

        .fade-in.delay-1 { animation-delay: 0.3s; }
        .fade-in.delay-2 { animation-delay: 0.6s; }
        .fade-in.delay-3 { animation-delay: 0.9s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Moderne filters met index.php stijl */
        .filters-container {
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
            padding: 2.5rem 0;
            box-shadow: var(--shadow-soft);
            position: relative;
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        }

        .filter-buttons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .filter-btn {
            background: rgba(212, 175, 55, 0.05);
            border: 1px solid rgba(212, 175, 55, 0.3);
            color: var(--white);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition-smooth);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            backdrop-filter: blur(10px);
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.2));
            border-color: var(--gold);
            color: var(--gold-light);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
        }

        /* Moderne galerij grid met CSS Grid - Stijl index.php */
        .gallery-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 1rem;
            background: #0a0a0a;
            min-height: 100vh;
        }

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

        .gallery-item {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            transition: var(--transition-smooth);
            cursor: pointer;
            background: white;
            opacity: 0;
            transform: translateY(30px);
        }

        .gallery-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .gallery-item:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: var(--shadow-strong);
        }

        .gallery-item img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            transition: var(--transition-smooth);
            filter: brightness(1.0) contrast(1.0);
        }

        .gallery-item:hover img {
            transform: scale(1.1);
            filter: brightness(1.1) contrast(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.9));
            opacity: 0;
            transition: var(--transition-smooth);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 1.5rem;
        }

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

        .gallery-title {
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .gallery-category {
            color: var(--primary-gold);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 0;
        }

        /* Moderne lightbox */
        .modern-lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
        }

        .modern-lightbox.active {
            display: flex;
        }

        .lightbox-content {
            position: relative;
            max-width: 90vw;
            max-height: 90vh;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
        }

        .lightbox-content img {
            width: 100%;
            height: auto;
            max-height: 90vh;
            object-fit: contain;
        }

        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            font-size: 20px;
            cursor: pointer;
            transition: var(--transition-smooth);
            z-index: 10001;
        }

        .lightbox-close:hover {
            background: var(--primary-gold);
            transform: rotate(90deg);
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.7);
            color: white;
            border: none;
            padding: 15px 20px;
            font-size: 24px;
            cursor: pointer;
            transition: var(--transition-smooth);
            border-radius: 10px;
        }

        .lightbox-nav:hover {
            background: var(--primary-gold);
            color: var(--primary-dark);
        }

        .lightbox-prev {
            left: 20px;
        }

        .lightbox-next {
            right: 20px;
        }

        .lightbox-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: 2rem;
            text-align: center;
        }

        .lightbox-counter {
            color: var(--primary-gold);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .lightbox-quote {
            margin-top: 1.5rem;
            padding: 1.2rem 1.8rem;
            background: rgba(255, 255, 255, 0.95);
            border: 2px solid var(--primary-gold);
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .quote-text {
            font-style: italic;
            font-family: 'Georgia', serif;
            font-size: 1.1rem;
            line-height: 1.7;
            color: #2c2c2c;
            margin: 0;
            text-align: center;
            font-weight: 500;
            text-shadow: none;
        }

        /* Vereenvoudigd laden */
        .gallery-item img {
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .gallery-item img:hover {
            transform: scale(1.05);
        }

        /* Responsive identiek aan index.php */
        @media (max-width: 768px) {
            .hero-content {
                width: 95%;
                padding: 1rem;
            }

            .main-logo {
                width: 150px;
                height: 150px;
            }

            .brand-tagline {
                font-size: 1.4rem;
                letter-spacing: 2px;
            }

            .hero-title {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .masonry-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
                gap: 1.5rem;
            }

            .filters-container {
                padding: 1.5rem 0;
            }

            .filter-btn {
                padding: 0.6rem 1.2rem;
                font-size: 0.8rem;
            }

            .gallery-item img {
                height: 220px;
            }

            .lightbox-content {
                max-width: 95vw;
                max-height: 80vh;
            }

            .lightbox-nav {
                padding: 10px 15px;
                font-size: 18px;
            }
        }

        @media (max-width: 480px) {
            .main-logo {
                width: 120px;
                height: 120px;
            }

            .brand-tagline {
                font-size: 1.2rem;
                letter-spacing: 1px;
            }

            .hero-subtitle {
                font-size: 0.9rem;
            }
        }

        /* Animaties */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.6s ease-out;
        }

        /* Prestatie optimalisaties */
        .gallery-item img {
            will-change: transform;
        }

        .gallery-overlay {
            will-change: opacity;
        }

        /* Dark mode ondersteuning */
        @media (prefers-color-scheme: dark) {
            body {
                background: #1a1a1a;
                color: white;
            }

            .filters-container {
                background: #2a2a2a;
            }

            .gallery-item {
                background: #2a2a2a;
            }
        }