@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
:root {
  /* Base font sizes (desktop) */
  --font-xxs: 0.75rem;   /* 12px */
  --font-xs: 0.875rem;   /* 14px */
  --font-sm: 1rem;       /* 16px */
  --font-md: 1.125rem;   /* 18px */
  --font-lg: 2rem;     /* 24px */
  --font-xl: 2.5rem;       /* 32px */
  --font-xxl: 3.5rem;      /* 48px */
  --dark-green:#608753;
  --light-green: #A3C686;
  --black: #2C2F24;
  --gray: #D9D9D9;
  --white: #F9F9F7;
  --light-white: #ffffff;
}
html {
  scroll-behavior: smooth;
}
/* === BASISINSTELLINGEN === */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
    font-family: "DM Sans", sans-serif;
}
body {
  font-family: var(--font-family-base);
  font-size: var(--font-sm);
  color: var(--black);
  line-height: 1.2;
  background-color: var(--light-white);
}
.bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.bg-section {
  position: relative;
  z-index: 1;
}
.content {
  position: relative;
  z-index: 2;
}

.content {
  max-width: 85vw;
  margin: 0 auto;
}
section {
  padding: 75px 0px;
}
.services-wrapper, .about-section {
  background-color: var(--white);
}
/* === KOPPEN === */
h1 {
  font-size: var(--font-xxl);
  line-height: var(--font-heading-line-height);
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
}

h2 {
  font-size: var(--font-xl);
  line-height: var(--font-heading-line-height);
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}

h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: var(--font-lg);
  font-weight: 600;
}

h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: var(--font-md);
  font-weight: 600;
}

h5 {
  font-size: var(--font-sm);
  font-weight: 600;
}

h6 {
  font-size: var(--font-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* === INLINE EN PARAGRAFEN === */
p {
  font-size: var(--font-sm);
  margin-bottom: 1em;
}

span,
label,
li,
td,
th,
dd,
dt {
  font-size: var(--font-sm);
}

small {
  font-size: var(--font-xs);
}
a {
  text-decoration: none;
  color: white;
}
button,
input,
select,
textarea {
  font-size: var(--font-sm);
  font-family: inherit;
}

code,
kbd,
samp {
  font-size: var(--font-xs);
  font-family: monospace;
}

blockquote {
  font-size: var(--font-md);
  font-style: italic;
  margin: 1em 0;
  padding-left: 1em;
  border-left: 4px solid #ccc;
}

figcaption {
  font-size: var(--font-xs);
  color: #555;
  text-align: center;
  margin-top: 0.5em;
}
ol, ul {
	list-style: none;
}

button {
  cursor: pointer;
  border-radius: 50px;
  transition: all 1s ease;
  padding: 10px 15px;
  border: none;
  color: var(--white);
  background-color: transparent;
}
.primary-button {
  background-color: var(--dark-green);
  border: 1px solid var(--dark-green);
}
.primary-button:hover {
  background-color: var(--light-green);
  border: 1px solid var(--light-green);

}
.secondary-button {
  border: 1px solid var(--black);
  color: var(--black);
}
.secondary-button:hover {
  border: 1px solid var(--black);
  background-color: var(--black);
  color: var(--white);
}
.third-button {
  color: var(--white);
  border: 1px solid var(--white);
}
.third-button:hover {
  color: var(--black);
  background-color: var(--white);
}

.section-title {
  margin-bottom: 10px;
}


/* === TOPBAR === */
.top-bar-wrapper {
    background-color: var(--dark-green);

}
.top-bar {
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0rem;
}

.top-bar-left span {
  margin-right: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar-right a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem; 
  height: 1.5rem;
  margin-left: 1rem;
  background-color: var(--light-green);
  color: var(--white);
  border-radius: 50%; 
  transition: color 0.3s ease;
  text-decoration: none;
}

#backToTop {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 9999 !important;
  background-color: #2c2c2c;
  color: #fff;
  border: none;
  outline: none;
  padding: 12px 16px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: none; /* Hidden by default */
  transition: opacity 0.3s ease-in-out;
}

#backToTop:hover {
  background-color: #555;
}

/* === NAVBAR === */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background-color: var(--light-white);
  color: var(--black);
  position: relative;
}

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

.navbar-logo {
  height: 50px;
  max-width: 180px;
  object-fit: contain;
}

.nav-items {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-items a {
  color: var(--black);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-items a:hover {
  color: var(--light-green);
}

.nav-button button {
  padding: 0.5rem 1rem;
  background-color: transparent;
  border: none;
  border-radius: 20px;
  border: 1px solid var(--black);
  color: var(--black);
  cursor: pointer;
}

.nav-button button:hover {
  background-color: var(--black);
  color: var(--white);
}


.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-color: var(--black);
  border-radius: 2px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 250px;
  height: 100vh;
  background-color: #2d2d2d;
  color: var(--white);
  padding: 2rem;
  transition: right 0.3s ease;
  z-index: 1000;
  
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
}



.mobile-menu ul {
  list-style: none;
  margin-top: 2rem;
}

.mobile-menu ul li {margin: 1rem 0;}

.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.2rem;
}

