/* === BEGIN VAN JE CSS === */

/* Algemene reset en standaardinstellingen */

#buttongoud {
  display: none;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Quattrocento, serif;
}

/* Algemene instellingen */
html {
  scroll-behavior: smooth;
}

body {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  margin-left: 50px;
  position: relative;
}

/* Afbeeldingen */

.content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

#welkom .welkom-wrapper,
#contact .contact-wrapper,
#blossom .blossom-wrapper,
#salon .salon-wrapper{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rm;
  flex-wrap: wrap;
}

.image1,
.image2,
.blossompand,
.sharon {
  width: 48%;
  display: flex;
}

.sharon,
.image1,
.image2,
.blossompand {
  order: 2;
  justify-content: flex-start;
  padding-left: 20px;
}

.image2 {
  order: 2;
  justify-content: flex-start;
  padding-left: 10px;
}

/* image2 content slideshow */
.image2 {
  flex: 1;
  max-width: 600px;
  overflow: hidden;
  display: flex;
}

.slideshow-container {
  width: 100%;
  aspect-ratio: 4 / 3;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.slide {
  display: none;
  width: 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.fade {
  animation-name: fade;
  animation-duration: 1s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

/* Navigatiepijlen */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 90%;
  transform: translateY(-60%);
  padding: 12px;
  color: #fff;
  font-weight: bold;
  font-size: 5px;
  user-select: none;
  background: #0b0a48;
  border-radius: 50%;
  transition: background 0.3s;
}

.next {
  right: 10px;
}

.prev {
  left: 10px;
}

.prev:hover,
.next:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* Dots */
.dots {
  text-align: center;
  position: absolute;
  bottom: 10px;
  width: 100%;
  color: gold;
}

.dot {
  cursor: pointer;
  height: 5px;
  width: 5px;
  margin: 0 3px;
  background-color: #ffd700;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s;
}

.active,
.dot:hover {
  background-color: #717171;
}

/* image2 content end code slideshow */

.image2 {
  justify-content: flex-start;
  padding-right: 20px;
}

.image img,
.image1 img {
  width: 50%;
  height: 50%;
  border-radius: 100%;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.blossompand img {
  width: 60%;
  height: 60%;
  border-radius: 40px;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.sharon img {
  width: 45%;
  height: 20%;
  border-radius: 40px;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
  border-radius: 30px;
}

/* Zijbalk en randen */
.left-border {
  position: fixed;
  top: 0;
  left: 0;
  width: 60px;
  height: 100vh;
  background-color: #0b0a48;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  border-right: 5px solid #d4af37;
  z-index: 998;
}

/* Header en navigatie */
header {
  position: sticky;
  top: 0;
  background-color: #0b0a48;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  border-radius: 0 0 30px 30px;
  border-bottom: 5px solid #d4af37;
  margin-left: -60px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  z-index: 1000;
}

nav ul {
  display: flex;
  gap: 25px;
}

nav li {
  list-style: none;
}

nav a {
  font-size: 14px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}

.menu-toggle span {
  height: 5px;
  width: 30px;
  background: gold;
  margin: 2px 0;
}

nav.active {
  display: flex;
}
/* Logo */
.logo {
  position: fixed;
  top: 8px;
  left: 8px;
  width: 180px;
  z-index: 1001;
  pointer-events: none;
}

/* Content en secties */
section {
  margin-bottom: 75px;
}

.content {
  padding: 50px 30px 150px 150px;
}

.text {
  width: 48%;
  padding-right: 20px;
}

/* Welkom + Afspraak */
#welkom,
#afspraak,
#contact,
#blossom {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #0b0a48;
  padding: 0px 0px;
  z-index: 1;
}

#afspraak .afspraak-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

/* ✅ Correcte desktopvolgorde */
.afspraak-wrapper .image2 {
  flex: 1 1 20%;
  order: 1;
}

.afspraak-wrapper .text {
  flex: 1 1 45%;
  order: 2;
}

#afspraak #wahanda-online-booking-widget-iframe {
  flex: 1 1 100%;
  order: 3;
}

/* Info en contact */

/* Basis layout */
.info-columns,
.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

/* Info blokken */
.info-box {
  flex: 1 1 40%;
  max-width: 40%;
  background-color: rgba(0, 20, 60, 0.6); /* donkerblauw met 60% dekking */
  padding: 1rem;
  border-left: 2px solid #D4AF37;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  box-sizing: border-box;
  color: #0B0A48; /* witte tekst voor contrast */
}

/* --- Contact sectie --- */
.contact-header {
  text-align: left;
  margin-bottom: 15px;
}

.info-columns {
  display: flex;
  justify-content: left;
  gap: 40px;
  flex-wrap: wrap;
}

.info-box {
  background: #ffff;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.info-box h3 {
  color: #D4AF37;
  margin-bottom: 10px;
}

/* --- Contactformulier --- */
.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}

.contact-form form {

  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.contact-form button {
  background-color: #D4AF37;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

.contact-form button:hover {
  background-color: #c19b35;
}

/* --- Map --- */
.map iframe {
  border-radius: 30px;
  width: 100%;
  max-width: 600px;
  height: 400px;
}

/* Tijden*/
.uren-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 16px; /* rij en kolom afstand */
  max-width: 500px; /* aanpassen naar wat bij je design past */
}

.dag {
  font-weight: bold;
}

.tijd {
  text-align: right;
}

.uren-lijst li {
  display: flex;
  justify-content: space-between;
  max-width: 400px; /* of wat bij je ontwerp past */
}

.link-clean {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 48px;
  min-height: 48px;
  padding: 8px 12px;
  text-decoration: none;
  font-size: 1rem;
  color: inherit;
  border-radius: 6px;
  transition: background-color 0.3s;
}

.link-clean:hover {
  background-color: rgba(212, 175, 55, 0.1); /* zachte highlight */
}

.link-clean svg {
  margin-right: 8px;
  flex-shrink: 0;
}

/* Formulieren */
form {
  width: 100%;
  max-width: 295px;
}

form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  background-color: #0B0A48;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

form button:hover {
  background-color: #333;
}

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

.contact-form input,
.contact-form textarea {
  margin-bottom: 5px;
  padding: 10px;
  font-size: 1rem;
}

.contact-form button {
  padding: 10px;
  font-size: 1rem;
  cursor: pointer;
}

/* Knop styling - pas deze aan naar wens */
        .treatwell-widget-button {
            display: inline-block;
            padding: 10px 20px;
            font-size: 16px;
            font-weight: bold;
            color: #fff;
            background-color: #ff6600;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            text-decoration: none;
            transition: background-color 0.3s ease;
        }
		
.treatwell-widget-button:hover {
  background-color: #e65c00;
}

  /* Widget container styling */
        #wahanda-online-booking-widget-iframe {
            margin-top: 20px;
            width: 100%;
            max-width: 100vw; /* Pas de breedte aan indien nodig */
            height: 740px; /* Pas de hoogte aan indien nodig */
            border: 1px solid #ddd;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        }
		

 /* Privacy sectie styling overall pagina */
    /* ====== Extra pagina-secties ====== */
    
	.Privacy-wrapper .text {
  width: 100%;
  padding-right: 20px;
}
	
	#privacy, #salon {
      display: none;
      opacity: 0;
      transition: opacity 0.6s ease;
	  padding: 0px 0px;
      z-index: 1;
      max-width: 100%;
      margin: 0 auto;
      line-height: 1.1;
      color: #0B0A48;
	  background-color: #fff; /* ← Voeg dit toe */
    }
	
ul {
  margin-left: 10px;
  padding-left: 10px;
}


    #privacy.active, #salon.active {
      display: block;
      opacity: 1;
      animation: fadeIn 0.3s ease;
    }

    #privacy h2, #salon h2 {
      font-family: 'Quattrocento', serif;
      font-size: 16px;
      margin-bottom: 1rem;
      color: #0B0A48;
      text-align: left;
    }
	
	 #privacy h3, #salon h3 {
      font-family: 'Quattrocento', serif;
      font-size: 14px;
      margin-bottom: 1rem;
      color: #0B0A48;
      text-align: left;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    #privacy button, #salon button {
      display: block;
      margin: 2rem auto 0;
      background-color: #d4af37;
      color: white;
      border: none;
      padding: 0.7rem 1.5rem;
      border-radius: 8px;
      font-size: 1rem;
      cursor: pointer;
    }

    #privacy button:hover, #salon button:hover {
      background-color: #b9952f;
    }

