* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Dosis", sans-serif;
}

/* Top bar */
.top-bar {
  background-color: #222;
  color: #f8f8f8;
  text-align: center;
  padding: 5px 10px;
  font-size: 14px;
}

/* Navbar */
.navbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* Logo | Nav Links | Icons */
  align-items: center;
  background-color: #f5f0e6;
  padding: 10px 30px;
  position: relative; /* Nodig voor positioning van eventuele dropdowns */
  z-index: 10;
}

/* Desktop navigatie links */
.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0; /* Verwijder standaard padding */
  margin: 0; /* Verwijder standaard margin */
}

.nav-links li a {
  text-decoration: none;
  color: #000;
  font-weight: 400;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #82368c; /* Paarse hover kleur */
}

/* Logo styling */
.logo {
  display: flex;
  justify-content: center; /* Centreer logo op desktop */
  align-items: center;
}

.logo img {
  height: 200px; /* Pas de hoogte van het logo aan indien nodig */
  width: auto;
  display: block;
}

/* Navigatie icons (rechts) */
.nav-icons {
  display: flex;
  align-items: center;
  justify-content: flex-end; /* Icons rechts uitlijnen */
  gap: 15px;
  position: relative;
}

/* Tekst naast icons (valuta/locatie) */
.nav-icons .currency-location {
  display: inline; /* Standaard zichtbaar op desktop */
  font-size: 14px;
}

/* Hamburger icoon (standaard verborgen op desktop) */
.hamburger {
  display: none; /* Standaard verborgen */
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  z-index: 1000; /* Zorg dat de hamburger boven andere elementen ligt */
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #000;
  border-radius: 2px;
  transition: all 0.3s ease-in-out; /* Optioneel: animatie voor transformatie */
}

/* Mobiel menu (standaard verborgen) */
.mobile-menu {
  display: none; /* Standaard verborgen */
  background-color: #fff;
  padding: 20px;
  position: absolute; /* Positioneer onder de navbar */
  top: 140px; /* Pas deze waarde aan op basis van de hoogte van je navbar */
  left: 0;
  width: 100%;
  box-sizing: border-box; /* Zorg dat padding niet meetelt voor de breedte */
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  z-index: 999; /* Lager dan hamburger, hoger dan content */
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0;
  margin: 0;
}

.mobile-menu a {
  text-decoration: none;
  color: #000;
  font-weight: 400;
  display: block; /* Zorg dat de link het hele gebied beslaat */
  padding: 5px 0;
}

/* Sluit knop (kruisje) in mobiel menu */
.close-btn {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  position: absolute;
  top: 10px;
  right: 30px;
  cursor: pointer;
  z-index: 1001; /* Zorg dat het kruisje boven het mobiele menu ligt */
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .navbar {
    grid-template-columns: 1fr auto; /* Logo | Icons (incl. hamburger) */
    padding: 10px 20px; /* Iets minder padding op mobiel */
  }

  .nav-links {
    display: none; /* Verberg desktop links op mobiel */
  }

  .logo {
    justify-content: flex-start; /* Logo links uitlijnen op mobiel */
  }

  .logo img {
    height: 150px; /* Iets groter logo op mobiel */
  }

  .nav-icons {
     justify-content: flex-end; /* Icons rechts uitlijnen */
     gap: 0px; /* Geen ruimte tussen icons en hamburger */
  }

  .nav-icons .currency-location {
      display: none; /* Verberg valuta/locatie tekst op mobiel */
  }

  .hamburger {
    display: flex; /* Toon de hamburger op mobiel */
    position: absolute; /* Absolute positionering om het op het kruisje te plaatsen */
    top: 50%; /* Verticaal centreren */
    right: 20px; /* Dezelfde right als de close button */
    transform: translateY(-50%); /* Correcte verticale centrering */
  }

   /* Pas de top positie van het mobiele menu aan voor mobiel */
   .mobile-menu {
       top: 80px; /* Aanpassen aan de hoogte van de navbar op mobiel */
   }

   .close-btn {
    right: 20px; /* Zorg ervoor dat de close button op dezelfde plek zit */
   }
}

