        .blog-container {
            max-width: 1200px;
            margin: 0 auto;
            padding:10px;
        }
        .blog-card {
            display: flex;
            background: rgba(255, 255, 255, 1);
            border-radius: 16px;
            border: 1px solid rgba(0, 0, 0, 0.3);
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            padding: 10px;
        }
        .blog-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
        }

        .blog-card.even .blog-image {
            order: 1;
            border-radius: 10px 0 0 10px;
        }
        .blog-card.even .blog-content {
            order: 2;
        }
        .blog-card.odd .blog-image {
            order: 2;
            border-radius: 0 10px 10px 0;
        }
        .blog-card.odd .blog-content {
            order: 1;
        }
        .blog-image {
            width: 30%;
            max-height: 300px;
            
            background-color: #e0e0e0;
            border-radius: 16px 0 0 16px;
            overflow: hidden;
            position: relative;
        }
        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .blog-content {
            width: 70%;
            padding: 24px;
            display: flex;
            flex-direction: column;
        }
        .blog-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: #2d3748;
            line-height: 1.3;
        }
        .blog-text {
            color: #4a5568;
            line-height: 1.6;
            flex-grow: 1;
        }
        .blog-meta {
            margin-top: 16px;
            color: #718096;
            font-size: 0.875rem;
            display: flex;
            gap: 16px;
        }
        @media (max-width: 768px) {
            .blog-card {
                flex-direction: column;
            }
            .blog-card.even .blog-image,
            .blog-card.odd .blog-image {
                order: 1;
                width: 100%;
                height: 200px;
                border-radius: 10px 10px 0 0;
            }
            .blog-card.even .blog-content,
            .blog-card.odd .blog-content {
                order: 2;
                width: 100%;
            }
        }