/* Privacy sectie styling overall pagina end */
 
/* -------- Responsive Layouts -------- */
/* -------- Mobiel & tablet -------- */
/* Alleen zichtbaar op schermen kleiner dan 1024px */

@media (max-width: 1024px) {
  
   .welkom-wrapper {
    margin-top: 30px;
    gap: 20px;
    flex-direction: column;
  }
  
  .text, .content, .contact-form .container {
    padding: 15px;
  }

  .salon-wrapper {
    margin-top: 38px;
    gap: 20px;
    flex-direction: column;
  }
  
    .privacy-wrapper {
    margin-top: 38px;
    gap: 30px;
    flex-direction: column;
  }
  
  .prev,
.next {
	display:none;
	
  }
  
   .container {
    width: 100%;
    margin-left: 15px;
    padding-left: 15px;
  }
  
   header {
    position: sticky;
    top: 0;
    background-color: #0B0A48;
    height: 60px;
    display: flex;
    z-index: 1000;
    border-radius: 0 0 30px 30px;
    margin-left: -40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  .afspraak-wrapper {
    flex-direction: column;
	
  }

  .afspraak-wrapper .text {
    order: 1;
  }
  
  .afspraak-wrapper .image2 {
  flex: 1 1 45%;
  order: 1;
}

  .content-wrapper,
  .contact-wrapper,
  .info-columns {
    flex-direction: column;
    gap: 10px;
  }

  .image img,
  .image1 img,
  .image2 img {
     width: 100%;
    height: 100%;
    border-radius: 30px;
    object-fit: cover;
  }
 
.blossompand img {
  width: 90%;
  height: 90%;
  border-radius: 40px;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
 }
	
.sharon img {
  width: 70%;
  height: 70%;
  border-radius: 40px;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

  .map iframe {
    height: 250px;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form button {
    font-size: 1rem;
  }

  .logo {
    top: 4px;
    left: 4px;
    width: 100px;
  }

  nav a {
    font-size: 16px;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
  }
  
   #nav {
    display: none;
    position: relative;
    top: 105px;
    right: 30px;
    background: #0B0A48;
    text-align: left;
    z-index: 1000;
	border-radius:30px;
  }

  #nav.active {
    display: flex;
    flex-direction: column;
    align-items: right;
    padding: 0px 0;
	border-radius:30px;
  }
  
  .menu-toggle {
    display: flex;
    width: 15px;
    flex-direction: column;
    position: absolute;
    right: 25px;
    top: 10px;
    cursor: pointer;
  }

  .menu-toggle span {
    height: 2px;
    width: 100%;
    background: gold;
    margin: 4px 0;
  }
  
  form {
    width: 100%;
    max-width: none;
  }

  .left-border {
    width: 60px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
  }

  .image1 img {
    width: 75%;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
  }

  #contact .contact-wrapper {
    flex-direction: column;
  }

  .contact-form {
    order: 1;
  }

  .info-box.map {
    order: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .info-box.map iframe {
    width: 100%;
    height: 100%;
    border-radius: 0px;
  }
  
  .info-box,
.text,
.content,
.contact-form,
.review-form,
.openingstijden {
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

  .info-box.map iframe {
    width: 85%;
    height: auto;
    border-radius: 30px;
  }

.info-box {
  flex: 0 0 auto;
    display: inline-block;
    width: auto;
    max-width: 95%;
    height: auto;
    margin: 0  0.5rem;
    padding: 10px;
    box-sizing: border-box;
  }
 
#buttongoud {
  height: 40px; /* verhoogd voor betere tekstweergave */
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 5px;
  bottom: 5px;
  right: 50px;
  background-color: #0B0A48;
  color: #0B0A48;
  font-weight: bold;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  text-decoration: none;
  text-align: center;
  font-family: 'Quattrocento', serif;
  padding: 0 10px; /* optioneel, voor wat horizontale ruimte */
}
}

@media (max-width: 767px) {
	  .privacy-wrapper {
    margin-top: 38px;
    gap: 30px;
    flex-direction: column;
  }
	
  .text, .content, .contact-form .container {
    padding: 15px;
  }

  .welkom-wrapper {
    margin-top: 38px;
    gap: 20px;
    flex-direction: column;
  }
  
  .prev,
.next {
	display:none;
	
  }
  
   .container {
    width: 100%;
    margin-left: 10px;
    padding-left: 10px;
  }
  
   header {
    position: sticky;
    top: 0;
    background-color: #0B0A48;
    height: 60px;
    display: flex;
    z-index: 1000;
    border-radius: 0 0 30px 30px;
    margin-left: -40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  .afspraak-wrapper {
    flex-direction: column;
	
  }

  .afspraak-wrapper .text {
    order: 1;
  }
  
  .afspraak-wrapper .image2 {
  flex: 1 1 45%;
  order: 2;
}

  .content-wrapper,
  .contact-wrapper,
  .info-columns {
    flex-direction: column;
    gap: 10px;
  }

  .image img,
  .image1 img,
  .image2 img {
     width: 100%;
    height: 100%;
    border-radius: 30px;
    object-fit: cover;
  }

  .map iframe {
    height: 250px;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form button {
    font-size: 1rem;
  }

  .logo {
    top: 4px;
    left: 4px;
    width: 100px;
  }

  nav a {
    font-size: 16px;
	
  }
  
#nav ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
gap: 15px;
width: 100%;
}

#nav ul li {
width: 100%;
}
  
   #nav {
display: none;
position: absolute;
top: 60px;
right: 0;
width: 100%;
background: #0B0A48;
border-radius: 0 0 20px 20px;
padding: 20px 0;
z-index: 1000;
}

#nav.active {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px 0px;
	border-radius:30px;
	width: 100%;
	padding-left: 150px;
  }
  
  
  .menu-toggle {
    display: flex;
    width: 15px;
    flex-direction: column;
    position: absolute;
    right: 25px;
    top: 10px;
    cursor: pointer;
  }

  .menu-toggle span {
    height: 2px;
    width: 100%;
    background: gold;
    margin: 4px 0;
  }
  

  form {
    width: 100%;
    max-width: none;
  }

  .left-border {
    width: 40px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
  }

  .image1 img {
    width: 75%;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
  }

  #contact .contact-wrapper {
    flex-direction: column;
  }

  .contact-form {
    order: 1;
  }

  .info-box.map {
    order: 2;
    width: 100%;
	height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .info-box.map iframe {
    width: 100%%;
    height: 100%;
    border-radius: 0px;
  }
  
  .info-box,
.text,
.content,
.contact-form,
.review-form,
.openingstijden {
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

  .info-box.map iframe {
    width: 100%;
    height: 100%;
    border-radius: 30px;
  }

.info-box {
  flex: 0 0 auto;
    display: inline-block;
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 0  0.5rem;
    padding: 10px;
    box-sizing: border-box;
  }
 
#buttongoud {
  height: 40px; /* verhoogd voor betere tekstweergave */
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 5px;
  bottom: 5px;
  right: 50px;
  background-color: #0B0A48;
  color: #0B0A48;
  font-weight: bold;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  text-decoration: none;
  text-align: center;
  font-family: 'Quattrocento', serif;
  padding: 0 10px; /* optioneel, voor wat horizontale ruimte */
}
}

