@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Calligraffitti&family=Pinyon+Script&display=swap');

/*Branding*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
    font-family: "Inter", sans-serif;
}

h1 {
  font-size: 64px;
}

span {
    color: #106800;
    font-family: inherit;
}

h2 {
  font-size: 32px;
  font-family: "Playfair Display", serif;
}

html {
  scroll-behavior: smooth!important;
}

/* Button styling */
.rounded-button {
    background-color: #106800; 
    color: white; 
    font-size: 16px; 
    padding: 5px 12px; 
    border: none; 
    border-radius: 40px; 
    cursor: pointer; 
    transition: background-color 0.3s ease; 
    display: inline-flex;
    align-items: center; 
    justify-content: center; 
    animation: pulseWithPause 8s infinite;
}

.swal2-green-button {
    background-color: #106800; 
    color: white; 
    font-size: 24px; 
    padding: 5px 12px; 
    border: none; 
    border-radius: 40px; 
    cursor: pointer; 
    transition: background-color 0.3s ease; 
    display: inline-flex;
    align-items: center; 
    justify-content: center; 
    animation: pulseWithPause 8s infinite;
}

.rounded-button-hero {
  background-color: #106800; 
  color: white; 
  font-size: 16px; 
  padding: 5px 12px; 
  border: none; 
  border-radius: 40px; 
  cursor: pointer; 
  transition: background-color 0.3s ease; 
  display: inline-flex;
  align-items: center; 
  justify-content: center; 
}

.rounded-button-navbar {
  background-color: #106800; 
  color: white; 
  font-size: 16px; 
  padding: 5px 12px; 
  border: none; 
  border-radius: 40px; 
  cursor: pointer; 
  transition: background-color 0.3s ease; 
  display: inline-flex;
  align-items: center; 
  justify-content: center; 
}

.rounded-button-navbar-mobile {
  background-color: #106800; 
  color: white; 
  font-size: 16px; 
  padding: 5px 12px; 
  border: none; 
  border-radius: 40px; 
  cursor: pointer; 
  transition: background-color 0.3s ease; 
  display: inline-flex;
  align-items: center; 
  justify-content: center; 
}

.rounded-button-navbar-mobile:hover {
  background-color: #169200;
}


.rounded-button-navbar:hover {
  background-color: #169200;
}

.rounded-button-hero-pulse {
  background-color: #106800; 
  color: white; 
  font-size: 16px; 
  padding: 5px 12px; 
  border: none; 
  border-radius: 40px; 
  cursor: pointer; 
  transition: background-color 0.3s ease; 
  display: inline-flex;
  align-items: center; 
  justify-content: center; 
  animation: pulseWithPause 8s infinite!important;
}

.rounded-button-hero-pulse:hover {
  background-color: #169200; 
}
.rounded-button-hero:hover {
  background-color: #169200; 
}

.rounded-button-about-us {
  background-color: #106800; 
  color: white; 
  font-size: 16px; 
  padding: 5px 12px; 
  border: none; 
  border-radius: 40px; 
  cursor: pointer; 
  transition: background-color 0.3s ease; 
  display: flex;
  align-items: center; 
  justify-content: center; 
}

.rounded-button-about-us:hover {
  background-color: #169200; 
}
.rounded-button a {
  text-decoration: none;
} 
.rounded-button-hero a {
  text-decoration: none;
}

.rounded-button-about-us a {
  text-decoration: none;
}

@keyframes pulseWithPause {
  0%, 100% {
      transform: scale(1);
      box-shadow: 0 0 20px rgba(90, 255, 40, 0.6);
  }
  10% {
      transform: scale(1.05);
      box-shadow: 0 0 20px rgba(90, 255, 40, 0.6);
  }
  20% {
      transform: scale(1);
      box-shadow: 0 0 20px rgba(90, 255, 40, 0.6);
  }
  30% {
      transform: scale(1.05);
      box-shadow: 0 0 20px rgba(90, 255, 40, 0.6);
  }
  40% {
      transform: scale(1);
      box-shadow: 0 0 20px rgba(90, 255, 40, 0.6);
  }
  50% {
      transform: scale(1.05);
      box-shadow: 0 0 20px rgba(90, 255, 40, 0.6);
  }
  60% {
      transform: scale(1);
      box-shadow: 0 0 20px rgba(90, 255, 40, 0.6);
  }
}

