@charset "UTF-8";

/* ========== Algemene instellingen ========== */
* {
  box-sizing: border-box;
}

html {
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
}

body {
  margin: 0;
  padding: 0 50px;
  font-family: Calibri, Helvetica, Arial, sans-serif;
  font-size: 20px;
  color: #666;
  text-align: center;
  background: none;
}

/* ===== Fix voor header en navigatie op mobiel ===== */
@media (max-width: 900px) {
  header.topbar {
    display: flex;
    flex-direction: row;       /* horizontale lijn */
    align-items: center;       /* verticaal centreren */
    justify-content: space-between; /* logo links, hamburger rechts */
    padding: 10px 20px;
    height: auto;              /* laat hoogte automatisch aanpassen */
  }

	
  .logo img {
    height: 70px;              /* kleiner logo op mobiel */
  }

  .hamburger {
    display: block;            /* hamburger tonen */
    font-size: 34px;
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
  }
}


  nav.main-nav {
    width: 100%;
    border-radius: 8px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  nav.main-nav ul {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  nav.main-nav li a {
    width: 100%;
    border: none;
    border-top: 1px solid #f0f0f0;
    text-align: center;
    padding: 12px 0;
  }

  nav.main-nav li:first-child a {
    border-top: none;
  }
}



/* ========== Navigatie en header ========== */
nav.main-nav {
  background-color: #faf1f2;
  padding: 0;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  border-radius: 12px;
  border: 2px solid #f0f0f0;
}

nav ul {
  display: flex;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav li a {
  display: inline-block;
  padding: 15px 20px;
  text-decoration: none;
  font-weight: bold;
  color: #666;
  border-left: 2px solid #f0f0f0;
  border-right: 2px solid #f0f0f0;
  transition: all 0.3s ease;
}

nav li a:hover {
  color: #000;
  background: linear-gradient(to right, #F5E2E3, #F9D6D8, #EAC4C7, #D7B0B3);
}

/* Header */
header.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  padding: 10px 20px;
  height: 100px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo img {
  height: 80px;
}

/* ========== Footer ========== */
footer {
  background-color: #faf1f2;
  text-align: center;
  height: auto;
  line-height: 1.5;
  padding: 10px;
  border: 2px solid #f0f0f0;
  border-radius: 8px;
  max-width: 1200px;
  margin: 20px auto 0;
}

/* ========== Introductie + sidebar ========== */
.intro-and-sidebar {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 20px auto;
  gap: 20px;
  padding: 0 15px;
  align-items: flex-start;
  text-align: left;
}

.intro-content {
  flex: 1;
}

.intro-content h1 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #666;
}

.intro-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #666;
}

.intro-photo img {
  width: 100%;
  max-width: 850px;
  border-radius: 10px;
  border: 2px solid #f0f0f0;
}

/* Sidebar */
.sidebar {
  width: 300px;
  background-color: #faf1f2;
  padding: 15px;
  border: 2px solid #f0f0f0;
  border-radius: 6px;
  font-size: 16px;
  color: #666;
}

.sidebar h3 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 22px;
  color: #666;
}

.sidebar address {
  font-style: normal;
  line-height: 1.6;
}

/* Social icons */
.social-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.social-icons a img {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  border: 1px solid #ccc;
  transition: transform 0.3s;
}

.social-icons a img:hover {
  transform: scale(1.1);
}

/* ========== Over mij ========== */
.content-wrapper {
  max-width: 1200px;
  margin: 20px auto 60px;
  padding: 20px 15px;
  text-align: center;
  background-color: #faf1f2;
  border-radius: 8px;
  border: 2px solid #f0f0f0;
}

.toggle-btn {
  background-color: #faf1f2;
  border: 2px solid #f0f0f0;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 16px;
  color: #666;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s, color 0.3s;
}

.toggle-btn:hover {
  background: linear-gradient(to right, #F5E2E3, #F9D6D8, #EAC4C7, #D7B0B3);
  transform: translateY(-2px);
  color: #000;
}

/* Tekst + foto */
.text-and-photo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  text-align: left;
}

.text-block {
  flex: 1;
  min-width: 250px;
}

.photo-block {
  flex-shrink: 0;
  width: 240px;
}

.photo-block img {
  width: 100%;
  border-radius: 8px;
  border: 2px solid #f0f0f0;
}

/* ========== Divider ========== */
.section-divider {
  border: none;
  height: 2px;
  background-color: #999;
  max-width: 1200px;
  margin: 40px auto;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* ========== Producten-sectie ========== */
.producten-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 15px;
}

.producten-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.product-item {
  background-color: #faf1f2;
  border: 2px solid #f0f0f0;
  border-radius: 8px;
  padding: 20px;
  flex: 1 1 calc(33.333% - 30px);
  text-align: left;
  transition: transform 0.3s ease;
}