/* Alleen zichtbaar op schermen kleiner dan 540px */
@media (max-width: 540px) {
	  
	  .Privacy-wrapper {
    width: 100%;
    margin-left: 10px;
    padding-left: 10px;
	padding-top: 50px;
    gap: 30px;
    flex-direction: column;
  }
	
  .afspraak-wrapper .image2 {
    flex: 1 1 100%;
    order: 2;
  }

  .welkom-wrapper {
    flex-direction: column;
    margin-top: 38px;
    gap: 20px;
  }
  
  .prev,
.next {
	display:none;
	
  }

  .container {
    width: 100%;
    margin-left: 15px;
    padding-left: 15px;
  }

  header {
    position: sticky;
    top: 0;
    background-color: #0B0A48;
    height: 60px;
    display: flex;
    z-index: 1000;
    border-radius: 0 0 30px 30px;
    margin-left: -40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .info-box.map iframe {
    width: 90%;
    height: auto;
    border-radius: 15px;
  }

 .image2 img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    object-fit: cover;
  }
  
   .slideshow-container {
    flex: 1 1 45%;
  order: 2;
  
  }

  .logo {
    width: 120px;
  }

  .menu-toggle {
    display: flex;
    width: 15px;
    flex-direction: column;
    position: absolute;
    right: 25px;
    top: 10px;
    cursor: pointer;
  }

  .menu-toggle span {
    height: 2px;
    width: 100%;
    background: gold;
    margin: 4px 0;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
  }

  nav a {
    font-size: 14px;
  }
  
   .menu-toggle { 
    display: flex; 
    flex-direction: column; 
    cursor: pointer;
  }

  
  #nav.active {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px 0px;
	border-radius:30px;
	width: 100%;
	padding-left: 180px;
  }

  .image,
  .image1,
  .image2 {
    width: 80%;
	height:80%;
  }
  
  .text  {
    width: 100%;
	height:100%;
  }
  
  .info-row {
    flex-direction: column;
  }

  .info-box,
  .text,
  .content,
  .contact-form,
  .review-form,
  .recensie,
  .openingstijden {
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }

  .info-box {
    flex: 0 0 auto;
    display: inline-block;
    width: auto;
    max-width: 95%;
    height: auto;
    margin: 0 0.5rem;
    padding: 15px;
    box-sizing: border-box;
  }

  .left-border {
    width: 40px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
  }

  body {
    width: 100%;
    margin-left: 0;
    padding-left: 0;
  }

  .contact-header h2,
  .contact-header p {
    font-size: 16px;
  }

  .wahanda-online-booking-widget-iframe {
    width: 100%;
    height: 100%;
    max-width: 100vw;
    max-height: 100vw;
  }

  #buttongoud {
    height: 40px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 5px;
    right: 60px;
    background-color: #0B0A48;
    color: #0B0A48;
    font-weight: bold;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    text-decoration: none;
    text-align: center;
    font-family: 'Quattrocento', serif;
    padding: 0 10px;
  }
  
  /* --- BLOSSOMPAND fix --- */
  .blossompand {
    width: 95%;
    background: none !important; /* verwijdert witte achtergrond */
    box-shadow: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .blossompand img {
    width: 95%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    background: transparent !important;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
  }
	
	.sharon {
    width: 95%;
    background: none !important; /* verwijdert witte achtergrond */
    box-shadow: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }

.sharon img {
  width: 90%;
  height: 90%;
  border-radius: 40px;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}
}



