/* Algemene stijl */
body {
  font-family: Arial, sans-serif;
  font-stretch: 1% 500%;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
  background: #fffaf5;
  /*font-size: min(3vw, 40px);*/
  font-size: 1rem;
}


.container {
  width: 70%;
  margin: auto;
  /*padding: 2rem;*/
  padding: 0%;
  
}


/* Header definition */
.site-header {
  background: #794532;
  color: white;
  /*padding: 2vw;*/ /* schaalbare padding */
  margin-top: 1rem;
}

.header-container {
  /* max-width: 800px; */
  width: 70%;
  align-items: center;
  /* justify-content: flex-start; */
  /*gap: 2vw; afstand schaalt mee met schermbreedte */
  display: flex;
  /*align-items: center;*/
  justify-content: left;
  /*gap: 2vw;*/
  flex-wrap: nowrap;
  text-align: left;
  margin: auto;
  color: white;
  padding: 2%;
}

.header-logo {
  /*width: clamp(20px, 200px, 800px); /* min: 60px, max: 160px */
  height: auto;
  width: 11%;
  display: block;
  /* margin: 5%; */
  margin: 0% 0% 2% 12%;
}

.header-text {
  /*max-width: 400px;*/
  /*margin: 1 rem; */
  width: 50%;
  /*border: 2px;*/
}

.header-text h1 {
  padding: 0%;
  font-size: 7vw;
  /*font-size: clamp(1.2rem, 10vw, 12.5rem);*/		/*clamp(min, val, max)*/
  /*color: #333;*/
  margin: 0;
  line-height: 5vw;
  text-align: center;
 }

.header-text p {
  /*font-size: clamp(0.8rem, 1.5vw, 1.2rem);*/
  /* color: #333; */
  text-align: center;
  margin: auto;
  font-size: 2.6vw;
  
/*  font-stretch: ultra-expanded;*/
  
}


/* Header definition */


#welcome img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: auto;
  /*border-radius: 8px;*/
  border-radius: 1% /2.5%;
}

.welcome-photo123 {
/*	margin: 0.5rem;
	max-width: 100%;
	max-height: 100%;
	border-radius: 8px;*/
	
/*	overflow: hidden;*/
/*	overflow: hidden;*/
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	/*object-fit: contain;*/
	max-width: 100%;   /* make sure it never exceeds the container width */
	height: auto;      /* keep correct aspect ratio */			
	display: block;    /* remove bottom whitespace under inline images */
	margin: 1rem auto; /* optional: centers the image inside the container */
	border-radius: 8px; /* optional: smooth corners */
}

/* Header met logo */
/*
.site-header {
  background: #794532;
  text-align: center;
  padding: 1rem 1rem;
  margin: 1rem 0;
}

.logo-container img {
  max-width: 1200px; /* logo schaalbaar *//*
  width: 100%;
  height: auto;
}*/

/* Secties */
section {
  margin: 2rem 0;
}

h2 {
  color: #5e3325; /* donkerdere tint van de huiskleur */
  margin-bottom: 1rem;
}




.service-list {
  list-style: none;   /* bolletjes weghalen */
  padding: 0;
  margin: 0;
}

.service-item {
  background: #e6d3ca;
  border-radius: 8px;
  margin: 0.8rem 0;
  padding: 0.8rem 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  color: #333;
}

.service-item strong {
  color: #794532;
  /*display: block;*/
  /*margin-bottom: 0.4rem;*/
  font-weight: bold;
}

.service-item subtitle {
  color: #333;
  display: block;
  /*margin-bottom: 0.4rem;*/
  /*margin: 0.8rem; */
  font-weight: bold;
}







/*
.services-list {
  list-style: none;
  padding: 0;
}

.services-list li {
  background: #e6d3ca;
  margin: 0.5rem 0;
  padding: 0.8rem;
  border-radius: 8px;
}
*/


/* Uitklapbare massages */
.service-item {
  background: #e6d3ca;
  border-radius: 8px;
  margin: 0.8rem 0;
  padding: 0.8rem 1rem;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.service-item summary {
  font-weight: bold;
  color: #794532;
  list-style: none; /* standaard driehoekje weghalen */
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.service-item summary::after {
  content: "+";
  font-size: 1.2rem;
  color: #794532;
  font-weight: bold;
}

.service-item[open] summary::after {
  content: "–"; /* min teken */
}

.service-item[open] {
  background: #f1e3dc;
}

.service-item p {
  margin: 0.8rem 0 0;
  color: #333;
  font-weight: normal;
}

/* Knoppen */
.btn {
  display: inline-block;
  background: #794532;
  color: white;
  padding: 0.7rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background: #5e3325;
}

/* Google Maps */
.map {
  margin-top: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}


/* Over de masseur */
.about-section {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  /*max-width: 800px;       */ /* same width as other sections */
  margin: 2rem auto;       /* auto centers horizontally */
  text-align: left;        /* keep text readable */
}

.about-photo img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #794532;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.about-text {
  flex: 1;
}

.about-text h2 {
  margin-top: 0;
  color: #5e3325;
}




.contact p {
	text-align: center;
}
/*
#contact {
  padding: 5%;
}
*/
#contact p {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 1rem 0;
}

#contact i.material-icons {
  font-size: 1.4rem;
  color: #794532;
}



/* Footer */
footer {
  background: #404040;
  color: #fffaf5;
/*  background: #f2f2f2; */
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}



@media (max-width: 600px) {
  .about-section {
    flex-direction: column;
    align-items: center;
    /*text-align: center;*/
  }

/*  .about-text {
    text-align: center;
  }*/
}