.icon-circle {
    background-color: #169200;
    color: #fff;
    font-size: 16px;
    border-radius: 50%; 
    width: 40px; 
    height: 40px; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    margin-left: 10px; 
}


.rounded-button:hover {
    background-color: #169200; 
}

.rounded-button i {
    pointer-events: none; 
}
  
/*Navbar*/
/* Custom Dropdown Container */
.custom-dropdown {
  position: relative;
  display: flex;
  align-items: center; /* Centers the dropdown button vertically */
  overflow: visible; /* Ensure dropdown is not cut off */
}

/* Custom Dropdown Button */
.custom-dropbtn {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px; /* Space between icon and text */
}

/* Custom Dropdown Content */
.custom-dropdown-content {
  display: none; /* Hidden by default */
  position: absolute;
  top: 100%; /* Positions dropdown below the button */
  left: 0;
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  padding: 5px 0;
  z-index: 100000000; /* Ensure it's on top of other elements */
  min-width: 150px;
}

/* Custom Dropdown Links */
.custom-dropdown-content a {
  color: #333;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
  font-size: 14px;
}

.custom-dropdown-content a:hover {
  background-color: #f1f1f1;
}

/* Show Dropdown on Hover */
.custom-dropdown:hover .custom-dropdown-content {
  display: block;
}

/* Parent UL Styling Adjustments (if necessary) */
ul.menu {
  overflow: visible; /* Allow dropdowns to extend beyond parent container */
}
/* Dropdown Container */
.language-dropdown {
  position: relative;
  display: inline-block;
  display: flex;
  align-items: center; /* Centers the dropdown button vertically */
}

.dropbtn {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropbtn i {
  font-size: 16px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  margin-top: 160px;
  padding: 5px 0;
  z-index: 1;
}

/* Popup Background */
.popup {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
  z-index: 999; /* Above other elements */
  justify-content: center;
  align-items: center;
}

/* Popup Content */
.popup-content {
  background: white;
  padding: 30px;
  border-radius: 10px;
  width: 400px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
  text-align: center;
  position: relative;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
}

.dropdown-content a {
  color: #333;
  padding: 10px 15px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.language-dropdown:hover .dropdown-content {
  display: block;
}

.header {
    background-color: #f1f2f3e3;
    width: 100%;
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 2vh;
    padding-bottom: 2vh;
    position: fixed;
    top: 0;
    z-index: 123;
    left: 50%;
    transform: translateX(-50%); 
    display: flex;
    justify-content: center; 
}
  
  .header ul {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    background-color: transparent;
    margin-left: auto; /* Pushes links to the right */
  }
  
  .header li a {
    display: block;
    padding: 20px 20px;
    text-decoration: none;
    color: #000!important;
  }
  
  .header li a:hover,
  .header .menu-btn:hover {
    background-color: transparent;
  }
  

  
  .header .menu {
    clear: both;
    max-height: 0;
    transition: max-height .2s ease-out;
  }
  

  
  .header .menu-icon {
    cursor: pointer;
    display: inline-block;
    float: right;
    padding: 28px 20px;
    position: relative;
    user-select: none;
  }
  
  .header .menu-icon .navicon {
    background: #000000;
    display: block;
    height: 2px;
    position: relative;
    width: 18px;
  }
  
  .header .menu-icon .navicon:before,
  .header .menu-icon .navicon:after {
    background: #000000;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
  }
  
  .header .menu-icon .navicon:before {
    top: 5px;
  }
  
  .header .menu-icon .navicon:after {
    top: -5px;
  }

  .dropdownnn {
    overflow: hidden;
    display: inline-block; /* Ensures it stays inline */
  }

  .dropdownnn .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: #000;
    padding: 20px 30px;
    background-color: inherit;
    font-family: inherit; /* Important for vertical align on mobile phones */
    margin: 0; /* Important for vertical align on mobile phones */
  }

  .navbar a:hover, .dropdownnn:hover .dropbtn {
    background-color: transparent;
  }

  .webshop-btn {
    display: flex;
    align-items: center;
  }

  .dropdownnn-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }

  .dropdownnn-content a:hover {
    background-color: #ddd;
  }

  .dropdownnn:hover .dropdownnn-content {
    display: block;
  }
  
  

  .dropdownnn-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 10000;
  }
  

  
  .header .menu-btn {
    display: none;
  }
  
  .header .menu-btn:checked ~ .menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-height: 320px;
    text-align: center;
    margin-right: 15%;
  }
  
  .header .menu-btn:checked ~ .menu-icon .navicon {
    background: transparent;
  }
  
  .header .menu-btn:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg);
  }
  
  .header .menu-btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
  }
  
  .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
  .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    top: 0;
  }
  
  .logo {
    position: absolute;
    top: 0;
    left: 10%;
    height: 100%;
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 70px;
    display: block;
}