/* Alleen zichtbaar op schermen kleiner dan 480px */
@media (max-width: 480px) {

  .Privacy-wrapper {
    margin-top: 50px;
    margin-bottom: 20px;
    text-align: left;
  }


/* --- BLOSSOMPAND fix --- */
  .blossompand {
    width: 95%;
    background: none !important; /* verwijdert witte achtergrond */
    box-shadow: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .blossompand img {
    width: 95%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    background: transparent !important;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
  }
	
	.sharon {
    width: 95%;
    background: none !important; /* verwijdert witte achtergrond */
    box-shadow: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }

.sharon img {
  width: 80%;
  height: 90%;
  border-radius: 40px;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

  .afspraak-wrapper .image2 {
    flex: 1 1 100%;
    order: 2;
  }
  
  .prev,
.next {
	display:none;
	
  }

  .container {
    width: 100%;
    margin-left: 10px;
    padding-left: 10px;
  }

  header {
    position: sticky;
    top: 0;
    background-color: #0B0A48;
    height: 60px;
    display: flex;
    z-index: 1000;
    border-radius: 0 0 30px 30px;
    margin-left: -40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .info-box.map iframe {
    width: 90%;
    height: auto;
    border-radius: 15px;
  }

 .image2 img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    object-fit: cover;
  }
  
   .slideshow-container {
    flex: 1 1 45%;
  order: 2;
  
  }

  .logo {
    width: 120px;
  }

  .menu-toggle {
    display: flex;
    width: 100%;
    flex-direction: column;
    position: absolute;
    right: 25px;
    top: 10px;
    cursor: pointer;
  }

  .menu-toggle span {
    height: 2px;
    width: 100%;
    background: gold;
    margin: 4px 0;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
  }

  nav a {
    font-size: 14px;
  
  }
  
     #nav {
    display: none;
    position: relative;
    top: 105px;
    right: 30px;
    background: #0B0A48;
    text-align: left;
    z-index: 1000;
	border-radius:30px;
	
  }

  #nav.active {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px 0px;
	border-radius:30px;
	width: 100%;
	padding-left: 180px;
  }
  
  
  .menu-toggle {
    display: flex;
    width: 15px;
    flex-direction: column;
    position: absolute;
    right: 25px;
    top: 10px;
    cursor: pointer;
  }

  .menu-toggle span {
    height: 2px;
    width: 100%;
    background: gold;
    margin: 4px 0;
  }

  .text,
  .image,
  .image1,
  .image2 {
    width: 100%;
  }

  .image1 {
    margin-top: 1rem;
  }

  .info-row {
    flex-direction: column;
  }

  .info-box,
  .text,
  .content,
  .contact-form,
  .review-form,
  .recensie,
  .openingstijden {
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }

  .info-box {
    flex: 0 0 auto;
    display: inline-block;
    width: auto;
    max-width: 95%;
    height: auto;
    margin: 0 0.5rem;
    padding: 15px;
    box-sizing: border-box;
  }

  .left-border {
    width: 40px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
  }

  body {
    width: 100%;
    margin-left: 0;
    padding-left: 0;
  }

  .contact-header h2,
  .contact-header p {
    font-size: 16px;
  }

  .wahanda-online-booking-widget-iframe {
    width: 100%;
    height: 100%;
    max-width: 100vw;
    max-height: 100vw;
  }

  #buttongoud {
    height: 40px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 5px;
    right: 60px;
    background-color: #0B0A48;
    color: #0B0A48;
    font-weight: bold;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    text-decoration: none;
    text-align: center;
    font-family: 'Quattrocento', serif;
    padding: 0 10px;
  }
}