/*---------- COLLABS-SECTION ----------------------------------------------------------------*/

.collabs-section {
  width: 100vw;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  position: relative;
}

.collabs-section h2 {
  font-size: 28px;
  margin-bottom: 30px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.05em;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 200%;
  animation: moveBackground 4s linear infinite;
}

@keyframes moveBackground {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 100%;
  }
}

.collabs-section .slider {
  width: 100vw;
  position: relative;
  left: 0;
  transform: none;
  padding-bottom: 300px;
  overflow: hidden;
}

.collabs-section .slide-track {
  display: flex;
  width: calc(160px * 4 * 2);
  /* Correctie voor startpositie rechts: */
  transform: translateX(calc(100vw)); /* Start nu op de volle breedte van de viewport */
  animation: scroll 15s linear infinite;
  flex-direction: row-reverse;
}

.collabs-section .slide {
  width: 160px;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.collabs-section .slide img {
  display: block;
  max-width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
  mix-blend-mode: multiply;
  opacity: 1;
  transition: none;
}

@keyframes scroll {
  0% {
    transform: translateX(calc(100vw));        /* Startpositie rechts */
  }
  100% {
    transform: translateX(calc(-160px * 4)); /* Eindpositie links */
  }
}

/* Mobile */
@media (max-width: 768px) {
  .collabs-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .collabs-section .slide {
    width: 120px;
    padding: 0 10px;
  }

  .collabs-section .slide-track {
    width: calc(130px * 4 * 2);
    animation-duration: 10s;
    transform: translateX(100vw);
    flex-direction: row-reverse;
  }

  @keyframes scroll {
    0% {
      transform: translateX(100vw);
    }
    100% {
      transform: translateX(calc(-130px * 4));
    }
  }
}




/*--------------- WELCOM-SECTION --------------------------------------------------*/

/* Sectie-opmaak */
.welcome-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 260px 20px;
  flex-wrap: wrap;
}

/* Afbeelding-container */
.image-container {
  flex: 1 1 300px;
  max-width: 400px;
  padding: 20px;
}

.image-container img {
  width: 100%;
  height: auto;
   box-shadow: 0 6px 20px rgba(139, 69, 19, 0.6);
}

/* Tekst-container */
.text-container {
  flex: 1 1 300px;
  max-width: 600px;
  padding: 20px;
}

.text-container h1 {
  font-size: 2.5rem;
  color: #333333;
  margin-bottom: 10px;
  text-align: left;
}

.text-container h2 {
  font-size: 2rem;
  color: #555555;
  margin-bottom: 20px;
  text-align: left;
}

.text-container p {
  font-size: 1.1rem;
  color: #666666;
  line-height: 1.6;
  text-align: left;
}

/* Responsieve opmaak */
@media (max-width: 768px) {
  .welcome-section {
    flex-direction: column;
    text-align: center;
  }

  .image-container,
  .text-container {
    max-width: 100%;
  }
}

/*-------------------------------------------------------------------------*/
.swilink {
  color: inherit;
  text-decoration: none;
  font-weight: inherit;
}

p a.swilink {
  color: inherit !important;
  text-decoration: none !important;
  font-weight: inherit;
}

p a.swilink:hover {
  color: #8B4513 !important; /* Donkerbruin op hover */
  text-decoration: none !important;
}


.swilink:hover {
  color: #8B4513; /* Donkerbruin op hover */
}

.socialmedia-section {
  background-color: #f5f0e6; /* Licht beige */
  padding: 80px 20px;
  text-align: center;
}

.socialmedia-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 15px;
}

.socialmedia-content h2 {
  font-size: 32px;
  color: #3d2b1f; /* Donkerbruin */
  margin-bottom: 20px;
  font-weight: 700;
}

.socialmedia-content p {
  font-size: 1rem;
  color: #5a4633; /* Bruin/grijzig */
  line-height: 1.7;
  margin-bottom: 20px;
}