.close-btn {
  font-size: 2rem;
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.nav-items a.active {
  background-color: var(--light-green);
  color: var(--white);
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  font-weight: bold;
}
.active-mobile,.mobile-menu a:hover {color: var(--light-green) !important;}
.mobile-contact {
  padding-top: 2rem;
  padding-bottom: 4rem;
  border-top: 1px solid #444;
  color: var(--white);
}


.mobile-contact h3 {
  margin-bottom: 0.5rem;
  color: var(--light-green);
}

.mobile-contact a {
  color: var(--white);
  text-decoration: none;
}
.mobile-contact a:hover {text-decoration: underline;}

/* === INGREDIENT BACKGROUND DECORATION === */
.bg-ingredient {
  position: absolute;
  z-index: 0;
  opacity: 0.1;
  pointer-events: none;
  max-width: 150px;
}

.bg-section {
  position: relative;
  overflow: hidden;
}

.about-top-left {
  bottom: 14%;
  left: 2%;
}
.about-bottom-right {
  top: 0;
  transform: rotate(180deg);
  right: -20px;
}
.about-middle {
  right:25%;
  bottom: 5%;
  transform: rotate(30deg);
}
.services-middle {
  right: 0;
}
.contact-left {
  top: 40%;
left: 0}
.contact-bottom-left {
  left: 0;
  bottom: 0;
}
.contact-right {
  right: 4%;
  top: 25%;
}
.contact-center {
  left: 20%;
  transform: rotate(20deg);
  top: 0%;
}
.galerij-bottom-left {
  bottom: 20%;
  left: 0;
}
.galerij-right {
  right: 0;
  top: 20%;
    transform: rotate(180deg);
}



/* === HERO === */
.hero-section {
  position: relative;
  width: 100%;
  height: calc(100vh - 13vh); 
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  text-align: center;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); 
}

.hero-content h1 {
  font-size: var(--font-xxl);
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: var(--font-md);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-buttons .primary-button,
.hero-buttons .secondary-button {
  padding: 0.75rem 1.5rem;
}

/* === ABOUT === */
.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
}

.about-image-container {
  position: relative;
  flex: 1 1 45%;
  max-width: 500px;
}

.about-image {
  width: 100%;
  max-height: 450px;
  border-radius: 12px;
  object-fit: cover;
}
.about-text > p > span {
  font-weight: bold !important;
}
.contact-card {
  position: absolute;
  bottom: 30px;
  right: -60px;
  background-color: var(--dark-green);
  color: var(--white);
  padding: 20px;
  border-radius: 12px;
  width: 260px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.contact-card p {
  display: flex;
  align-items: center;
  gap: 10px;
}



.contact-card h3 {
  margin-bottom: 30px;
}
.about-top-text {
  font-weight: 450;
  font-size: 17px;
}

.about-text {
  margin-top: 2%;
  flex: 1 1 45%;
  max-width: 500px;
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 10px;
}
.about-text > button {
  margin-top: 30px;
}

/* === DIENSTEN === */
.services-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service > img {
  border-radius: 12px;
  width: 100%;
  max-height: 225px; 

}

.service > h3 {
  margin: 10px 0px;
  font-weight: bold;
}

/* === CONTACT === */
.contact-section {
  padding: 100px 0;
  background-color: var(--light-white);
}

.contact-title {
  text-align: center;
  margin-bottom: 20px;
}

.contact-subtitle {
  max-width: 700px;
  text-align: center;
  margin: 0 auto 50px auto;
  color: var(--black);
}

.contact-box {
  background: var(--light-white);
  border-radius: 20px;
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0px 30px 60px rgba(0, 0, 0, 0.05);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  padding: 15px 20px;
  border: 1px solid var(--gray);
  border-radius: 40px;
  font-size: var(--font-sm);
  background: #fff;
  color: var(--black);
}

.form-group textarea {
  border-radius: 20px;
  resize: none;
}

.contact-info-row {
  display: flex;
  justify-content: space-around;
  gap: 60px;
  margin-top: 50px;
  flex-wrap: wrap;
}


.green-text {
  color: var(--light-green);
  font-weight: bold;
}
.info-block-header{
margin-bottom: 10px;
}

.diensten-button {
  display: flex;
  margin: 0 auto;
  margin-top: 60px;
}

/* === GALERIJ === */
  .gallery-container {
    padding: 100px 0px;
  grid-area: c;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-auto-rows: 150px;
  grid-gap: 20px;
  grid-auto-flow: dense;
  overflow: auto;
  padding-right: 20px;  
  }

.black-text {
  color: var(--black);
}
  .gallery-container >div{
  z-index: 1;
  position: relative;
  padding: 0;
  overflow: hidden;
  box-shadow: 5px 5px 10px rgba(0,0,0,.2), 
              5px 5px 25px rgba(0,0,0,.1);
  }
  .gallery-container > div > img{
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  }


  .vertical{grid-row: span 2;}
  .horizontal{grid-column: span 3;}
  .big{
  grid-row: span 2;
  grid-column: span 2;
  }

  .selector-gallery {
    display: flex;
    gap: 20px;
}
.selector-gallery button.active-gallery {
    font-weight: bold;
    color: var(--black)
}




/* === FOOTER === */
footer {
  background-color: var(--dark-green);
  z-index: 1;
  color: var(--white);    }
.footer-container {  
padding: 50px 0px;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
}
.footer-logo {
  max-width: 250px;
  margin-bottom: 20px;
}

.footer-contact > ul > li > a {
    display: inline-block;
    border-bottom: 1px solid var(--white);
    padding-bottom: 5px;
}
.footer-contact > p {
  max-width: 80%;
}
.footer-contact > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem; 
  height: 1.5rem;
  background-color: var(--light-green);
  color: var(--white);
  border-radius: 50%; 
}
.footer-navigation-links >  li {
    margin: 20px 0px;
}
.footer-navigation-links >  li:hover {
    color: var(--light-gray);
    transition: all 0.5s ease-out;

}
.footer-navigation-links a.active {
    font-weight: bold;
    color: var(--); 
}