.hero-section picture {
width: 100%;
height: 100%;
}
        .hero-section {
margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100vw;
            height: 50vh;
        }
                .hero-image {
            position: relative;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }

        .hero-content {
            text-align: center;
            color: white;
            max-width: 800px;
            padding: 0 20px;
            position: absolute;
           
        }

        .hero-title {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        }

        .hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
            line-height: 1em;
        }

        .cta-button {
            display: inline-block;
            background-color: var(--pagebtn);
            color: var(--pagetxt);
            padding: 15px 40px;
            font-size: 1.2rem;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            font-weight: 600;
        }

        .cta-button:hover {
            background-color: var(--pagebtn);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }
        .cta-button:active {
            transform: translateY(-1px);
        }
        /* Mobile-first responsive adjustments */
        @media (max-width: 768px) {
            .hero-section {
                height: 50vh; /* 50% of viewport height on mobile */
                min-height: 400px; /* Ensure it doesn't get too small */
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .cta-button {
                padding: 12px 30px;
                font-size: 1.1rem;
            }
        }

        @media (max-width: 480px) {
            .hero-section {
                height: 50vh;
                min-height: 350px;
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .cta-button {
                padding: 10px 25px;
                font-size: 1rem;
            }
        }
        /* Desktop specific styling */
        @media (min-width: 769px) {
            .hero-section {
                height: 100vh; /* Full height on desktop */
            }
        }
        /* Content section for demonstration */
        .content-section {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .content-section h2 {
            margin-bottom: 20px;
            color: #333;
        }
        .content-section p {
            margin-bottom: 15px;
            color: #666;
        }
.tagdiv{margin: 5px; text-align: center; width: 100%; background: var(--heade);}
.kortingbadge {
  background-color: var(--headersbtn);
  width: 28px;
  height: 28px;
  border-radius: 100%;
  text-align: center;
  display: block;
  float: left;
  transform: rotate(-30deg);
  margin: 4px;
  zoom: 0.7;
   border: 3px solid white;
  box-shadow: 0 0 0 3px var(--headersbtn);
  color: var(--headersbtntxt);
  font-size: 0.9em;
  font-weight: bold;
  border: 1px solid var(--headersbtntxt) ;


}
.kortingbadge div {
text-align:center; margin-top:2px;
}

:root {
  --color-white-100: hsl(206, 0%, 100%);
  --color-white-200: hsl(206, 0%, 90%);
  --color-white-300: hsl(206, 0%, 80%);
  --color-white-400: hsl(206, 0%, 65%);
  --color-white-500: hsl(206, 0%, 50%);
  --color-black-100: hsl(240, 5%, 35%);
  --color-black-200: hsl(240, 5%, 25%);
  --color-black-300: hsl(240, 5%, 15%);
  --color-black-400: hsl(240, 5%, 10%);
  --color-blue-100: hsl(215, 97%, 87%);
  --color-blue-200: hsl(215, 96%, 78%);
  --color-blue-300: hsl(215, 94%, 68%);
  --color-blue-400: hsl(215, 91%, 60%);
  --color-blue-500: hsl(215, 83%, 53%);
  --color-blue-600: hsl(215, 76%, 48%);
  --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
     0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
     0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
     0 4px 6px -2px rgba(0, 0, 0, 0.05);
}



main {
  overflow: hidden;
}

p {
  text-wrap: balance;
}

a,
button {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border: none;
  outline: none;
  background: none;
}

img{
  display: block;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.sectionhero {
  margin: 0 auto;
  padding: 4rem 0 2rem;
}

.containerhero {
  max-width: 75rem;
  height: auto;
  margin: 0 auto;
  
}

.paragraph {
  font-family: inherit;
  text-wrap: balance;
  color: inherit;
}

.heading-xl {
  font-family: inherit;
  font-size: clamp(2.648rem, 6vw, 4.241rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
}
.heading-lg {
  font-family: inherit;
  font-size: clamp(2.179rem, 5vw, 3.176rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
}
.heading-md {
  font-family: inherit;
  font-size: clamp(1.794rem, 4vw, 2.379rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -1px;
}

.btnhero {
  display: inline-block;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  outline: none;
  border: none;
  border-radius: 0.25rem;
  text-transform: unset;
  transition: all 0.3s ease-in-out;
}
.btnhero-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
.btnhero-darken {
  padding: 0.75rem 2rem;
  color: var(--color-white-100);
  background-color: var(--color-black-200);
  box-shadow: var(--shadow-medium);
}
.darkmode .btnhero-darken {
  background-color: var(--color-blue-500);
}


.bannerhero-column {
  position: relative;
  display: grid;
  align-items: center;
  row-gap: 2rem;
 
}
@media only screen and (min-width: 48rem) {
  .bannerhero-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
    margin-top: 4rem;
  }
}
@media only screen and (min-width: 64rem) {
  .bannerhero-column {
    grid-template-columns: 1fr -webkit-max-content;
    grid-template-columns: 1fr max-content;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
}
.bannerhero-image {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  justify-self: center;


}
@media only screen and (min-width: 48rem) {
  .bannerhero-image {
    order: 1;
    max-width: 28rem;
    height: auto;
    border-radius: 50px;
  }
  .bannerhero-column {

  padding:0px 2em;
}
}
@media only screen and (min-width: 64rem) {
  .bannerhero-image {
    max-width: 33rem;
    height: auto;
  }

}
.bannerhero-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 1.5rem;
  padding: 0 1.25rem;
}




  .cardcontainer {
            max-width: 1200px;
            margin: 0 auto;
            padding: 10px;
        }

      
  
        .subtitle {
            color: #7f8c8d;
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;

        }

        .card {
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            padding:5px;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
        }

        .card-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
            border-radius: 8px 8px 0 0;
        }

        .card-content {
            padding: 15px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .card-title {
            font-size: 1.4rem;
            color: #2c3e50;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .card-text {
            color: #555;
            flex-grow: 1;
            margin-bottom: 20px;
        }

        .cardindex-footer {
            display: flex;
            justify-content: flex-start;
            align-items: self-end;
            padding-top: 15px;
           
        }

        .card-date {
            color: #7f8c8d;
            font-size: 0.9rem;
        }

        .card-btn {
            background-color: var(--hoofdkleur);
            color: var(--hoofdlinkkleur);
            border: none;
            padding: 8px 16px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.2s ease;
        }

 .card-btn:hover{

            color: var(--hoofdlinkkleur);

        }

     
        .responsive-indicator {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
            flex-wrap: wrap;
            gap: 10px;
        }

        .indicator {
            background-color: #ecf0f1;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            color: #2c3e50;
        }

        /* Media queries for responsive behavior */
        @media (min-width: 1024px) {
            .cards-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (min-width: 768px) and (max-width: 1023px) {
            .cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 767px) {
            .cards-grid {
                grid-template-columns: 1fr;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            .subtitle {
                font-size: 1rem;
            }
        }

     /* Vast frame bovenaan */
    .video-frame {
    position: relative;
           
            left: 0;
            width: 100%;
            background: black;
            z-index: -1;
       padding-top: 40px;
       padding-bottom: 80px;
       height: 100vh;
    }

    /* Portrait verhouding 9:16 */
    .video-container {
      position: relative;
      width: 100%;
      aspect-ratio: 9 / 16;
      height: 100vh;
      overflow: hidden;
      
    }
 .video-frame img {
        position: absolute;
            margin-top: 20px;
            right: 10px;
            z-index: 9999;
            opacity: 0.4;
   
        }
    .video-container video {
      width: 100%;
      height: calc(100vh - 40px);
      object-fit: cover; /* vult het frame */
      display: block;

    }


.banner-centervideo{
width: 100%;
text-align: center;
position: absolute;
top:20%;
z-index: 9;



}
.com-btnvideo{
  background: var(--pagebtn); 
 
  color: var(--pagebtntxt); 
  font-weight: 700; 
  padding: 24px 50px; 
  border-radius: 50px; 
  display: inline-block; 
  letter-spacing: 1px; 
  text-transform: uppercase; 
  margin-top: 40px;
  opacity: 0.5;

}
   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
           /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
        }
        
     
        .header-container {
            max-width: 100%;
            position: relative;
            overflow: hidden;
            border-radius: 0 0 20px 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .header-image {
            width: 100%;
            height: 70vh;
            min-height: 500px;
            
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        
        .header-content {
            max-width: 1200px;
            width: 90%;
            color: var(--hoofdlinkkleur);
            text-align: center;
            padding: 30px;
            background-color: rgba(0, 0, 0, 0.5);
            border-radius: 15px;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            animation: fadeIn 1.5s ease-out;
        }
        
       .header-content h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--);
            letter-spacing: 1px;
            font-weight: 800;
            line-height: 1.2;
        }
        
        .description {
            font-size: 1.3rem;
            margin-bottom: 35px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.9;
        }
        
        .order-btn {
            display: inline-block;
            background: var(--hoofdkleur);
            color: var(--hoofdlinkkleur);
            padding: 18px 45px;
            font-size: 1.3rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
        }
        
        .order-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            background: linear-gradient(to right, #feb47b, #ff7e5f);
        }
        
        .order-btn:active {
            transform: translateY(0);
        }
        
        .order-btn i {
            margin-left: 10px;
            transition: transform 0.3s ease;
        }
        
        .order-btn:hover i {
            transform: translateX(5px);
        }
        
        /* Content section to demonstrate scroll */
        .content-section {
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 30px;
        }
        
        .content-section h2 {
            text-align: center;
            margin-bottom: 40px;
            color: #333;
            font-size: 2.5rem;
        }
        
        .features {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }
        
        .feature-card {
            flex: 1;
            min-width: 300px;
            background-color: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
        }
        
        .feature-card i {
            font-size: 2.5rem;
            color: #ff7e5f;
            margin-bottom: 20px;
        }
        
        .feature-card h3 {
            margin-bottom: 15px;
            color: #333;
        }
        
        /* Responsive design */
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            
            .description {
                font-size: 1.1rem;
            }
            
            .header-image {
                height: 60vh;
                min-height: 400px;
            }
            
            .header-content {
                padding: 20px;
            }
            
            .order-btn {
                padding: 15px 35px;
                font-size: 1.1rem;
            }
        }
        
        @media (max-width: 480px) {
            h1 {
                font-size: 2rem;
            }
            
            .description {
                font-size: 1rem;
            }
            
            .header-image {
                height: 70vh;
                min-height: 500px;
            }
        }
        
        /* Animation */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Decorative elements */
        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 1;
        }
        
        .circle {
            position: absolute;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        .circle:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 15%;
            left: 10%;
        }
        
        .circle:nth-child(2) {
            width: 120px;
            height: 120px;
            bottom: 20%;
            right: 8%;
        }
        
        .circle:nth-child(3) {
            width: 60px;
            height: 60px;
            top: 40%;
            right: 15%;
        }
         /* Modaladd Overlay */
        .modaladd-overlay {
            
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.85);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999999;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s ease, visibility 0.4s;
        }
        
        .modaladd-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        .modaladd-back {
            height:500px; overflow-y: scroll; padding:20px 0;
            background-color: white;
        }
        
        /* Modaladd Container */
        .modaladd {
            background: white;
            border-radius: 20px;
            width: 90%;
            max-width: 500px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            transform: scale(0.8);
            transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .modaladd-overlay.active .modaladd {
            transform: scale(1);
        }
        
        /* Modaladd Header */
        .modaladd-header {
            background: var(--hoofdkleur);
            padding: 20px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .modaladd-title {
            color: var(--hoofdlinkkleur);
            font-size: 1.5rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
            text-transform: uppercase;
        }
        
        .close-btn {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            
            height: 40px;
            border-radius: 20px;
            font-size: 1.2rem;
            padding: 0 15px;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: background 0.3s, transform 0.2s;
        }
        
        .close-btn:hover {
            background: rgba(255, 255, 255, 0.3);
           
        }
        
        /* Productadd Image Section */
        .productadd-image {
            position: relative;
            height: 200px;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .productadd-image img {
            max-width: 80%;
            max-height: 180px;
            object-fit: contain;
            transition: transform 0.5s ease;
        }
        
        .productadd-image:hover img {
            transform: scale(1.05);
        }
        
            
        /* Modaladd Content */
        .modaladd-content {
            padding: 30px;
            color: #333;
            border-radius: 20px;
            margin: 10px;
            background-color: white;
            border: 2px solid var(--hoofdkleur);
        }
               
        .ad-headline {
            font-size: 2.4rem !important;
            font-weight: 700;
            margin-bottom: 10px;
            line-height: 1.3;
            color: #2c3e50;
            text-align: center;
            padding:10px 0;
            text-transform: uppercase;
        }
        
        .productadd-name {
            color: #7f8c8d;
            font-size: 1rem;
            margin-bottom: 15px;
            font-weight: 500;
        }
        
        .ad-description {
            font-size: 1.1rem;
            margin-bottom: 25px;
            color: #555;
            text-wrap: auto;
        }
        
     
        
        /* CTA Button */
        .cta-buttonadd {
            box-sizing: border-box;
            display: inline-flex;
            background: linear-gradient(to right, #6a11cb, #2575fc);
            color: white;
            text-decoration: none;
            padding: 16px 35px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            text-align: center;
            width: 100%;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 5px 15px rgba(106, 17, 203, 0.3);
            justify-content: center;
            align-items: center;
            gap: 10px;
        }
        
        .cta-buttonadd:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(106, 17, 203, 0.4);
        }
        
        /* Modaladd Footer */
        .modaladd-footer {
            padding: 20px 30px;
            background: var(--hoofdkleur);
            text-align: center;
            font-size: 0.9rem;
            color: var(--hoofdlinkkleur);
           
        }
        
        .modaladd-footer a {
            color: #2575fc;
            text-decoration: underline;
        }
     
        /* Responsive adjustments */
        @media (max-width: 600px) {
            .modaladd {
                width: 95%;
            }
            
            .modaladd-header {
                padding: 15px 20px;
            }
            
            .modaladd-content {
                padding: 20px;
            }
            
            .productadd-image {
                height: 180px;
            }
            
            .ad-headline {
                font-size: 1.5rem;
            }
            
           
        }
        
        @media (max-width: 400px) {
            .ad-headline {
                font-size: 1.3rem;
            }
            
            .ad-description {
                font-size: 1rem;
            }
            
            .cta-buttonadd {
                padding: 14px 20px;
                font-size: 1rem;
            }
            
            .productadd-image {
                height: 150px;
            }
        }    