.popup-content form label {
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #333;
  display: block;
  margin-bottom: 5px;
}

.popup-content form input, 
.popup-content form button {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 40px;
  font-size: 14px;
}

.popup-content form button {
  background-color: #106800;
  color: white;
  border: none;
  cursor: pointer;
}

.popup-content form button:hover {
  background-color: #218838;
}

.popup-content .guest-button {
  background-color: #ff7300; /* Blue background for differentiation */
  color: white;
  border: none;
  padding: 10px;
  width: 100%;
  font-size: 14px;
  border-radius: 40px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.popup-content .guest-button:hover {
  background-color: #ff5e00; /* Darker blue on hover */
}
  
  @media (min-width: 1198px) {
    .header li {
      float: left;
    }
    .header li a {
      padding: 20px 30px;
      color: #fff;
    }
    .header .menu {
      clear: none;
      /* float: right; */
      max-height: none;
    }
    .header .menu-icon {
      display: none;
    }
  }

  @media (max-width: 400px) {
    .popup-content {
      width: 300px;
    }
  }

  /* Default: Hide the mobile-only webshop button */
  .webshop-btn.mobile-only {
    display: none;
  }

  @media (max-width: 500px) {
    .webshop-btn.mobile-only {
        display: block!important; /* Makes the button visible on mobile */
        text-align: center; /* Centers the button */
        margin-top: 10px; /* Add spacing for better layout */
    }
    .rounded-button-navbar {
      display: none!important;
    }
  }

/*Einde Navbar*/


/*Hero*/

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  padding-bottom: 6vh;
}

.slide-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  transition: transform 0.8s ease-in-out;
}