.product-item:hover {
  transform: translateY(-5px);
}

.product-item h3 {
  color: #666;
  font-size: 22px;
  margin-bottom: 10px;
}

.product-item p {
  font-size: 16px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
}

.product-item img {
  width: 100%;
  height: auto;              /* ✅ zorgt dat hoogte zich aanpast aan de breedte */
  max-height: 400px;         /* optioneel: voorkomt dat hij te hoog wordt */
  object-fit: cover;
       /* ✅ toont de hele foto zonder afsnijden */
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-top: 10px;
  display: block;            /* voorkomt rare witruimte onder img */
  transition: transform 0.3s ease;
}


.product-item img:hover {
  transform: scale(1.05);
}

/* ========== Info-sectie (onderaan) ========== */
.info-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 15px;
  gap: 30px;
}

.info-item {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  flex: 1 1 calc(33.333% - 30px);
  text-align: left;
  transition: transform 0.3s ease;
  min-height: 250px;
}

.info-item h3 {
  color: #666;
  font-size: 22px;
  margin: 0 0 10px;
}

.info-item:not(.logo-item) p,
.info-item:not(.logo-item) address {
  font-size: 16px;
  line-height: 1.5;
  color: #666;
}

.info-item a {
  color: #666;
  text-decoration: none;
}

.info-item a:hover {
  color: #000;
  text-decoration: underline;
}

.info-item.logo-item {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}

.info-item.logo-item img {
  width: 270px;
  height: auto;
  border: none;
}

/* ========== Responsief design ========== */
@media (max-width: 900px) {
  .intro-and-sidebar,
  .producten-grid,
  .info-columns {
    flex-direction: column;
  }

  .sidebar,
  .product-item,
  .info-item {
    width: 100%;
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  body {
    padding: 0 20px;
    font-size: 18px;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
  }

  nav li a {
    border-left: none;
    border-right: none;
    width: 100%;
  }

  .text-and-photo {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .photo-block img {
    width: 80%;
    margin-top: 20px;
  }

  .logo img {
    height: 60px;
  }
}

@media (max-width: 600px) {
  body {
    padding: 0 15px;
    font-size: 16px;
  }

  .intro-photo img {
    max-width: 100%;
  }

  .toggle-btn {
    width: 100%;
  }
}

/* ========== Utility ========== */
.hidden {
  display: none;
}


/* ===== Fix voor buitenfoto die niet goed schaalt ===== */
@media (max-width: 768px) {
  .intro-photo img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 8px;
  }

  .intro-and-sidebar {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .intro-content {
    width: 100%;
  }

  .sidebar {
    width: 100%;
    margin-top: 20px;
  }
}
/* ===== Fix voor buitenfoto die niet goed schaalt ===== */
@media (max-width: 768px) {
  .intro-photo img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 8px;
  }

  .intro-and-sidebar {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .intro-content {
    width: 100%;
  }

  .sidebar {
    width: 100%;
    margin-top: 20px;
  }
}
.social-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-start; /* ✅ Nieuw: centreert de iconen horizontaal */
  margin-top: 10px;
}
/* ===== QR-code formaat ===== */
.qr-code img {
  width: 200px;
  max-width: 80%;
  height: auto;
  border-radius: 8px;
}

@media (max-width: 600px) {
  .qr-code img {
    width: 150px;
  }
}


@media (max-width: 768px) {
  .sidebar {
    text-align: left;
  }
}

.logo a {
  text-decoration: none;
  display: inline-block;
}

.logo img {
  cursor: pointer; /* maakt duidelijk dat het klikbaar is */
}

/* ===== Hamburger Menu ===== */
.hamburger {
  display: none; /* standaard niet zichtbaar */
  font-size: 34px;
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  margin-left: auto; /* duwt hamburger helemaal naar rechts */
  transition: color 0.3s;
}

.hamburger:hover {
  color: #000;
}

/* ===== Mobiel gedrag ===== */
@media (max-width: 900px) {
  header.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between; /* logo links, hamburger rechts */
    background-color: #fff;
    padding: 10px 20px;
    height: auto;
    flex-wrap: nowrap;
  }

  .hamburger {
    display: block; /* toon hamburger op mobiel */
  }

  /* verberg menu standaard */
  nav.main-nav {
    display: none;
    position: absolute;
    top: 100px; /* onder de header */
    left: 0;
    width: 100%;
    background-color: #faf1f2;
    border: 2px solid #f0f0f0;
    border-radius: 0 0 8px 8px;
    text-align: center;
    z-index: 999;
  }

  nav.main-nav.active {
    display: block; /* toon menu bij klik */
  }

  nav.main-nav ul {
    flex-direction: column;
    margin: 0;
    padding: 0;
  }

  nav.main-nav li a {
    display: block;
    padding: 15px 0;
    border: none;
    border-top: 1px solid #f0f0f0;
    color: #666;
  }

  nav.main-nav li:first-child a {
    border-top: none;
  }

  /* logo iets kleiner op mobiel */
  .logo img {
    height: 70px !important;
  }
}


