@charset "UTF-8";
/* -------------------------------------------------
   _override.scss  –  wordt geïmporteerd **na** de
   hoofd‑styles, dus kan alles overschrijven.
   ------------------------------------------------- */
/* --------- 1. Variabelen eventueel opnieuw definiëren --------- */
/* --------- 2. Nieuwe component‑klasse: .hero‑short --------- */
.hero-short {
  /* algemene container‑stijlen */
  padding-left: 40px;
  padding-right: 40px;
  background-color: #e8e8e8;
  color: #000;
  border-radius: 8px;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
  /* titel (h2) */
}
.hero-short h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.4em;
  line-height: 1.2;
}
.hero-short {
  /* subtitel (h3) */
}
.hero-short h3 {
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 500;
  margin-top: 0;
  line-height: 1.4;
  color: #e9e9ff;
}
.hero-short {
  /* optionele animatie wanneer de sectie in view komt */
}
.hero-short.in-view {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* --------- 3. Animatie keyframes (herbruikbaar) --------- */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* --------- 4. Eventuele extra utilities (optioneel) --------- */
.u-center {
  text-align: center !important;
}

.u-mt-sm {
  margin-top: 15px !important;
}

@font-face {
  font-family: "Inter";
  src: url(../font/Inter/static/Inter-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url(../font/Inter/static/Inter-Medium.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url(../font/Inter/static/Inter-Bold.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url(../font/Poppins/Poppins-SemiBold.woff2) format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: Inter;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
	scroll-behavior: smooth;
}

.success {
  color: green;
}

.error {
  color: red;
}

textarea,
input,
input.text,
input[type=text],
input[type=button],
input[type=email],
input[type=tel],
input[type=submit],
input[type=password],
.input-checkbox {
  -webkit-appearance: none;
  border-radius: 0;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
}

li {
  padding: 6px 0;
}

p {
  font-size: 16px;
  font-family: Inter;
  font-weight: 400;
  opacity: 70%;
}

a {
  font-size: 16px;
  font-family: Inter;
  font-weight: 400;
  color: #cb0504;
  text-decoration: none;
  cursor: pointer;
}

strong {
  font-family: "Poppins";
  font-weight: 600;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span {
  color: #000;
}

h1,
h2,
h3,
h4,
span {
  font-family: "Poppins";
  font-weight: 600;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 64px;
}

.button {
  display: inline-block;
  padding: 8px 24px;
  font-size: 16px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  margin-top: 40px;
  cursor: pointer;
  max-width: -moz-fit-content;
  max-width: fit-content;
  background-color: #000;
}

.spacer {
  padding-bottom: 120px;
}

body {
  overflow-x: hidden;
  background-color: #e8e8e8;
}

.color {
  background-color: #fff;
}

hr {
  border: 1px solid #d9d9d9;
}

.content {
  margin: auto;
  max-width: 1280px;
  padding: 0 40px;
}

header {
  position: relative;
  z-index: 2;
}
header ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
header ul li {
  float: right;
}
header ul li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 8px;
  text-decoration: none;
  font-family: Inter;
  font-weight: 700;
  font-size: 20px;
}
header .logo {
  margin-top: -22px;
  height: 70px;
}
header .taal li {
  padding: 0;
  margin: 0;
}
header .taal li a {
  padding: 14px 4px 0 4px;
}
header .taal img {
  width: 28px;
}
header .desktop {
  display: block;
}
header .mobile {
  display: none;
}

.fullpage {
  display: block;
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
}

.upsidedown {
  transform: scale(-1, -1);
  margin-bottom: -5px;
}

.banner {
  position: relative;
  z-index: 1;
  margin-top: -120px;
}
.banner img {
  width: 100%;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  filter: brightness(0.7);
}
.banner::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  height: 150px;
  /* Gradient: van volledig transparant → achtergrondkleur */
  background: linear-gradient(to bottom, rgba(232, 232, 232, 0) 0%, rgba(232, 232, 232, 0.75) 40%, #e8e8e8 100%);
  pointer-events: none;
}

.bannertekst {
  position: relative;
  z-index: 3;
  margin: -450px auto 300px auto;
  padding: 0 30px;
  max-width: 1280px;
}
.bannertekst h2 {
  font-size: 120px;
  line-height: 70px;
}
.bannertekst h3 {
  margin-top: -30px;
  font-size: 150px;
  color: transparent;
  -webkit-text-stroke: 6px #000;
}

.inverkoop {
  max-width: 1280px;
  padding: 120px 0 300px 0;
  margin: 0 auto;
  width: 90%;
}
.inverkoop img {
  width: 100%;
}
.inverkoop .text {
  margin: -400px auto 0 auto;
  text-align: center;
  max-width: 500px;
}

.inout {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0 auto;
  padding: 150px 40px 80px 40px;
  margin-bottom: -700px;
  overflow-x: hidden;
}
.inout .card {
  width: 250px;
  background-color: #cbcbcb;
  border-radius: 16px;
  overflow: hidden;
  --offset: 0px;
  transform: translateY(var(--offset));
  transition: transform 0.3s ease;
  transform-origin: center center;
}
.inout .card:hover {
  transform: translateY(calc(var(--offset) - 6px)) rotate(2deg);
}
.inout .card:nth-child(1) {
  --offset: 0px;
}
.inout .card:nth-child(2) {
  --offset: -150px;
}
.inout .card:nth-child(odd):hover {
  --rotate: -4deg; /* links */
}
.inout .card:nth-child(even):hover {
  --rotate: 4deg; /* rechts */
}
.inout .card:hover {
  transform: translateY(calc(var(--offset) - 6px)) rotate(var(--rotate));
}
.inout img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.inout h3 {
  padding: 16px;
  text-align: center;
}

.inout .card {
  opacity: 0;
  transform: translateX(-120vw) translateY(var(--offset));
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
}
.inout .card:nth-child(2) {
  transform: translateX(120vw) translateY(var(--offset));
}
.inout .card.in-view {
  opacity: 1;
  transform: translateX(0) translateY(var(--offset));
}

.container .innercontainer {
  background-color: #cb0504;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  overflow-x: hidden;
}
.container .innercontainer .products {
  display: flex;
  flex-direction: row;
  gap: 40px;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 80px 20px;
}
.container .innercontainer .products .card {
  background-color: #cbcbcb;
  border-radius: 16px;
  overflow: hidden;
  --offset: 0px;
  transform: translateY(var(--offset));
  transition: transform 0.3s ease;
  transform-origin: center center;
  flex: 1 1 0;
  min-width: 100px;
}
.container .innercontainer .products .card:hover {
  transform: translateY(calc(var(--offset) - 6px)) rotate(2deg);
}
.container .innercontainer .products .card:nth-child(1) {
  --offset: 0px;
}
.container .innercontainer .products .card:nth-child(2) {
  --offset: -40px;
}
.container .innercontainer .products .card:nth-child(3) {
  --offset: 40px;
}
.container .innercontainer .products .card:nth-child(4) {
  --offset: 0px;
}
.container .innercontainer .products .card:nth-child(5) {
  --offset: -40px;
}
.container .innercontainer .products .card:nth-child(6) {
  --offset: 0px;
}
.container .innercontainer .products .card:nth-child(7) {
  --offset: -40px;
}
.container .innercontainer .products .card:nth-child(8) {
  --offset: 40px;
}
.container .innercontainer .products .card:nth-child(9) {
  --offset: 0px;
}
.container .innercontainer .products .card:nth-child(10) {
  --offset: -40px;
}
.container .innercontainer .products .card:nth-child(odd):hover {
  --rotate: -4deg; /* links */
}
.container .innercontainer .products .card:nth-child(even):hover {
  --rotate: 4deg; /* rechts */
}
.container .innercontainer .products .card:hover {
  transform: translateY(calc(var(--offset) - 6px)) rotate(var(--rotate));
}
.container .innercontainer .products img {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  filter: brightness(0.8);
}
.container .innercontainer .products h3 {
  padding: 16px;
  text-align: center;
}
.container .innercontainer .products .none {
  display: none;
}
.container .innercontainer .counter {
  max-width: 700px;
  margin: 100px auto 0 auto;
  padding: 10px;
}
.container .innercontainer .counter h1 {
  text-align: center;
  color: #fff;
}
.container .innercontainer .counter p {
  color: #fff;
  opacity: 100%;
  text-align: center;
  font-size: 128px;
}
.container .innercontainer .counter .text {
  opacity: 100%;
  text-align: center;
  font-size: 64px;
  color: #fff;
}
.container .innercontainer .counter span {
  color: #fff;
}

/* --- SLIDER CONTAINER --- */
.slider-container {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

/* --- DE TRACK (WAAR PRODUCTEN IN ZITTEN) --- */
.slider-track {
  display: flex;
  gap: 20px;
  width: -moz-max-content;
  width: max-content;
}

/* --- DESKTOP LOGICA (GROOT SCHERM) --- */
@media (min-width: 769px) {
  .slider-container {
    overflow: visible;
  }
  .slider-track {
    width: auto;
    flex-wrap: wrap; /* Laat items evt. afbreken als het echt te klein is, of gebruik justify-content */
    justify-content: center;
    animation: none !important; /* Animatie uitzetten */
  }
  .slider-track .card.clone {
    display: none;
  }
}
/* --- MOBILE LOGICA (KLEIN SCHERM) --- */
@media (max-width: 768px) {
  /* De animatie definitie */
  @keyframes slide {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  .slider-track {
    animation: slide 10s linear infinite; /* 10s snelheid, lineair = constante snelheid */
  }
  .slider-container {
    padding-top: 55px;
  }
  .container .innercontainer .products {
    height: 400px;
    padding: 80px 0;
  }
  /* Stop de animatie als de gebruiker met muis over het product hovert (optioneel) */
  .product-card:hover {
    animation-play-state: paused;
  }
}
.bulletpoint {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.bulletpoint .circle {
  padding: 12px;
  width: 28px;
  height: 28px;
  border-radius: 100%;
  background-color: #ccc;
}
.bulletpoint .circle svg {
  margin-left: 2px;
}
.bulletpoint h3 {
  padding: 8px 0;
  color: #fff;
}

.flexbullets {
  display: flex;
  flex-direction: row;
  gap: 120px;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
  padding: 20px 40px;
}

.questions {
  max-width: 980px;
  margin: 0 auto;
  padding: 120px 20px;
}
.questions h2 {
  text-align: center;
  padding-bottom: 40px;
}
.questions details {
  overflow: hidden;
  transition: height 0.4s ease;
}
.questions details summary {
  list-style: none;
  padding: 12px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #000;
}
.questions details summary i {
  transition: transform 0.3s ease;
}
.questions details summary::-webkit-details-marker {
  display: none;
}
.questions details[open] summary i {
  transform: rotate(180deg);
}
.questions details p {
  padding: 12px 0;
  margin: 0;
}
.questions hr {
  border: none;
  border-bottom: 1px solid #a2a2a2;
  margin: 0;
}

.about {
  max-width: 980px;
  margin: 0 auto;
  padding: 120px 20px;
}
.about .owners {
  float: right;
  position: relative;
  width: 300px;
  height: 350px;
  right: 50px;
}
.about .owners img {
  display: block;
  width: 220px;
  height: auto;
  transition: all 0.35s ease;
}
.about .owners .tl {
  position: absolute;
  top: 0;
  left: 0;
}
.about .owners .br {
  position: absolute;
  bottom: 0;
  right: -60px;
}
.about .owners:hover .br {
  bottom: -10px;
  right: -70px;
}
.about .owners:hover .tl {
  top: -10px;
  left: -10px;
}
.about .text {
  margin-top: 200px;
  width: calc(100% - 200px);
}

.contact {
  max-width: 980px;
  margin: 0 auto;
  padding: 60px 10px;
}
.contact p {
  margin-top: 12px;
}

form {
  margin-top: 40px;
}
form input,
form textarea {
  background-color: #e8e8e8;
  margin-bottom: 15px;
  padding: 10px;
  border-bottom: 1px solid #000;
  font-size: 16px;
  width: calc(100% - 20px);
  color: #000;
}
form input::-moz-placeholder, form textarea::-moz-placeholder {
  color: #000;
}
form input::placeholder,
form textarea::placeholder {
  color: #000;
}
form textarea {
  resize: vertical;
}
form .bar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

footer {
  height: 350px;
  background-color: #676767;
  color: #000;
  padding: 60px 40px;
}
footer .footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  /* Branding */
}
footer .footer-container .footer-brand {
  flex: 1;
  min-width: 220px;
  margin-right: 200px;
}
footer .footer-container .footer-brand p {
  color: #fff;
}
footer .footer-container .footer-brand .logo {
  font-size: 36px;
  font-weight: bold;
  line-height: 1;
}
footer .footer-container .footer-brand .logo img {
  width: 300px;
}
footer .footer-container .footer-brand .logo .trade,
footer .footer-container .footer-brand .logo .food {
  display: inline-block;
}
footer .footer-container .footer-brand .logo .four {
  color: #38b24a;
  font-size: 64px;
  vertical-align: middle;
  margin-left: 6px;
}
footer .footer-container .footer-brand .tagline {
  margin-top: 6px;
  font-size: 14px;
  opacity: 0.9;
}
footer .footer-container .footer-brand .kvk {
  margin-top: 24px;
  font-size: 14px;
  opacity: 0.85;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer .footer-container {
  /* Contact */
}
footer .footer-container .footer-contact {
  flex: 1;
  min-width: 260px;
}
footer .footer-container .footer-contact h2 {
  margin-bottom: 16px;
  color: #fff;
}
footer .footer-container .footer-contact p {
  margin-bottom: 10px;
  line-height: 1.6;
  color: #fff;
}
footer .footer-container .footer-contact a {
  color: #ffffff;
  text-decoration: none;
}
footer .footer-container .footer-contact a:hover {
  text-decoration: underline;
}
footer .footer-container {
  /* Links */
}
footer .footer-container .footer-links {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 66px;
}
footer .footer-container .footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
}
footer .footer-container .footer-links a:hover {
  text-decoration: underline;
}

.footerbanner {
  margin-top: 0;
}
.footerbanner img {
  height: 200px;
  filter: brightness(0.75);
  transform: scale(-1, -1);
}
.footerbanner::after {
  content: "";
  background: linear-gradient(to bottom, rgba(103, 103, 103, 0) 0%, rgba(103, 103, 103, 0.75) 40%, #676767 100%);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }
  .footer-links {
    justify-content: flex-start;
  }
}
@media (max-width: 1250px) {
  .bannertekst {
    margin: -450px auto 300px auto;
  }
  .bannertekst h2 {
    font-size: 90px;
  }
  .bannertekst h3 {
    font-size: 120px;
  }
  .inverkoop {
    padding: 120px 0 100px 0;
  }
  .inverkoop .text {
    margin: -300px auto 0 auto;
    max-width: 280px;
  }
  .container .innercontainer .products .card {
    width: 250px;
  }
  .container .innercontainer .products img {
    width: 100%;
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
    filter: brightness(0.8);
  }
  .container .innercontainer .products h3 {
    padding: 16px;
    text-align: center;
  }
}
@media (max-width: 1119px) {
  footer {
    height: 450px;
  }
}
@media (max-width: 1000px) {
  .products {
    display: flex;
    flex-wrap: nowrap;
    gap: 40px;
    overflow: hidden;
    will-change: transform;
  }
  .none {
    display: block !important;
  }
  .products .card {
    flex-shrink: 0;
  }
  .inout {
    margin-bottom: -600px;
  }
  .inout .card {
    width: 150px;
  }
  .inout img {
    height: 200px;
  }
  .inverkoop {
    max-width: 1280px;
    padding: 120px 0 50px 0;
    margin: 0 auto;
    width: 90%;
  }
  .inverkoop img {
    width: 100%;
  }
  .inverkoop .text {
    margin: -200px auto 0 auto;
    text-align: center;
    max-width: 300px;
  }
}
@media (max-width: 875px) {
  .bannertekst {
    margin: -450px auto 300px auto;
  }
  .bannertekst h2 {
    font-size: 60px;
  }
  .bannertekst h3 {
    font-size: 90px;
  }
  .inout {
    margin-bottom: -500px;
  }
  .flexbullets {
    gap: 40px;
  }
  .bulletpoint .circle {
    padding: 12px;
    width: 28px;
    height: 28px;
    border-radius: 100%;
    background-color: #ccc;
  }
  .bulletpoint .circle svg {
    margin-left: 2px;
  }
  .bulletpoint h3 {
    padding: 8px 0;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .desktop {
    display: none !important;
  }
  .mobile {
    display: block !important;
  }
  .bannertekst {
    margin: -450px auto 300px auto;
  }
  .bannertekst img {
    width: 60%;
  }
  .bannertekst h2 {
    font-size: 30px;
  }
  .bannertekst h3 {
    font-size: 60px;
    -webkit-text-stroke: 3px #000;
  }
  footer {
    height: 650px;
  }
  footer .footer-brand {
    margin-right: 0 !important;
  }
  .inout {
    margin-bottom: -400px;
    padding: 150px 0 80px 0;
  }
  .inout .card {
    width: 200px;
  }
  .inout img {
    height: 200px;
  }
  .inverkoop {
    max-width: 1280px;
    padding: 120px 0 100px 0;
    margin: 0 auto;
    width: 90%;
  }
  .inverkoop img {
    width: 100%;
  }
  .inverkoop .text {
    margin: 175px auto 0 auto;
    text-align: center;
    max-width: 500px;
  }
  .counter {
    max-width: 700px;
    margin: 0 auto !important;
    padding: 10px;
  }
  .counter h1 {
    text-align: center;
    font-size: 30px;
  }
  .counter p {
    opacity: 100%;
    text-align: center;
    font-size: 78px !important;
  }
  .flexbullets {
    flex-direction: column;
    gap: 20px;
  }
  .about {
    max-width: 1280px;
    margin: 0 auto;
    padding: 120px 20px;
  }
  .about .owners {
    float: right;
    position: relative;
    width: 200px;
    height: 250px;
    right: 50px;
  }
  .about .owners img {
    display: block;
    width: 160px;
    height: auto;
    transition: all 0.35s ease;
  }
  .about .text {
    margin-top: 250px;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .inout {
    margin-bottom: -400px;
    padding: 150px 0 80px 0;
  }
  .inout .card {
    width: 150px;
  }
  .inverkoop .text {
    margin: 220px auto 0 auto;
    text-align: center;
    max-width: 500px;
  }
}/*# sourceMappingURL=styles.css.map */