/* 🔧 Algemene instellingen */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #D8f9ff;
  color: black;
  overflow-x: hidden;
}

.standaard {
  text-align: left;
}

h1, h2 {
  text-align: center;
  background-color: #14A0A9;
  color: white;
  padding: 10px;
  border-radius: 8px;
  margin: 20px auto;
  width: 100%;
}

.centered-text-box {
  text-align: left;
}

.my-box {
  font-size: 1.1em;
  color: #333;
  max-width: 1260px;
  margin: 15px auto;
  background-color: #e6f9fa;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid #14A0A9;
}

.centered-text-box ul {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}

.centered-text-box ul ul {
  padding-left: 20px;
}

.centered-text-box li {
  margin-bottom: 0.5em;
}

.container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.container img {
  max-width: 40%;
  max-height: 600px;
}

.image-left {
  flex-direction: row;
}

.image-right {
  flex-direction: row-reverse;
}

.image1260 {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.image1260 img {
  width: 100%;
  height: auto;
  display: block;
}

.textbox {
  flex: 1;
  text-align: left;
}

.p1-container {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.p1-box {
  flex: 1 1 calc(20% - 20px); /* 4 kolommen met ruimte ertussen */
  max-width: 300px;
  background-color: #FFFEEF;
  border: 1px solid #14A0A9;
  border-radius: 12px;
  padding: 20px;
  margin: 0px;
  box-sizing: border-box;
}

/* 🧱 HEADER */
.grid-header {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: #14A0A9;
  padding: 0px;
}

.logo-container {
  flex: 0 0 auto;
}

.logo {
  width: auto;
  height: 150px;
  object-fit: contain;
}

.header-content {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  gap: 20px;
  padding-top: 25px;
  width: max-content;
  text-align: center;
}

.welkom-menu-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.welkom {
  font-size: 32px;
  margin: 0;
  white-space: nowrap;
}

.hamburger-menu {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 6px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.nav-links a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

/* 🖼️ IMAGE MENU */
.image-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.image-box {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  border-radius: 30px;
  align-items: center;
  justify-content: center;
  flex: 1 1 calc(25% - 40px);
  max-width: 300px;
  aspect-ratio: 4 / 2.5;
  text-decoration: none;
  overflow: hidden;
  color: inherit;
  padding: 0;
  margin: 0;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(70%);
  transition: transform 0.3s ease;
}

.image-box:hover img {
  transform: scale(1.05);
}

.overlay-text {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.8em;
  font-weight: bold;
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  white-space: nowrap;
  z-index: 2;
}

/* 📍 FOOTER */
footer {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: transparent;
}

.adresbalk {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
}

.footer-content {
  position: absolute;
  bottom: 40px;
  left: 40px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 40px 20px;
  color: white;
  gap: 20px;
  box-sizing: border-box;
}

.footer-column {
  flex: 1 1 calc(25% - 20px);
  min-width: 200px;
  text-align: center;
}

.footer-column h3 {
  margin-top: 0;
  font-size: 1.2em;
  color: white;
}

.footer-column p,
.footer-column ul {
  font-size: 0.95em;
  margin: 10px 0 0;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #14A0A9;
}

/* 📣 Social media iconen */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 10px 0;
}

.social-icons a img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

.social-icons a:hover img {
  transform: scale(1.1);
}

/* 🐶 TARIEVEN TABEL */
.price-table-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin: 60px auto;
  max-width: 1260px;
  padding: 20px;
}

.price-table {
  flex: 1 1 500px;
  max-width: 400px;
  min-width: 300px;
  background-color: #e6f9fa;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #14A0A9;
  padding: 20px;
  box-sizing: border-box;
  margin: 0 auto;
}

#prijstabel {
  width: 100%;
  border-collapse: collapse;
}

#prijstabel th,
#prijstabel td {
  padding: 12px 15px;
  border-bottom: 1px solid #b3e4e7;
  text-align: left;
  width: 50%;
}

#prijstabel thead th[colspan="2"] {
  background-color: #14A0A9;
  color: #fff;
  font-weight: bold;
  font-size: 1.2em;
  text-align: center;
  padding: 15px;
  border-radius: 12px;
  border-bottom: 1px solid #b3e4e7;
}

#prijstabel tbody tr {
  transition: background-color 0.3s ease;
}
#prijstabel tbody tr:hover {
  background-color: #d2f1f3;
}

/* 📱 Mobiele weergave */
@media (max-width: 768px) {

  .my-box {
    font-size: 1.1em;
    color: #333;
    max-width: 90%;
    margin: 15px auto;
    background-color: #e6f9fa;
    border-radius: 20px;
    padding: 10px;
    border: 1px solid #14A0A9;
  }

  .container {
    flex-direction: column;
    text-align: center;
  }

  .container img {
    max-width: 100%;
    height: auto;
  }

  .p1-box {
    flex: 1 1 100%;
    max-width: none;
  }

  .welkom-menu-wrapper {
    justify-content: space-between;
    width: 100%;
    padding: 0 16px;
  }

  .header-content {
    align-items: stretch;
    position: static;
    transform: none;
  }

  .grid-header {
    flex-direction: column;
    align-items: center;
    background-color: #14A0A9;
    padding: 0;
  }

  .logo-container {
    padding: 0 16px;
  }

  .logo-container img {
    width: 100%;
    height: auto;
    display: block;
  }

  .welkom {
    font-size: 20px;
  }

  .hamburger-menu {
    display: block;
    font-size: 28px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #14A0A9;
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }

  .nav-links.open {
    display: flex;
  }

  .image-menu {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
  }

  .image-box {
    flex: none;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 4 / 2.5;
    border-radius: 0px;
  }

  .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .footer-content {
    display: block;
  }

  .footer-column {
    display: none;
  }

  .footer-column:nth-child(2) {
    display: block;
    position: relative;
    top: 40px;
    left: 10px;
    width: fit-content;
  }
	
.price-table {
  max-width: 85%;
}
	
.price-table-wrapper {
	max-width: 100%;
	margin: 0 auto;
	padding: 0 0px;
	box-sizing: border-box;
	flex-direction: column;
	align-items: center;
	}

  #prijstabel {
    width: 100%;
    table-layout: fixed;
  }

  #prijstabel th,
  #prijstabel td {
    width: 50%;
    padding: 12px 10px;
    box-sizing: border-box;
  }
}
