@font-face {
    font-family: 'taebaek';
    src: url('../fonts/TAEBAEK.woff2') format('woff2'),
        url('../fonts/TAEBAEK.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Acumin Pro';
    src: url('../fonts/AcuminPro-ExtraLight.woff2') format('woff2'),
        url('../fonts/AcuminPro-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Brag Pro';
    src: url('../fonts/BragPro.woff2') format('woff2'),
        url('../fonts/BragPro.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Acumin Pro';
    src: url('../fonts/AcuminPro-Bold.woff2') format('woff2'),
        url('../fonts/AcuminPro-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}




:root {
  --beige: #F8E1C8;
  --paars: #3A112C;
  --oranje: #EB6122;
  --geel: #F5D74E;
}


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

html {
  scroll-behavior: smooth;
}

body.menu-open {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}


body {
  font-family: 'Acumin Pro';
  scroll-behavior: smooth;
  font-size: 1.2em;
  color: #3D0D2C;


  /* Achtergrondkleur + achtergrondafbeelding */
  background-color: var(--beige); /* je gewenste kleur */
  background-image: url('../images/background.png'); /* je afbeelding */
  background-repeat: repeat;   /* afbeelding herhalen? nee */
  background-position: center;    /* afbeelding positioneren */
  background-size: 80%;

}

h1, h2, h3, h4 {
  font-family: 'taebaek';
}

h1 {
  font-size: 3em;
  line-height: 1.2em;
}

h2 {
  font-size: 2.8em;
  line-height: 1.3em;
}

h3 {
  font-family: 'Brag Pro';
  font-size: 1.8em;
  line-height: 1.4em;
}

b {
  font-weight: bold;
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  transition: transform 0.3s ease, background 0.3s ease;
  z-index: 1000;
}

header.hide {
  transform: translateY(-100%);
}


header {
  transition: all 0.3s ease;
}

header.bg-active {
  background-color: rgba(255, 245, 235, 0.95); /* bv je paarse kleur */
  box-shadow: 0 2px 10px rgba(0,0,0,0.1); /* optioneel */
}


.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 1rem;
}

.logo {
  font-weight: bold;
  font-size: 1.2rem;
}

.logo img {
  height: 90px;
}

main {
  margin-top: 180px;
}


.intro {
  width: 90%;
  height: 250px;
  margin: 50px auto;
  background-color: #3A112C;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative; /* nodig voor absolute overlay */
}

.wave-top-intro {
  background-image: url('../images/wavemask.svg');
  background-position: bottom;
  background-repeat: repeat-x;
  position: absolute;
  height: 40px;
  top: -40px;;
  width: 100%;   /* stretch over de hele div */
  object-fit: contain;; /* past de SVG netjes in hoogte en breedte */
  pointer-events: none; /* zodat klikken door de SVG heen gaat */
}

.green-plant {
  position: absolute;
  left: 0;
  width: 15vh;
}

.rietsuiker {
  position: absolute;
  bottom: 0;
  right: 5vw;
  height: 20vh;
}


/* ---- INTRO --- */


.heroshot {
  position: relative;
  z-index: 140;

}

.packshot {
  width: 100%;
  margin-top: -150px;
}



.shakeupyoursugar {
  width: 70%;
}


/* -------------------------------- Gamma --------------------------------- */


#zoet-gamma {
  padding-top: 100px;
  padding-bottom: 100px;
  text-align: center;
  background-color: #FFF5EB;
  background-image: url('../images/background.png'); /* je afbeelding */
  background-repeat: repeat;   /* afbeelding herhalen? nee */
  background-position: center;    /* afbeelding positioneren */
  background-size: 80%;
  position: relative;
}

.oranjeplant {
  position: absolute;
  right: 0;
  top: -100px;
}


.productcol {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;   /* afbeelding & tekst centreren */
  text-align: center;
  background-color: #F8E1C8;
  padding: 20px;
  padding-bottom: 40px;
}

.productcol img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.productcol h3 {
  min-height: 2.5em; /* zorgt dat alle titels evenveel ruimte krijgen */
  margin-bottom: 10px;
}

.productcol {
  padding: 20px;
  border-radius: 30px;
}

.productcol img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 15px;
}

/* ---------------------- Zonnig verhaal ----------------*/

#zonnig-verhaal {
  padding-top: 100px;
  padding-bottom: 100px;
  height: 80vh;
  text-align: center;
  background-image:
  linear-gradient(to bottom, rgba(118, 200, 213, 0.8) 0%, rgba(118, 200, 213, 0) 30%),
  url('../images/machine.jpg');
  background-size: cover;
  background-position: bottom;
  position: relative;
}

.green-plant-sunny {
  position: absolute;
  left: 0px;
  top: -80px;
  width: 15vh;
}

.wave-top-sunny {
  background-image: url('../images/wavemask_sunny.svg');
  background-position: bottom;
  background-repeat: no-repeat;
  position: absolute;
  height: 40px;
  top: -38px;;
  width: 100%;   /* stretch over de hele div */
  object-fit: contain;; /* past de SVG netjes in hoogte en breedte */
  pointer-events: none; /* zodat klikken door de SVG heen gaat */
}

/* --------------------- Heerlijke Inspiratie ------------------ */

#heerlijke-inspiratie {
  background-color: #FFF5EB;
  background-image: url('../images/background.png'); /* je afbeelding */
  background-repeat: repeat;   /* afbeelding herhalen? nee */
  background-position: center;    /* afbeelding positioneren */
  background-size: 80%;
  position: relative;
}