/* ===== Desktop (menu zichtbaar) ===== */
@media (min-width: 901px) {
  .hamburger {
    display: none; /* hamburger verbergen op groot scherm */
  }

  nav.main-nav {
    display: flex !important;
    position: static;
    width: auto;
    background-color: #faf1f2; /* <- lichtroze achtergrond terugzetten */
    border-radius: 12px;
    border: 2px solid #f0f0f0;
  }

  nav.main-nav ul {
    flex-direction: row;
  }
}

@media (min-width: 901px) {
  nav.main-nav ul {
    gap: 25px; /* iets minder ruimte tussen menu-items */
  }

  nav.main-nav li a {
    padding: 15px 24px; /* iets smaller klikvlak */
  }
}



/* ===== Mobiel (hamburger zichtbaar) ===== */
@media (max-width: 900px) {
  header.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between; /* logo links, hamburger rechts */
    padding: 10px 20px;
  }

  .hamburger {
    display: block; /* hamburger tonen */
    font-size: 34px;
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
  }

  nav.main-nav {
    display: none; /* standaard verborgen menu */
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    background-color: #faf1f2;
    border: 2px solid #f0f0f0;
    border-radius: 0 0 8px 8px;
    text-align: center;
    z-index: 999;
  }

  nav.main-nav.active {
    display: block; /* tonen bij klik */
  }

  nav.main-nav ul {
    flex-direction: column;
    margin: 0;
    padding: 0;
  }

  nav.main-nav li a {
    display: block;
    padding: 15px 0;
    border-top: 1px solid #f0f0f0;
    color: #666;
  }

  nav.main-nav li:first-child a {
    border-top: none;
  }
}

.contact-grid {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap; /* voorkom dat items automatisch naar een nieuwe regel gaan */
  justify-content: center; /* centreren als er extra ruimte is */
  flex-direction: row; /* standaard horizontaal */
}

.contact-item {
  flex: 1 1 300px; /* elk item neemt evenveel ruimte, minimaal 300px breed */
  background-color: #faf1f2;
  border: 2px solid #f0f0f0;
  border-radius: 8px;
  padding: 15px;
  text-align: left;
}

/* Responsive: kolommen onder elkaar op smalle schermen */
@media (max-width: 900px) {
  .contact-grid {
    flex-wrap: wrap;
  }

  .contact-item {
    flex: 1 1 100%; /* neem volle breedte op mobiel */
  }
}

/* Contact section */
.contact-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 15px;
}

/* Flexbox voor de drie kolommen */
.contact-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Elke kolom styling */
.contact-item {
  flex: 1 1 250px;  /* minimaal 250px, groeit gelijkmatig */
  background-color: #faf1f2;
  border: 2px solid #f0f0f0;
  border-radius: 8px;
  padding: 15px;
  text-align: left;
  box-sizing: border-box;
}

/* QR-code centreren */
.contact-item .qr-code {
  margin-top: 15px;
  display: flex;
  justify-content:flex-start;
}

/* QR-code afbeelding formaat */
.contact-item .qr-code img {
  width: 150px;       /* pas aan naar wens */
  max-width: 80%;
  height: auto;
  border-radius: 8px;
}

/* Foto onder de kolommen */
.contact-photo {
  margin-top: 20px;
  text-align: center;
}

.contact-photo img {
  max-width: 450px;  /* kleiner dan 600px */
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 2px solid #f0f0f0;
}

/*toegevoegd 1-3-2026 */

/* Extra vakantievakjes onder contact */
/* Vakanties in één roze vak */
.vakantie-box {
  background-color: #faf1f2; /* lichtroze */
  border: 2px solid #f0f0f0;
  border-radius: 8px;
  padding: 20px;
  max-width: 1200px;  /* gelijk aan andere secties */
  margin: 30px auto;  /* centreer het vak */
  text-align: left;
  color: #666;
}

.vakantie-box h3 {
  font-size: 22px;   /* zelfde als .contact-item h3 */
  margin-bottom: 15px;
  color: #666;
}

.vakantie-box p {
  font-size: 20px;      /* dezelfde grootte als openingstijden */
  line-height: 1.5;     /* zelfde regelhoogte */
  margin: 0 0 15px 0;   /* vergelijkbare marge tussen regels */
  color: #666;          /* zelfde kleur */
}




/*toegevoegd 1-3-2026*/ 