/* ===== MODERNE FOOTER ===== */
.main-footer {
  background: #232323;
  border-top: 2px solid #b79669;
  padding: 0;
  margin-top: 60px;
  font-family: 'Poppins', sans-serif;
  color: #f5e9d6;
  box-shadow: 0 -2px 24px rgba(44,30,19,0.18);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 38px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}
.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 2px solid #b79669;
  background: #fff;
  box-shadow: 0 2px 8px rgba(183,150,105,0.10);
}
.footer-title {
  font-family: 'WonderCraft';
  font-size: 2rem;
  color: #f5e9d6;
  letter-spacing: -1px;
}
.footer-socials {
  display: flex;
  gap: 18px;
  margin: 8px 0 0 0;
}
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #3a2a1a;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #b79669;
  box-shadow: 0 2px 8px rgba(44,30,19,0.18);
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.footer-socials a:hover {
  box-shadow: 0 6px 18px rgba(183,150,105,0.18);
  border-color: #d6b17c;
  transform: translateY(-3px) scale(1.07);
}
.footer-socials img {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin: 10px 0 0 0;
}
.footer-links a {
  color: #f5e9d6;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #b79669;
  text-decoration: underline;
}
.footer-meta {
  margin-top: 10px;
  font-size: 0.98rem;
  color: #e2d2b8;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-disclaimer {
  font-size: 0.92rem;
  color: #b79669;
}
@media (max-width: 700px) {
  .footer-inner {
    padding: 28px 4vw 12px 4vw;
    gap: 12px;
  }
  .footer-title {
    font-size: 1.3rem;
    color: #f5e9d6;
  }
  .footer-logo {
    width: 36px;
    height: 36px;
  }
  .footer-socials a {
    width: 36px;
    height: 36px;
    background: #3a2a1a;
  }
  .footer-socials img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
  }
  .footer-links {
    gap: 10px;
    font-size: 0.95rem;
  }
}
.terug-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #b79669;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.terug-button:hover {
  background-color: #b79669;
  transform: translateY(-2px);
}

/* Socials */
.socials {
  margin: 20px 0;
  display: flex;
  gap: 18px;
  justify-content: center;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #b79669;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.socials img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

.socials a:hover {
  transform: translateY(-5px);
  background-color: #a88452;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
}

.social-icons {
  margin-top: 35px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-icon {
  width: 55px;
  height: 55px;
  background-color: #b79669;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.social-icon img {
  width: 24px;
  height: 24px;
  filter: invert(100%);
}

.social-icon:hover {
  transform: translateY(-6px) rotate(5deg);
  background-color: #a88354;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Contactformulier container */
.contact-form {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.contact-form label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #4a3b29;
  margin-bottom: 4px;
  text-align: left;
}

.contact-form input,
.contact-form textarea {
  padding: 14px 16px;
  border: 1px solid #d6c8b0;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 1em;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #b79669;
  box-shadow: 0 0 0 3px rgba(183, 150, 105, 0.15);
}

/* Verstuurknop */
.contact-form button {
  background: linear-gradient(90deg, #b79669, #a88550);
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.contact-form button:hover {
  background: linear-gradient(90deg, #c5a670, #b79669);
  transform: translateY(-2px);
}

.bedankt-button {
  display: inline-block;
  background-color: #b79669;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.bedankt-button:hover {
  background-color: #a28258;
}

#moving-image {
  transition: transform 0.15s ease-out;
  will-change: transform;
  cursor: pointer;
}

/* Beta-label */
.beta-label {
  display: inline-block;
  margin-top: 24px;
  padding: 10px 22px;
  background-color: #b79669;
  color: white;
  font-weight: 600;
  font-size: 1em;
  border-radius: 12px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  animation: pulse 2s infinite ease-in-out;
}

/* Basis button stijl */
.button {
  display: inline-block;
  background-color: #b79669;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  font-size: 1em;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #a88452;
}

/* Extra accent voor 'gouden' knoppen */
.button.gold {
  background-color: #d6b17c;
}

.button.gold:hover {
  background-color: #c59c5f;
}

.maintenance-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #f4f4f4;
  color: #222;
}

.maintenance-content {
  max-width: 700px;
  margin: 0 auto;
}

.maintenance-icon {
  width: 120px;
  margin-bottom: 30px;
}

.maintenance-section h1 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #b79669;
}

.maintenance-section p {
  font-size: 1.1em;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .contact-form {
    width: 100%;
    padding: 20px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    max-width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
  }

  .social-icon {
    width: 45px;
    height: 45px;
  }

}