/* -------- Zeer kleine schermen minder dan 380px-------- */
@media (max-width: 380px) {
    .welkom-wrapper {
    margin-top: 10px;
    margin-bottom: 20px;
    text-align: left;
  }
  
    .Privacy-wrapper {
    margin-top: 10px;
    margin-bottom: 20px;
    text-align: left;
  }
  
  #nav.active {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px 0px;
	border-radius:30px;
	width: 100%;
	padding-left: 130px;
  }
  
.prev,
.next {
	display:none;
	
  }
   .container {
    width: 100%;
    margin-left: 10px;
    padding-left: 10px;
  }
  
   header {
    position: sticky;
    top: 1px;
	bottom: 1px;
    background-color: #0B0A48;
    height: 60px;
    display: flex;
    z-index: 1000;
    border-radius: 0 0 30px 30px;
    margin-left: -40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  .info-box.map iframe {
    width: auto;
    height: auto;
    border-radius: 30px;
  }

  .image2 img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    object-fit: cover;
  }
  
  /* --- BLOSSOMPAND fix --- */
  .blossompand {
    width: 95%;
    background: none !important; /* verwijdert witte achtergrond */
    box-shadow: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .blossompand img {
    width: 95%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    background: transparent !important;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
  }
	
	.sharon {
    width: 95%;
    background: none !important; /* verwijdert witte achtergrond */
    box-shadow: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }

.sharon img {
  width: 80%;
  height: 90%;
  border-radius: 40px;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}
  
   .slideshow-container {
    flex: 1 1 45%;
  order: 2;
  
  }

  .logo {
    width: 80px;
  }

  .menu-toggle span {
    width: 8px;
  }

  nav a {
    font-size: 14px;
  }

  .info-box {
    padding: 15px;
	
  }

  .contact-header h2,
  .contact-header p {
    font-size: 16px;
  }
  
  .info-box,
.text,
.content,
.contact-form,
.review-form,
.recensie
.openingstijden {
  padding-left: 15px;
  padding-right: 10px;
  box-sizing: border-box;
}

.info-box {
    flex: 0 0 95%;
    display: inline-block;
    width: 95%;
    max-width: 95%;
    height: auto;
    margin: 0  0.5rem;
    padding: 15px;
    box-sizing: border-box;
}
  
  .info-box,
  .text,
  .content,
  .contact-form,
  .review-form,
  .recensie
  .openingstijden{
    padding-left: 25px;
    padding-right: 15px;
  }
  

#buttongoud {
  Margin-top:5px;
  height: 30px; /* verhoogd voor betere tekstweergave */
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 5px;
  bottom: 5px;
  right: 50px;
  background-color: #0B0A48;
  Border-radius: 30px;
  color: #0B0A48;
  font-weight: bold;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  text-decoration: none;
  text-align: center;
  font-family: 'Quattrocento', serif;
  padding: 0 10px; /* optioneel, voor wat horizontale ruimte */
}
}