.btn-socialmedia {
  display: inline-block;
  padding: 12px 24px;
  background-color: #8B4513; /* Donkerbruin */
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-socialmedia:hover {
  background-color: #A0522D; /* Lichtere bruin op hover */
}

/* ✅ Responsiveness */
@media (max-width: 768px) {
  .socialmedia-section {
    padding: 60px 15px;
  }

  .socialmedia-content h2 {
    font-size: 24px;
  }

  .socialmedia-content p {
    font-size: 0.95rem;
  }

  .btn-socialmedia {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}


/*----------------------------------------------------------------------------------------------*/

.features {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 40px 20px;
  background: white;
  text-align: center;
  flex-wrap: wrap;
  padding-bottom: 300px;
}

.feature-item {
  flex: 1;
  max-width: 25%;
  padding: 0 10px;
  border-right: 1px dashed #ccc;
}

.feature-item:last-child {
  border-right: none;
}

.icon-circle {
  width: 70px;
  height: 70px;
  background-color: #D2B48C;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle svg {
  width: 32px;
  height: 32px;
  stroke: white;
}

h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

p {
  color: #777;
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .features {
    flex-direction: column;
    align-items: center;
    padding-bottom: 100px;
  }

  .feature-item {
    max-width: 100%;
    padding: 20px 10px;
    border: none;
  }
}



/*-------------------------------------------------------------------------------------------------------------*/

.footer {
  background: #2b220e;
  color: #fff;
  padding: 60px 30px 20px;
  font-family: Arial, sans-serif;
}

.footer-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 70px;
  max-width: 1200px;
  margin: auto;
}

.footer-col h4 {
  margin-bottom: 1rem;
  color: #fff;
  font-weight: bold;
  text-align: left;
}

.footer-col p,
.footer-col a,
.blog-list span {
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.6;
  text-align: left;
}

.footer-highlight {
  font-weight: bold;
  margin-top: 20px;
}

.footer-button {
  margin-top: 10px;
  background-color: #c59b40;
  color: #000;
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
}

.blog-list {
  list-style: none;
  padding: 0;
}

.blog-list li {
  margin-bottom: 12px;
  text-align: left;
}

.blog-list a {
  color: #fff;
  text-decoration: none;
  display: block;
  font-weight: bold;
  text-align: left;
}

.newsletter-form label {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  text-align: left;
}

.newsletter-form input {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: none;
  border-radius: 4px;
}

.newsletter-form button {
  margin-top: 15px;
  padding: 10px 16px;
  background: #444;
  color: #fff;
  border: none;
  cursor: pointer;
}

.footer-photo {
  width: 100%;
  max-width: 180px;
  margin-top: 10px;
  border-radius: 6px;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.85rem;
  color: #aaa;
}

.footer-socials a {
  margin-left: 15px;
  color: #fff;
  font-size: 1.1rem;
  text-decoration: none;
}

.footer-socials a:hover {
  color: #c59b40;
}

/*------------------------------------------------------------------------------*/

.pricing-section {
  padding: 60px 20px 200px;
}

.pricing-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.pricing-card {
  background: white;
  border: 1px solid #ddd;
  padding: 30px 20px;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card h3 {
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1rem;
}

.price {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 15px 0;
}

.price span {
  display: block;
  font-size: 0.9rem;
  color: #777;
  margin-top: 5px;
}

.pricing-card p, .pricing-card li {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 10px;
  line-height: 1.6;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.pricing-card li {
  padding-left: 1em;
  text-align: left;
}

.pricing-card em {
  color: #666;
  font-size: 0.9rem;
  display: block;
  margin-top: 10px;
}

.pricing-btn {
  background-color: #c59b40;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 20px;
  transition: background 0.3s;
}

.pricing-btn:hover {
  background-color: #a4802f;
}

/*-------------------------- CONTACT ----------------------------------------------------*/


/* Contactformulier container */
form {
  max-width: 500px;
  margin: 40px auto;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  font-family: 'Poppins', sans-serif;
}

/* Algemene label styling */
form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #333;
}

/* Input- en textarea-styling */
form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  box-sizing: border-box;
}

/* Verstuurknop */
form button {
  background-color: #a4802f;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #155a90;
}

/* H1-tekst boven het formulier */
h1 {
  text-align: center;
  font-size: 2rem;
  color: #a4802f;
  font-family: 'Poppins', sans-serif;
}

p {
  text-align: center;
}