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

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 400;  /* normaal gewicht voor paragrafen */
  line-height: 1.6;
  color: #333;
}


a {
  color: #333;
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.site-header {
  background-color: #fff;
  border-bottom: 1px solid #e5e5e5;
}

/* Header inner: logo + nav aligned together */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* everything aligned to the left */
  gap: 50px; /* space between logo and nav */
  padding: 20px 0;
}


/* Navigation right next to logo */
.site-nav ul {
  display: flex;
  list-style: none;
  gap: 30px; /* space between menu items */
  margin: 0;
  padding: 0;
}

.site-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.site-nav a:hover {
  color: #555;
}

/* Hero sectie */
.hero {
  background: url('hero-image.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  color:#000;
}

.hero-content p {
  font-size: 1.2rem;
  color:#000;
}

/* Intro sectie */
.intro {
  padding: 60px 0;
  background-color: #f9f9f9;
}
.intro h1 {
  color: #000;
}
.intro h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}

.intro p {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

/* Product preview sectie */
.products-preview {
  padding: 60px 0;
}

.products-preview h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  background-color: #fff;
  border: 1px solid #e5e5e5;
  padding: 20px;
  text-align: center;
}

.product-card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.product-card p {
  font-size: 1rem;
  margin-bottom: 15px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #333;
  color: #fff;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn:hover {
  background-color: #555;
}

/* Contact sectie */
.contact-info {
  padding: 60px 0;
  background-color: #fff;
  text-align: center;
}

.contact-info h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
}

.contact-info p {
  text-align: center;
  margin-bottom: 10px;
}

.contact-info .frame {
  display: inline-block; /* zodat het kadertje de grootte van de afbeelding volgt */
  padding: 10px;         /* ruimte binnen het kader */
  margin-top: 30px;
  border-radius: 8px;      /* afgeronde hoeken */
  
}

.contact-info .frame img {
  max-width: 150px; /* kleine foto */
  height: auto;
  display: block;
  text-align: center;
}

/* Footer */
.site-footer {
  background-color: #fff;
  border-top: 1px solid #e5e5e5;
  padding: 30px 0;
}

.site-footer p {
  text-align: center;
  color: #777;
  font-size: 0.9rem;
}
.site-footer a {
  text-align: center;
  color: #777;
  font-size: 0.9rem;
}
/* Foto met kader */
.photo-frame {
  background-color: #f9f9f9;       /* zachte achtergrond */
  padding: 80px 0;                 /* ruimte rond de sectie */
  text-align: center;
}

.photo-frame .frame {
  display: inline-block;           /* centreert het kader */
  /*border: 8px solid #e5e5e5;       /* lichte rand */
  /*padding: 10px;                   /* afstand tussen rand en foto */
  /*background-color: #fff;          /* witte achtergrond binnen de rand */
  /*box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* zachte schaduw */
  border-radius: 0px;              /* optioneel: afgeronde hoeken */
  max-width: 800px;                /* beperkt de grootte */
  width: 100%;
}

.photo-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;              /* past bij het kader */
}

.photo-frame .caption {
  margin-top: 20px;
  font-size: 0.95rem;
  color: #555;
  font-style: italic;
}

.photo-frame h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #000;
}

.photo-frame p {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
margin-bottom: 20px;
}



.logo {
  display: flex;
  align-items: center;
  gap: 10px; /* ruimte tussen logo en tekst */
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
  text-decoration: none;
}

.logo img {
  height: 40px;       /* pas dit aan naargelang je logo */
  width: auto;
  display: block;
}

.logo span {
  line-height: 1;     /* houdt tekst mooi verticaal gecentreerd */
  font-weight: 400; /* normaal gewicht */
}

.text-image-section {
  padding: 80px 0;
  background-color: #f9f9f9; /* lichte achtergrond */
}

.text-image-section .content {
  display: flex;
  align-items: center;
  gap: 40px; /* ruimte tussen tekst en afbeelding */
  flex-wrap: wrap; /* zorgt dat het op mobiel netjes onder elkaar gaat */
}

.text-image-section .text {
  flex: 1 1 400px; /* tekst neemt minstens 400px en groeit */
}

.text-image-section .text h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.text-image-section .text p {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.text-image-section .btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
}

.text-image-section .image {
  flex: 1 1 400px; /* afbeelding neemt minstens 400px en groeit */
  text-align: right;
}

.text-image-section .image img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Mobiel: stapel tekst boven afbeelding */
@media (max-width: 768px) {
  .text-image-section .content {
    flex-direction: column;
  }
  
  .text-image-section .image {
    text-align: center;
  }
}

.image-text-section {
  padding: 80px 0;
  background-color: #fff; /* witte achtergrond */
}

.image-text-section .content {
  display: flex;
  align-items: center;
  gap: 40px; /* ruimte tussen afbeelding en tekst */
  flex-wrap: wrap; /* zodat het op mobiel netjes onder elkaar gaat */
}

.image-text-section .image {
  flex: 1 1 400px; /* afbeelding neemt minstens 400px en groeit */
  text-align: left;
}

.image-text-section .image img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.image-text-section .text {
  flex: 1 1 400px; /* tekst neemt minstens 400px en groeit */
}

.image-text-section .text h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #000;
}

.image-text-section .text p {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.6;
  color: #333;
}

.image-text-section .btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
}

/* Mobiel: stapel afbeelding boven tekst */
@media (max-width: 768px) {
  .image-text-section .content {
    flex-direction: column;
  }
  
  .image-text-section .image {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .image-text-section .text {
    text-align: center;
  }
}


.photo-grid-section {
  padding: 80px 0;
  background-color: #fff; /* witte achtergrond */

}



.photo-grid-section h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #000;
}

.photo-grid-section p {
max-width: 700px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 20px;
}

  
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px; /* ruimte tussen foto's */
}

.photo-grid .photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.photo-grid .photo img:hover {
  transform: scale(1.05); /* subtiele hover-effect */
}

/* Mobiel: 2 foto's per rij */
@media (max-width: 992px) {
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Klein mobiel: 1 foto per rij */
@media (max-width: 600px) {
  .photo-grid {
    grid-template-columns: 1fr;
  }
}

.no-break {
  white-space: nowrap;
}



/* Taalkeuze */
/* Language switcher (optional: move to right) */
.language-switcher {
  margin-left: auto; /* pushes it to the far right */
  font-size: 0.9rem;
  font-weight: 500;
}

.language-switcher a {
  color: #333;
  text-decoration: none;
  margin: 0 5px;
}

.logo a {
  color: #333;
  text-decoration: none;
  margin: 0 5px;
}

.language-switcher a:hover {
  text-decoration: underline;
}

/* Responsive: stapel menu op mobiel */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
  }

  .language-switcher {
    margin-top: 10px;
  }
}