.social-grid {
  display: grid;
  z-index: 1;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.footer-social-media > h3 {
  margin-bottom: 20px;
}
.footer-social-media .social-grid img {
  height: 150px; /* or any fixed height you prefer */
  object-fit: cover;
}

.social-grid a {
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.social-grid img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.social-grid img:hover {
  transform: scale(1.05);
}


.footer-bottom {
  text-align: center;
  padding: 30px 0px;
  color: var(--white);
}

.footer-bottom a {
  color: var(--white);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--light-green);
}
    .voorwaarden-list li::before {
      content: "\2022";
      color: var(--dark-green);
      display: inline-block;
      width: 1em;
      margin-left: -1em;
    }
    .voorwaarden-list {
      padding-left: 2em;
      margin-bottom: 2em;
      line-height: 1.8;
    }
    hr {
      border: none;
      border-top: 1px solid #ccc;
    }
    .annuluring-info {
        margin-left: 30px;
    }
/* === RESPONSIVE SCHAAL (Tablet en Mobiel) === */
@media (max-width: 1024px) {
 .about-container {
    flex-direction: column-reverse;
    gap: 40px;
  }

  .about-image-container {
    position: static;
    max-width: 100%;
    width: 100%;
  }

  .about-image {
    width: 100%;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    display: block;
  }

  .contact-card {
    position: static;
    width: 100%;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    box-sizing: border-box;
  }

  .about-text {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 865px) {
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh; 
  overflow: hidden;
}
.hero-content {
  padding: 0.5rem;
}

    .nav-items,
  .nav-button {
    display: none;
  }

  .hamburger {
    display: flex;
  }
  .top-bar {
    display: none;
  }  .services-container {
    grid-template-columns: 1fr;
  }
  .service > img {
    max-height: 200px; 
    object-fit: cover; 
  }

  .service {
    height: auto; 
  }

    .contact-section {
    padding: 60px 20px;
  }

  .contact-box {
    padding: 30px 20px;
  }
  h1 {
    font-size: 2rem !important;
  }

  .form-row {
    flex-direction: column;
    gap: 15px;
  }

  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 12px 16px;
  }

  .contact-subtitle {
    margin-bottom: 30px;
  }

  .contact-info-row {
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
  }

  .info-block {
    text-align: center;
  }

  .contact-form button {
    align-self: center;
    width: 100%;
  }
  .contact-box,
.contact-form,
.form-group input,
.form-group textarea {
  width: 100%;
  box-sizing: border-box;
}

.bg-ingredient {
    max-width: 100px; 
    opacity: 0.2;    
  }

  .about-top-left {
    bottom: 5%;
    left: 5%;
  }

  .about-bottom-right {
    top: 55%;
    right: -5px;
  }

  .about-middle {
    right: 0;
    bottom: 0;
  }

  .services-middle {
    top: 20%;
    right: 0;
  }

  .contact-left {
    top: 20%;
    left: 5%;
  }

  .contact-bottom-left {
    bottom: 5%;
    left: 0;
  }

  .contact-right {
    top: 70%;
    right: 0%;
  }


  .contact-left {
    left: 0;
  }

  .galerij-bottom-left {
    bottom: 10%;
    left: 0;
  }

  .galerij-right {
    top: 10%;
    right: 0%;
  }
    .footer-container {
        display: flex;
        padding: 50px 20px;
        flex-direction:column; 
        gap: 50px;
    }
  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    padding: 50px 10px;
    gap: 10px;
  }

  .gallery-container > div {
    grid-column: span 2;
    aspect-ratio: 1 / 1;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
  }

  .vertical {
    aspect-ratio: 1 / 2;
  }

  .horizontal {
    aspect-ratio: 2 / 1;
  }

  .big {
    aspect-ratio: 2 / 2;
  }
}
footer {
  z-index: 1; /* or remove it entirely if not needed */
  position: relative;
}