.strooibakshake,
.visual {
  align-items: center; /* verticaal centreren van de afbeelding binnen de kolom */
}

.strooibakshake {
  text-align: center;

}


.visual {
  text-align: left;
}

.strooibakshake img
.visual img {
  display: block;
}

.visual img {
  width: 200px;

}

.inspratie-col {
  position: relative;
  width: 100%;
}

.inspratie-tag {
  position: absolute;
  text-align: left;
}

.inspiratie-col img {
  width: 100%;
  border-radius: 30px;
}


.inspratie-tag {
  margin-left: 25px;
  margin-top: 25px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 8px;
  padding-bottom: 8px;
  border-radius: 8px;
  color: #F1ECEC;
  font-family: 'taebaek';
  font-size: 0.7em;
}

/* ------------------- CONTACT --------------------- */

#contact {
  text-align: center;
  background-color: #FFF5EB;
  background-image: url('../images/background.png'); /* je afbeelding */
  background-repeat: repeat;   /* afbeelding herhalen? nee */
  background-position: center;    /* afbeelding positioneren */
  background-size: 80%;
}

#contactinfo {
  height: 200px;
  padding-top: 50px;
  padding-bottom: 250px;
  background-color: #F8E1C8;
  position: relative;
  background-image: url('../images/background_footer.png'); /* je afbeelding */
  background-repeat: repeat;   /* afbeelding herhalen? nee */
  background-position: center;    /* afbeelding positioneren */
  background-size: 80%;

}


.orange-plant-left {
  width: 140px;
  position: absolute;
  top: -120px;
  left: 0;
  z-index: 4;
}

.dots {
  width: 300px;
  position: absolute;
  right: 50px;
  top: -100px;
  z-index: 4;
}

.footerimg {
  width: 20vw;
  max-width: 350px;
  position: absolute;
  bottom:0px;
  left: 50px;
  z-index: 4;
}


.wave-top-contact {
  background-image: url('../images/wavemask_contact.svg');
  background-position: bottom;
  background-repeat: no-repeat;
  position: absolute;
  height: 40px;
  top: -38px;;
  width: 100%;   /* stretch over de hele div */
  object-fit: contain;; /* past de SVG netjes in hoogte en breedte */
  pointer-events: none; /* zodat klikken door de SVG heen gaat */
}

.calltoaction {
  text-decoration: none;
  font-family: 'taebaek';
  color: var(--paars);
  border: solid 2px;
  border-radius: 12px;
  padding: 12px 15px 12px 15px;
  font-size: 0.8em;
  transition: background-color 0.3s ease;


}

.calltoaction:hover {
  background-color: var(--geel);

}

/* -------------- FOOTER --------------------- */

#footer {
  background-color: var(--paars); /* bv donker */
}

.footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr; /* 4 gelijke kolommen */
  gap: 40px;
  padding-top: 100px;
  padding-bottom: 100px;
  color: white;
  font-size: 0.8em;
}

.footer-col img {
  max-width: 150px;
  height: auto;
}

.footer-col h4 {
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 5px;
}

.footer-col ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--geel);
}

/* Lege kolom */
.footer-col.empty {
  /* niets nodig, blijft leeg */
}

.sitemap {
  font-family: 'taebaek';
  line-height: 2em;
}

.company-info {
  text-align: right;
  line-height: 1.5em;
}

.footer a {
  text-decoration: underline;
  color: #FFFFFF;
  transition: color 0.3s ease;

}

.footer a:hover {
  color: var(--geel);
}


/* ------------- ALIGN & WITH --------------------------- */

.info {
  width: 60%!important;
  margin: auto;
}

.small_info {
  width: 60%;
  max-width: 600px;
  margin: auto;
}

.content {
  width: 80%;
  margin: auto;
}

.left-align {
  text-align: left;
}

.spacer {
  height: 100px;
}

.smallspacer {
  height: 50px;
}

/* ===== NAVIGATION ===== */
nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
  font-family: 'taebaek';
  font-size: 0.8em;
}

nav a:hover,
nav a.active {
  color: var(--oranje);
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hamburger animation when active */
.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}


/* ===== SECTIONS ===== */
.section {
  margin: auto;
}

.three-column .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.two-column-section {
  display: grid;
  grid-template-columns: 2fr 1fr; /* linker kolom 2/3, rechter kolom 1/3 */
  gap: 80px; /* ruimte tussen kolommen */
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.two-column-section-extra {
  display: grid;
  grid-template-columns: 4fr 2fr; /* linker kolom 4/6, rechter kolom 2/6 */
  gap: 0px; /* ruimte tussen kolommen */
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}



/* =================== RESPONSIVE ---- MOBILE NAV =============== */
@media (max-width: 1024px) {

  body {
    font-size: 1em;
  }

  h1 {
    font-size: 1.5em;
  }

  h2 {
    font-size: 1.3em;
  }

  .intro {
    width: 90%;
    height: 150px;
  }

  .rietsuiker {
    position: absolute;
    bottom: 0;
    right: 5vw;
    height: 10vh;
  }

  .packshot {
    width: 100%;
    margin-top: -100px;
  }

  .wave-top-intro, .wave-top-sunny, .wave-top-contact {
    background-size: 190%;
  }

  .left-align {
    text-align: center;
  }

  .content {
    width: 90%;
  }

  .info {
    width: 90%!important;
    margin: auto;
  }

  .small_info {
    max-width: 600px;
    margin: auto;
  }

  .footer {
    text-align: center;
  }

  .sitemap {
    text-align: center;
  }

  .company-info {
    text-align: center;
    line-height: 1.5em;
  }

  .dots {
    width: 100px;
    position: absolute;
    right: 0px;
    top: -80px;
    z-index: 4;
  }

  .orange-plant-left {
    width: 80px;
    top: -80px;
  }

  .footerimg {
    display: none;
  }


  nav {
    position: fixed;
    top: 129px;
    right: -100%;
    background: #F8E1C8;
    width: 100%;
    height: calc(100vh - 70px);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease;
  }

  nav.active {
    right: 0;
  }

  nav a {
    font-size: 1.5em;
  }

  nav ul {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    margin-top: -200px;

  }

  .hamburger {
    display: flex;
  }

  .strooibakshake {
    width: 90%;
    margin: auto;
    text-align: center;
  }

  .visual {
    text-align: center;
  }

  .two-column-section, .two-column-section-extra, .footer {
    grid-template-columns: 1fr; /* 1 kolom */
    gap: 40px; /* optioneel: kleinere spacing */
  }

  #zonnig-verhaal {
    padding-top: 100px;
    padding-bottom: 100px;
    height: 80vh;
    text-align: center;
    background-image:
    linear-gradient(to bottom, rgba(118, 200, 213, 0.8) 0%, rgba(118, 200, 213, 0) 30%),
    url('../images/machinemobile.jpg');
    background-size: cover;
    background-position: bottom left;
    position: relative;
  }
}