.slide {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

h1.hero-h1 {
  font-family: "Calligraffitti", serif;
  font-size: 64px;
}

.hero-h1, .hero-h1-slide2, .rounded-button-hero {
  opacity: 0; /* Hidden by default */
  transform: translateY(100px); /* Start from further down */
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.arrows {
  position: absolute;
  bottom: 20px; /* Plaats onderaan de hero */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px; /* Ruimte tussen de pijlen */
}

.arrow {
  font-size: 24px;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.arrow:hover {
  background: rgba(0, 0, 0, 0.8);
}

.dots-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}

.dot {
  width: 15px;
  height: 15px;
  margin: 0 5px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: #000; /* Highlight for the active dot */
}



/* Animate the text and button when the slide is active */
.slide.active .hero-h1,
.slide.active .hero-h1-slide2 {
  opacity: 1; /* Fully visible */
  transform: translateY(0); /* Moves to its original position */
}

.slide.active .rounded-button-hero {
  opacity: 1;
  transform: translateY(0);
}

.slide:nth-child(1) {
  background: url('./assets/backgroundhero.JPG') center/cover no-repeat;
}

.slide:nth-child(2) {
  background: url('./assets/backgroundhero3.JPG') center/cover no-repeat;
}

.slide:nth-child(3) {
  background: url('./assets/backgroundhero4.JPG') center/cover no-repeat;
}



/* @keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0); 
        opacity: 1;
    }
}


.hero {
    position: relative;
    width: 100%;
    height: 100vh; 
    overflow: hidden;
}


.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}


.hero-overlay-text {
    font-family: "Playfair Display", serif;
    color: #000;
    font-size: 128px;
    font-weight: bold;
    text-align: center;
    padding: 20px;
    animation: slideInFromLeft 2.5s ease-out forwards;
    opacity: 0;
    animation-delay: 0.5s;
    letter-spacing: -5px;
} */
/*Einde Hero*/

/*About us sectie*/
.about-us {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 3vh 0;
  background-color: #fff;
  opacity: 0; /* Start hidden */
  transform: translateY(50px); /* Start slightly below */
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

/* Add this class when the section enters the viewport */
.about-us.animate {
  opacity: 1;
  transform: translateY(0); /* Slide up to its original position */
}

.about-photo {
  flex: 0 0 55%;
  height: 650px;
  background-image: url('assets/about-us.svg');
  background-size: cover;
  background-position: center;
  margin: 0;
  padding: 0;
}

.about-content {
  flex: 1;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 40px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
  margin-left: -15%;
  max-width: 40%;
  box-shadow: 0px 8px 10px 10px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  padding-bottom: 2vh;
  text-align: center;
}

.about-content p {
  line-height: 1.6;
}

.about-us-phone {
  display: none;
}

/* Animatie */
@keyframes slide-in {
  from {
    transform: translateX(-120%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (max-width: 1402px) {
  .logo {
    display: none!important;
}
}

@media (max-width: 764px) {
  .about-us {
    display: none;
  }

  .about-us-phone {
    display: flex!important;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 6vh;
    padding-bottom: 6vh;
    background: url('assets/about-us-gq.svg') no-repeat center center/cover;
  }

  .white-box {
    background: white;
    padding: 20px;
    width: 80%;
    max-width: 400px;
    box-shadow: 0px 8px 10px 10px rgba(0, 0, 0, 0.1);
    border-radius: 40px;
    text-align: center;
    position: relative;
  }

  .white-box h2 {
    font-family: "Playfair Display", serif;
    margin: 0;
    font-size: 32px;

  }

  .white-box p {
    margin-top: 10px;
  }
}



.about-us-left {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 3vh 0; 
  opacity: 0;
  background-color: #fff;
  transform: translateY(50px); 
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.about-us-left.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Foto-sectie */
.about-us-left .about-photo {
  flex: 0 0 55%;
  height: 650px;
  background-image: url('assets/about-us-gq.svg');
  background-size: cover;
  background-position: center;
  margin: 0;
  padding: 0;
  animation: slide-in-left 1.5s ease-out;
}

/* Tekst-sectie */
.about-us-left .about-content {
  flex: 1;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 40px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
  margin-right: -15%;
  max-width: 40%;
  box-shadow: 0px 8px 10px 10px rgba(0, 0, 0, 0.1); 
}

/* Animatie */
@keyframes slide-in-left {
  from {
    transform: translateX(120%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (max-width: 764px) {
  .about-us-left {
    display: none;
  }

  .about-us-phone {
    display: block;
  }
}

/* webshop sectie */
.webshop {
  width: 100%; 
  padding: 0; /* Verwijder padding */
  margin: 0; /* Verwijder marges */
  position: relative;
  height: auto;
  opacity: 0; /* Invisible initially */
  transform: translateY(50px); /* Positioned below the viewport */
  transition: opacity 1.5s ease-out, transform 1.5s ease-out; /* Smooth transition */
}

.webshop.animate {
  opacity: 1; /* Fully visible */
  transform: translateY(0); /* Moves to original position */
}

.webshop img {
  width: 100%;
  height: 40vh; 
  display: block;
  object-fit: cover;
}

.webshop-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; 
  background-color: rgba(255, 255, 255, 0.6); 
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.webshop-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  height: auto; 
}


.webshop-left {
  width: 45%;
  text-align: left; 
  padding: 10px;
}

.webshop-overlay-text {
  font-family: "Playfair Display", serif;
  color: #000;
  font-size: 32px;
  font-weight: bold;
  text-align: left;
  padding-bottom: 10px;
}

.webshop-left p {
  color: #000000;
  font-size: 16px;
}


.webshop-right {
  width: 45%;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.webshop-right form label {
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #333;
  display: block;
  margin-bottom: 5px;
}

.webshop-right form input, .webshop-right form button {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 40px;
  font-size: 14px;
}

.webshop-right form button {
  background-color: #106800;
  color: white;
  border: none;
  cursor: pointer;
}

.webshop-right form button:hover {
  background-color: #218838;
}

/* Responsiviteit */
@media (max-width: 1200px) {
  .webshop-content {
      flex-direction: column;
      justify-content: center;
  }

  .webshop img {
    height: 100vh;
  }
  .webshop-overlay-text {
    text-align: center;
  }

  .webshop-left, .webshop-right {
      width: 100%; 
      margin-bottom: 20px;
      text-align: center;
  }
}

/* Responsiviteit */
@media (max-width: 375px) {
  .webshop-content {
      flex-direction: column; 
      justify-content: center;
  }

  .webshop img {
    height: 110vh; 
  }

  .webshop-overlay-text {
    text-align: center;
  }

  .webshop-left, .webshop-right {
      width: 100%; 
      margin-bottom: 20px;
      text-align: center;
  }
}

/*Footer*/
.footer {
  padding-left: 10%;
  padding-right: 10%;
  padding-bottom: 6vh;
  padding-top: 6vh;
}

.footer a {
  text-decoration: none!important;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  align-items: center;
  justify-content: center;
  justify-items: center;
  gap: 2rem; /* Uniform spacing between rows */

}

.grid-4 .row-1-footer .socials {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  width: 40%;
  align-items: center;
}

.grid-4 .row-1-footer {
  line-height: 1.5!important;
}

.grid-4 .row-2-footer {
  line-height: 1.5;
}

.grid-4 .row-3-footer {
  line-height: 1.5;
}

.grid-4 .row-4-footer {
  line-height: 1.5;
}

.footer .grid-4 .row-1-footer a {
  color: #000;
}

.footer .grid-4 .row-2-footer a {
  color: #000;
}

.footer .grid-4 .row-3-footer a {
  color: #000;
}

.footer .grid-4 .row-4-footer a {
  color: #000;
}

@media (max-width: 1100px) {
  .grid-4 {
      grid-template-columns: repeat(2,1fr);
      gap:  32px;
  }
}

@media (max-width: 600px) {

  .hero-overlay-text {
    font-size: 100px;
  }
  .grid-4 {
      grid-template-columns: repeat(1,1fr);
      gap: 32px;
      text-align: center;
  }

  .grid-4 .row-1-footer .socials {
      display: grid;
      grid-template-columns: repeat(4,1fr);
      width: 100%;
      align-items: center;
      justify-content: center;
      justify-items: center;
  }

  .product-hero-overlay-text h1 {
    font-size: 48px!important;
  }

  .grid-2 {
    grid-template-columns: repeat(1,1fr)!important;
  }

  .grid-2 .grid-img {
    text-align: center;
  }
  
}

.row-3-footer .content-center {
  display: flex;
  flex-direction: column; /* Stack items vertically */
  align-items: center; /* Center items horizontally */
  justify-content: center; /* Center items vertically */
  text-align: center; /* Ensure text stays centered */
}

.row-3-footer .content-center a,
.row-3-footer .content-center p {
  text-align: left; /* Ensure text stays left-aligned */
  width: 100%; /* Make text span the full container */
}

.line {
  border-bottom: 1px solid grey;
  width: 100%;
}

.rodelijn {
  border-bottom: 8px solid #106800;
  width: 100%;
}


.copyright {
  margin-top: 2vh;
  margin-bottom: 2vh;
  padding-left: 10%;
  padding-right: 10%;
  text-align: center;
}
/*Staff*/

.staff {
  padding-left: 10%;
  padding-right: 10%;
  padding-top: 4vh;
  padding-bottom: 6vh;
}

.staff .grid-3 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  align-items: center;
  justify-content: center;
  padding-top: 2vh;
}

.stafflid {
  display: flex;
  align-items: center;
  flex-direction: column;
}

img.stafflid-pic {
  width: 250px;
  height: 250px;
  border-radius: 40px;
}

.staff h2 {
  text-align: center;

}

@media (max-width:1000px) {
  .staff .grid-3 {
    grid-template-columns: repeat(2,1fr);
    gap: 2vh;
  }
}

@media (max-width:800px) {
  .staff .grid-3 {
    grid-template-columns: repeat(1,1fr);
    gap: 2vh;
  }
}

/*Product pages*/

/*Product pages*/
.product-hero {
  position: relative;
  width: 100%;
  height: 50vh; 
  overflow: hidden;
}


.product-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  display: block;
}


.product-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6); /* 60% wit */
  display: flex;
  align-items: center;
  justify-content: center;
}


.product-hero-overlay-text h1 {
  font-family: "Playfair Display", serif;
  color: #1D1D1F;
  font-size: 128px;
  font-weight: bold;
  text-align: center;
  padding: 20px;
  animation: slideInFromLeft 2.5s ease-out forwards; 
  opacity: 0; 
  animation-delay: 0.5s; 
  letter-spacing: -5px;
}

.product-info {
  padding-left: 10%;
  padding-right: 10%;
  padding-top: 18vh;
  padding-bottom: 6vh;
  opacity: 0;
  transform: translateY(50px); /* Start below its original position */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.product-info2 {
  padding-left: 10%;
  padding-right: 10%;
  padding-top: 18vh;
  padding-bottom: 6vh;
  opacity: 0;
  transform: translateY(50px); /* Start below its original position */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.product-info2.animate {
  opacity: 1;
  transform: translateY(0); /* Move to its original position */
}

.product-info.animate {
  opacity: 1;
  transform: translateY(0); /* Move to its original position */
}

.product-info-2 {
  padding-left: 10%;
  padding-right: 10%;
  padding-top: 6vh;
  padding-bottom: 6vh;
  opacity: 0;
  transform: translateY(50px); /* Start below its original position */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.product-info-2.animate {
  opacity: 1;
  transform: translateY(0); /* Move to its original position */
}


.grid-2 {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  align-items: center;
  justify-content: center;
  
}

.grid-img {
  display: flex;
  justify-content: center;
}

.grid-img img {
  width: 60%;
  text-align: center;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}

.contact-info .material-icons-outlined {
  font-size: 20px;
}

/*Wordt klant form*/

.contactt {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contactt h4 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.contactt p {
  margin-bottom: 10px;
}

.contactt input[type="text"],
.contactt input[type="email"],
.contactt textarea {
  width: calc(50% - 10px);
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.contactt input[type="text"]:last-child {
  margin-right: 0;
}

.contactt textarea {
  width: 100%;
  resize: none;
}

.contactt input[type="submit"] {
  background: #ff7300;
  color: #fff;
  border: none;
  padding: 10px 15px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
}

.contactt input[type="submit"]:hover {
  background: #ff6600;
}

fieldset {
  margin-bottom: 15px;
  border: none;
}

.form-klant-worden {
 margin-top: 20vh;
 padding-bottom: 6vh;
 padding-left: 10%;
 padding-right: 10%;
 display: flex;
 justify-content: center;
 align-items: center;
}

.naastelkaar {
  display: flex;
  margin-top: 16px;
  margin-bottom: 16px;
}

.instagramposts {
  padding-top: 6vh;
  padding-bottom: 6vh;
  padding-left: 20%;
  padding-right: 20%;
}

.instagramposts h2 {
  text-align: center;
  padding-bottom: 2vh;
}

.instagram {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  align-items:  center;
  justify-content: center;
  gap: 64px;
}

/* Basisstijl voor de posts */
.instagrampost {
  opacity: 0;
  transform: translateY(30px); /* Naar beneden verschoven */
  transition: opacity 1s ease-out, transform 1s ease-out; /* Animatie-effect */
}

.instagrampost.animate {
  opacity: 1;
  transform: translateY(0); /* Terug naar originele positie */
}

.instagrampost1.animate {
  transition-delay: 0s; /* No delay for the first post */
}

.instagrampost2.animate {
  transition-delay: 0.5s; /* 0.3-second delay for the second post */
}

.instagrampost3.animate {
  transition-delay: 1s; /* 0.6-second delay for the third post */
}

.contact {
  padding-top: 6vh;
  padding-bottom: 6vh;
  padding-left: 10%;
  padding-right: 10%;
}

.contact h2 {
  text-align: center;
  padding-bottom: 2vh;
}

.contactgrid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  align-items:  baseline;
  justify-content: center;
  gap: 32px;
}

.contact-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #106800;
  border-radius: 50%;
}

.contact-icon .material-icons-outlined {
  font-size: 32px; /* Zorgt dat het icoon groter wordt */
  color: white;
}

.contact-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.contact-item.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Specifieke vertraging per contact-item */
.contact-item:nth-child(1).animate {
  transition-delay: 0s; /* Geen vertraging voor het eerste item */
}

.contact-item:nth-child(2).animate {
  transition-delay: 0.5s; /* 0.3 seconden vertraging voor het tweede item */
}

.contact-item:nth-child(3).animate {
  transition-delay: 1s; /* 0.6 seconden vertraging voor het derde item */
}

.contact-item a {
  font-size: 16px;
  text-decoration: none;
  color: black;
}

@media (max-width: 1150px) {
  .instagram {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width: 760px) {
  .instagram {
    grid-template-columns: repeat(1,1fr);
  }
}

@media (max-width: 900px) {
  .contactgrid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width: 570px) {
  .contactgrid {
    grid-template-columns: repeat(1,1fr);
  }

  .instagrampost1.animate {
    transition-delay: 0s!important;
  }
  
  .instagrampost2.animate {
    transition-delay: 0s!important;
  }
  
  .instagrampost3.animate {
    transition-delay: 0s!important;
  }
}

.qoute {
  padding-top: 4vh;
  display: flex;
  justify-content: center;
}

.qoute h2 {
  font-family: "Calligraffitti", serif;
  font-size: 64px;
  transform: rotate(-10deg);
  text-align: center;
  padding-top: 6vh!important;
}

@media (max-width: 864px) {
  .qoute h2 {
    font-size: 32px;
    text-align: center!important;
  }
}

.guest-button {
  background-color: #ff7300; /* Blue background for differentiation */
  color: white;
  border: none;
  padding: 10px;
  width: 100%;
  font-size: 14px;
  border-radius: 40px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/*VMP Koppeling*/

.vmp {
  padding-top: 15vh;
  padding-left: 10%;
  padding-right: 10%;
  padding-bottom: 6vh;
}

.vmp-boxes {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  align-items: baseline;
  justify-content: center;
  gap: 64px;
}

.vmp-boxes .box {
  padding: 40px 40px;
  border-radius: 40px;
  box-shadow: 0px 10px 10px 4px rgba(0, 0, 0, 0.25);
}

.vmp-explanation-form {
  padding-top: 6vh;
  padding-bottom: 6vh;
  padding-left: 10%;
  padding-right: 10%;
}

.vmp-explenation-form-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  align-items: baseline;
  justify-content: center;
  gap: 64px;
}

.form-vmp-koppeling input, .form-vmp-koppeling textarea, .form-vmp-koppeling button {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 40px;
  font-size: 16px;
}

.form-vmp-koppeling button {
  background-color: #106800;
  color: white;
  border: none;
  cursor: pointer;
}

.form-vmp-koppeling button:hover {
  background-color: #218838;
}

.vmp-form-h3 {
  padding-bottom: 3vh;
}

@media (max-width: 1000px) {
  .vmp-boxes {
    grid-template-columns: repeat(2,1fr);
}
}

@media (max-width: 755px) {
  .vmp-boxes {
    grid-template-columns: repeat(1,1fr);
}
}

@media (max-width: 900px) {
  .vmp-explenation-form-grid {
    grid-template-columns: repeat(1,1fr);
  }

  .form-vmp-koppeling input, .form-vmp-koppeling textarea, .form-vmp-koppeling button {
    width: 50%;
  }

  .vmp-boxes {
    grid-template-columns: repeat(1,1fr);
  }

  .form-vmp {
    display: flex!important;
    justify-content: center!important;
    align-items: center;
    flex-direction: column;
  }

  .form-vmp-koppeling {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 150%;
  }
}

/*Webshop request form */

.webshop-explanation-form {
  padding-top: 15vh;
  padding-bottom: 6vh;
  padding-left: 10%;
  padding-right: 10%;
}

.webshop-explenation-form-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  align-items: baseline;
  justify-content: center;
  gap: 64px;
}

.form-webshop-koppeling input, .form-webshop-koppeling textarea, .form-webshop-koppeling button {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 40px;
  font-size: 16px;
}

.form-webshop-koppeling button {
  background-color: #106800;
  color: white;
  border: none;
  cursor: pointer;
}

.form-webshop-koppeling button:hover {
  background-color: #218838;
}

.webshop-form-h3 {
  padding-bottom: 3vh;
}

@media (max-width: 900px) {
  .webshop-explenation-form-grid {
    grid-template-columns: repeat(1,1fr);
  }

  .form-webshop-koppeling input, .form-webshop-koppeling textarea, .form-webshop-koppeling button {
    width: 50%;
  }

  .form-webshop {
    display: flex!important;
    justify-content: center!important;
    align-items: center;
    flex-direction: column;
  }

  .form-webshop-koppeling {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 150%;
  }
}

/*Circle*/

/* Ensure the wrapper does not interfere with fixed positioning */
.fab-wrapper {
  position: relative; /* Optional: Keep this wrapper for structure */
  width: 100%;
}

/* FAB container always fixed to bottom-left of the screen */
.fab-container {
  position: fixed; /* Makes it constant on the screen */
  bottom: 20px; /* Distance from the bottom of the screen */
  left: 20px; /* Distance from the left of the screen */
  z-index: 1000; /* Ensure it stays on top of other content */
}

.main-fab {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #106800;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.main-fab img {
  width: 30px;
  height: 30px;
}

/* Hidden social FABs, placed absolutely relative to the fixed container */
.social-fab {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #106800;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transform: scale(0); /* Start hidden */
  transition: transform 0.5s ease;
}

.social-fab img {
  width: 24px;
  height: 24px;
}

/* Position each social FAB relative to the main FAB */
.fab1 {
  bottom: 70px;
  left: 5px;
}

.fab2 {
  bottom: 140px;
  left: 5px;
  transition-delay: 0.2s;
}

.fab3 {
  bottom: 210px;
  left: 5px;
  transition-delay: 0.4s;
}

.fab4 {
  bottom: 280px;
  left: 5px;
  transition-delay: 0.6s;
}

/* Show social FABs when active */
.fab-container.active .social-fab {
  transform: scale(1); /* Reveal FABs */
}


.copyright-logo {
  padding-left: 20%;
  padding-right: 20%;
  padding-top: 2vh;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  align-items: center;
  justify-content: center;
  padding-bottom: 2vh;
}

.footer-logo {
  filter: grayscale(100%);
}

.logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

/*Ventium page*/

.ventium-wrapper {
  padding-top: 15vh;
  padding-bottom: 6vh;
  padding-left: 10%;
  padding-right: 10%;
}

.ventium-wrapper2 {
  padding-top: 6vh;
  padding-bottom: 6vh;
  padding-left: 10%;
  padding-right: 10%;
}


.ventium-container {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  align-items: center;
  justify-content: center;
}


.ventium-img {
  display: flex;
  text-align: center;
  justify-content: center;
}

.ventiumlogo {
  width: 50%;
}

.ventiumdoos {
  width: 40%;
}

/*Become a customer*/

.customer-explanation-form {
  padding-top: 15vh;
  padding-bottom: 6vh;
  padding-left: 10%;
  padding-right: 10%;
}

.customer-explenation-form-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  align-items: baseline;
  justify-content: center;
  gap: 64px;
}

.form-customer-koppeling input, .form-customer-koppeling textarea, .form-customer-koppeling button {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 40px;
  font-size: 16px;
}

.form-customer-koppeling button {
  background-color: #106800;
  color: white;
  border: none;
  cursor: pointer;
}

.form-customer-koppeling button:hover {
  background-color: #218838;
}

.customer-form-h3 {
  padding-bottom: 3vh;
}

@media (max-width: 1000px) {
  .customer-boxes {
    grid-template-columns: repeat(2,1fr);
}
}

@media (max-width: 755px) {
  .customer-boxes {
    grid-template-columns: repeat(1,1fr);
}
}

@media (max-width: 900px) {
  .customer-explenation-form-grid {
    grid-template-columns: repeat(1,1fr);
  }

  .form-customer-koppeling input, .form-customer-koppeling textarea, .form-customer-koppeling button {
    width: 50%;
  }

  .customer-boxes {
    grid-template-columns: repeat(1,1fr);
  }

  .form-customer {
    display: flex!important;
    justify-content: center!important;
    align-items: center;
    flex-direction: column;
  }

  .form-customer-koppeling {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 150%;
  }
}

#products {
  scroll-margin-top: 100px!important;
}

#about-us {
  scroll-margin-top: 250px!important;
}

/*Salal blog*/
.blog-hero-mask {
  position: relative;
  height: 60vh;
  background-image: url('/assets/backgroundhero.JPG'); /* jouw Salal-afbeelding */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.blog-hero-mask::before {
  filter: blur(25px);
}

.blog-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 10, 0.5); /* optionele donkere overlay */
  filter: blur(25px);
  z-index: 1;
}

.blog-masked-text {
  font-size: 256px!important;
  font-weight: 900;
  text-transform: uppercase;
  background: url('assets/backgroundhero.JPG') no-repeat center center;
  background-size: cover;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 2;
  text-align: center;
}