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

        :root {
            --primary-color: #8C180E;
            --primary-dark: #6a120a;
            --primary-light: #a82015;
            --text-dark: #333;
            --text-light: #666;
            --bg-light: #f8f8f8;
            --white: #ffffff;
            --shadow: 0 2px 10px rgba(0,0,0,0.1);
            --shadow-hover: 0 5px 20px rgba(0,0,0,0.15);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background: var(--white);
        }

        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: var(--white);
            box-shadow: var(--shadow);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

       .aangesloten-section {
			padding: 60px 5%;
			max-width: 1200px;
            margin: 0 auto;
        }


        .logo-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            justify-items: center;
        }

        .logo-card {
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 175px;
            width: 100%;
            max-width: 350px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .logo-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
        }

        .logo-card img {
            max-width: 100%;
            max-height: 180px;
            object-fit: contain;
        }

        /* Specifieke kleuren voor elk logo */
        .rvb-bg {
            background-color: #3d1f5d;
        }

        .nsc-bg {
            background-color: #ffffff;
        }

        .fci-bg {
            background-color: #224269;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
            align-items: center;
        }

        nav a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

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

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: width 0.3s ease;
        }

        nav a:hover::after,
        nav a.active::after {
            width: 100%;
        }

        .phone-number {
            color: var(--primary-color);
            font-weight: bold;
            font-size: 18px;
        }

        .phone-number i {
            margin-right: 5px;
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 28px;
            color: var(--primary-color);
            cursor: pointer;
        }

        /* Main Content */
        main {
            margin-top: 80px;
        }

        section {
            padding: 60px 5%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .hero {
            position: relative;
            height: 500px;
            background: linear-gradient(rgba(140, 24, 14, 0.7), rgba(140, 24, 14, 0.7)), url('images/header.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            margin-top: -80px;
            padding-top: 80px;
        }

        .hero-content h1 {
            font-size: 48px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            animation: fadeInDown 1s ease;
        }

        .hero-content p {
            font-size: 24px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
            animation: fadeInUp 1s ease 0.3s both;
        }

        /* News Section */
        .news-alert {
            background: linear-gradient(135deg, #8C180E, #a01f12);
            color: var(--white);
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 30px;
            text-align: center;
            box-shadow: var(--shadow);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.02); }
        }

        .news-item {
            background: var(--white);
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
        }

        .news-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .news-images {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .image-with-caption {
            text-align: center;
        }

        .image-with-caption img {
            width: 100%;
            object-fit: cover;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }

        .image-with-caption img:hover {
            transform: scale(1.05);
        }

        .image-caption {
            margin-top: 8px;
            font-size: 14px;
            color: var(--text-light);
            font-style: italic;
        }

        .contact-btn {
            display: inline-block;
            margin-top: 20px;
            padding: 10px 25px;
            background: var(--primary-color);
            color: var(--white);
            border-radius: 25px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .contact-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

        .contact-btn i {
            margin-right: 5px;
        }

        /* Logo Section */
        .logos {
            display: flex;
            justify-content: center;
            gap: 40px;
            padding: 40px 0;
            flex-wrap: wrap;
        }

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

       

        /* Archive Section */
        .archive-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .archive-item {
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
        }

        .archive-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .archive-content {
            padding: 20px;
        }

        .archive-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-top: 15px;
        }

        .archive-image-container {
            text-align: center;
        }

        .archive-image-container img {
            width: 100%;
            
            object-fit: cover;
            border-radius: 5px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .archive-image-container img:hover {
            transform: scale(1.05);
        }

        .archive-image-container .caption {
            font-size: 12px;
            color: var(--text-light);
            margin-top: 5px;
        }

       /* Fokkerij Section with Images */
        .fokkerij-images {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .fokkerij-images img {
            width: 100%;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
        }

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

      
      

        /* Dogs Grid */
        .dogs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .dog-card {
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .dog-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .dog-card img {
            width: 100%;
            object-fit: cover;
        }

        .dog-info {
            padding: 20px;
        }

        .dog-info h3 {
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .dog-info p {
            margin: 5px 0;
            font-size: 14px;
        }

        .dog-info i {
            color: var(--primary-color);
            margin-right: 5px;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            z-index: 2000;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background: var(--white);
            border-radius: 15px;
            max-width: 600px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            padding: 30px;
            position: relative;
        }

        .modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 30px;
            cursor: pointer;
            color: var(--primary-color);
            background: none;
            border: none;
        }

        /* Lightbox for Images */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.9);
            z-index: 3000;
            align-items: center;
            justify-content: center;
        }

        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
        }

        .lightbox img {
            max-width: 100%;
            max-height: 90vh;
        }

        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 40px;
            color: var(--white);
            font-size: 40px;
            cursor: pointer;
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.1);
            border: none;
            color: var(--white);
            font-size: 30px;
            padding: 10px 20px;
            cursor: pointer;
            transition: background 0.3s ease;
        }

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

        .lightbox-prev {
            left: 20px;
        }

        .lightbox-next {
            right: 20px;
        }

        /* About Section */
        .about-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .about-text {
            line-height: 1.8;
        }

        .about-images {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .about-image-container {
            text-align: center;
        }

        .about-image-container img {
            width: 100%;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }

        .about-image-container .caption {
            margin-top: 8px;
            font-size: 14px;
            color: var(--text-light);
        }

        /* Contact Section */
        #contact {
            background: var(--bg-light);
            border-radius: 15px;
            padding: 40px;
            text-align: center;
        }

        .contact-info {
            margin: 30px 0;
        }

        .contact-info p {
            margin: 10px 0;
            font-size: 18px;
        }

        .contact-info a {
            color: var(--primary-color);
            text-decoration: none;
        }

        .contact-info i {
            color: var(--primary-color);
            margin-right: 8px;
        }

        /* Gallery */
        .gallery {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            margin-top: 30px;
        }

        .gallery img {
            width: 100%;
            min-height: 180px;
            object-fit: cover;
            border-radius: 10px;
            transition: transform 0.3s ease;
            cursor: pointer;
        }

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

        /* Headings */
        h2 {
            color: var(--primary-color);
            margin-bottom: 30px;
            font-size: 36px;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--primary-color);
        }

        h2 i {
            margin-right: 10px;
            font-size: 30px;
        }

        /* Button */
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--primary-color);
            color: var(--white);
            border-radius: 25px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 16px;
            margin-top: 20px;
        }

        .btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

        .btn i {
            margin-right: 8px;
        }

        /* Footer */
        footer {
            background: var(--text-dark);
            color: var(--white);
            text-align: center;
            padding: 30px;
        }

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

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-content {
                padding: 10px 20px;
            }

            nav ul {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background: var(--white);
                flex-direction: column;
                padding: 20px;
                box-shadow: var(--shadow);
            }

            nav ul.active {
                display: flex;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .hero-content h1 {
                font-size: 32px;
            }

            .hero-content p {
                font-size: 18px;
            }
			
			.logo-container {
                grid-template-columns: 1fr;
            }

            .logo-card {
                padding: 40px;
                min-height: 220px;
            }

            .logo-card img {
                max-height: 140px;
            }

          

            .gallery {
                grid-template-columns: repeat(2, 1fr);
            }

            h2 {
                font-size: 28px;
            }

            .phone-number {
                display: none;
            }

            section {
                padding: 40px 20px;
            }
        }

        .hidden {
            display: none;
        }

        .show-more {
            text-align: center;
            margin-top: 20px;
        }