/* ===== Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== Basis ===== */
body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: #333; 
}

p {
  font-family: "Montserrat", sans-serif;
}
h1, h2, h3, h4 {
  font-family: "Playfair", serif;
  font-size: 30px;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== Layout ===== */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* ===== Header ===== */
.header {
  position: relative;
  background-image: url('../images/banner1.webp');
  background-size: cover;   
  background-position: center;  
  background-repeat: no-repeat; 
  height: 700px;
  color: #fff;
  background-attachment: fixed; 
  width: 100%;
}

.header .Backgroundwit {
	background: #fff;
	z-index: 2;
	position: relative;
}

/* Overlay */
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
  z-index: 1;
}

/* Banner content boven overlay */
.header .header-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  position: relative;
  z-index: 3;
  max-width: 1100px;
  margin: 0 auto;
}

.header .container .offertebutton {
	display: inline;
	margin-left: 70px;
  color: #1B8AB2;
  transition: 400ms;
} 

.header .container .offertebutton a::after {
	background: none;
}

.header .container .offertebutton {
  margin-left: 70px;
}

.header .container .offertebutton a {
  display: inline-block;       
  padding: 10px 20px;
  background: #fff;
  color: #1B8AB2;
  border: 1px solid #1B8AB2;
  transition: 400ms;
}

.header .container .offertebutton a:hover {
  background: #1B8AB2;
  color: #fff;
}

/* Logo */
.logo {
  font-size: 1.5rem;
  color: #547ebf;
  text-shadow: 2px 2px #111;
}

.logo img {
	max-width: 300px;
  height: 100%;
}

.nav {
	margin-top: 0;
}

.nav a {
  margin-left: 20px;
  color: #000;
  font-size: 18px;
  transition: 400ms;
  position: relative;
  text-decoration: none;
  display: inline-block;
}
.nav a:last-child {
	color: #1B8AB2;
}
.offertebutton a:hover {
  color: #fff; 
}

.nav a:last-child::after {
  color: #fff;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #547ebf;
  transition: width 400ms ease;
}

.nav a.active::after {
  width: 100%;
}

.nav a:hover::after {
  width: 100%;
}

.nav a:active::after {
  width: 100%;
}

/* ===== Banner ===== */
.banner {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.banner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.8;
}

.banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
  z-index: 2;
}

.banner-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 0 20px;
}

.banner-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.banner-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

.banner-content .btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #c9a24d;
  color: #111;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: 0.3s;
}

.banner-content .btn:hover {
  background-color: #b38f3d;
}

/* ===== Hero ===== */
.hero {
  padding: 80px 0px 0px 0px;
  text-align: center;
}

.hero .container {
	background: #fff;
	width: 100%;
	margin-top: -200px;
	z-index: 2;
	position: relative;
  padding: 40px 0;
}

.hero .container img {
	max-width: 410px;
	margin-top: -180px;
}

.hero h1 {
  font-size: 2.5rem;
  color: #1B8AB2;
  padding-bottom: 20px;
}
.hero b {
	color: #333;
	text-decoration: none;
	font-weight: 600;
}

.hero p {
	padding: 10px 0 15px 0;
  max-width: 850px; 
  margin: 0 auto;    
  text-align: center;
}

/* ===== Buttons ===== */
.btn {
	display: inline-block;
	margin-top: 20px;
	padding: 12px 25px;
	background: #fff;
	color: #1B8AB2;
	border: #1B8AB2 1px solid;
    transition: 400ms;
}
.btn:hover {
	background: #1B8AB2;
	color: #fff;
	transition: 400ms;
}

/* fade + kleine slide omhoog) */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.hero h1,
.hero p,
.hero .cta {
  opacity: 0;
  transform: translateY(60px);
}

.hero h1 {
  animation: heroFade 0.8s cubic-bezier(0.22,1,0.36,1) 0.2s forwards;
}

.hero p {
  animation: heroFade 0.8s cubic-bezier(0.22,1,0.36,1) 0.4s forwards;
}

.hero .cta {
  animation: heroFade 0.8s cubic-bezier(0.22,1,0.36,1) 0.6s forwards;
}

@keyframes heroFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Over Ons ===== */
#over-ons .container {
	max-width: 1100px;
	background: #999;
	position: relative;
	background-image: url('../images/img3.webp');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 470px;
  z-index: 1;
  transition: background-color 0.4s ease;  
}

/* ===== li icons ===== */
.over-ons-tekst ul {
  list-style: none; 
  padding-left: 0;
}

.over-ons-tekst ul li {
  position: relative;
  padding-left: 25px; 
  margin-bottom: 10px;
  margin-left: -25px;
}

.over-ons-tekst ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;  
  height: 16px; 
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' height='16' width='16' viewBox='0 0 640 640'><path fill='%231B8AB2' d='M320 576C214 576 128 490 128 384C128 292.8 258.2 109.9 294.6 60.5C300.5 52.5 309.8 48 319.8 48L320.2 48C330.2 48 339.5 52.5 345.4 60.5C381.8 109.9 512 292.8 512 384C512 490 426 576 320 576zM240 376C240 362.7 229.3 352 216 352C202.7 352 192 362.7 192 376C192 451.1 252.9 512 328 512C341.3 512 352 501.3 352 488C352 474.7 341.3 464 328 464C279.4 464 240 424.6 240 376z'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}

#over-ons .container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;      
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9); 
  z-index: 2;    
  transition: background-color 0.4s ease;  
}

#over-ons .container:hover::before {
  background-color: rgba(255, 255, 255, 1);
  transition: background-color 0.4s ease;  
}

.over-ons-tekst {
  z-index: 3;
	position: relative;
	color: #333;
	padding: 30px 0px 0px 40px;
  max-width: 550px;
}

.over-ons-tekst p {
	padding: 10px 0px;
}

#over-ons h2 {
  position: relative; 
  display: inline-block; 
  margin-bottom: 20px; 
}

#over-ons h2::after {
  content: ""; 
  position: absolute;
  left: 0;
  bottom: -7px; 
  width: 100px; 
  height: 3px; 
  background-color: #1B8AB2; 
  border-radius: 2px;
  transition: 400ms; 
}

#over-ons .container:hover h2::after {
	width: 150px;
}

/* ===== Diensten ===== */
#diensten {
	padding: 100px 0;
}
#diensten .col {
	position: relative;
	border-radius: 0px;
	border: #1B8AB2 1px solid;
  text-align: center;
}

#diensten .container {
  display: flex;
  gap: 20px;          
  flex-wrap: wrap;  
  align-items: stretch;
}

#diensten .col {
  display: flex;
  flex-direction: column; 
  justify-content: space-between; 
  border-radius: 0px;
  border: 1px solid #1B8AB2;
  padding: 20px;
  text-align: center;
  flex: 1; 
}

#diensten .col {
  flex: 1; 
}

#diensten .col h3 {
	font-size: 23px;
	line-height: 0.9;
  color: #fff;
}

#diensten .col ul {
  flex-grow: 1; 
  text-align: left;
  padding-left: 20px;
}

#diensten .col li {
  text-align: left;
  margin: 20px 0px 0px -25px;
  font-size: 14px;
}

#diensten ul {
  list-style: none; 
  padding-left: 0;
}

#diensten ul li {
  position: relative;
  padding-left: 25px; 
  margin-bottom: 10px;
  margin-left: -25px;
}

#diensten ul li::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -10px;
	width: 100%;
	height: 1px;
	background-color: #E1E1E1;
	transition: 400ms;
}

#diensten .col:last-child ul li:last-child::after {
  content: none;
}

#diensten ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;  
  height: 16px; 
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' height='16' width='16' viewBox='0 0 640 640'><path fill='%231B8AB2' d='M320 576C214 576 128 490 128 384C128 292.8 258.2 109.9 294.6 60.5C300.5 52.5 309.8 48 319.8 48L320.2 48C330.2 48 339.5 52.5 345.4 60.5C381.8 109.9 512 292.8 512 384C512 490 426 576 320 576zM240 376C240 362.7 229.3 352 216 352C202.7 352 192 362.7 192 376C192 451.1 252.9 512 328 512C341.3 512 352 501.3 352 488C352 474.7 341.3 464 328 464C279.4 464 240 424.6 240 376z'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}

#diensten .kleurvakblauw {
  position: relative;
  z-index: 2;
  position: relative;
  margin: -20px -20px 20px; 
  padding: 20px;
  background: #1B8AB2;
  color: #fff;
}

#diensten .kleurvakblauw::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background: #1B8AB2;
  width: 100%;
  height: 100%;
  z-index: -1;
}

#diensten .kleurvakblauw p::after {
	content: "";
	position: absolute;
	left: 15%;
	bottom: 60px;
	width: 70%;
	height: 1px;
	background-color: #cbcccc;
	border-radius: 2px;
	transition: 400ms;
}

.kleurvakgrijs {
  position: relative;
  z-index: 2;
  position: relative;
  margin: -20px -20px 20px; 
  padding: 20px;
  background: #1B8AB2;
  color: #000;
}

#diensten .kleurvakgrijs::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background: #E1F4FB;
  width: 100%;
  height: 100%;
  z-index: -1;
}

#diensten .col {
  position: relative;
  padding: 20px;

  transition: 
    transform 0.3s ease,
    box-shadow 0.3s ease;
  will-change: transform;
}

#diensten .col:nth-child(2) {
  position: relative;
}

#diensten .col:nth-child(2)::after {
	content: "Meest gekozen";
	position: absolute;
	top: -17px;
	left: 50%;
	transform: translateX(-50%);
	background: #D4A22A;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	padding: 6px 14px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	z-index: 10;
	background: linear-gradient(135deg, #FFD700, #FFC107, #FFB300);
	text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

#diensten .col:nth-child(2):hover::after {
  top: -20px;
  transition: 0.4s ease;
}

#diensten .col:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 25px 50px rgba(0,0,0,0.18);
  z-index: 5;
}

#diensten .col .btn {
  position: relative;       
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
  color: #fff;
  z-index: 1;
  background: #1B8AB2;
  margin: 20px 40px 0px 40px;              
}

#diensten .col .btn:hover {
	position: relative;
	display: inline-block;
	padding: 10px 20px;
	text-decoration: none;
	color: #1B8AB2;
	z-index: 1;
  background: #fff;
}

#diensten .col .btn::after {
	content: "";
	position: absolute;
	top: -10px;
	left: -10px;
	right: -10px;
	bottom: -10px;
	border: 1px solid #427bd54f;
	z-index: 0;
	pointer-events: none;
	border-radius: 0;
}

/* ===== Foto Showcase ===== */
.foto-showcase {
  padding: 100px 40px;
  background: #f5f7fa;
}

.foto-grid {
  max-width: 1830px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 60px 40px;
}

/* basis foto */
.foto {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 2px solid #1B8AB2;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}

.foto img {
  width: 100%;
  display: block;
}

/* BOVENSTE RIJ (1–3) */
.foto:nth-child(1), .foto:nth-child(3) {
  transform: translateY(-30px); /* hoog */
}

.foto:nth-child(2) {
  transform: translateY(30px);  /* laag */
}

/* ONDERSTE RIJ (4–6) → gespiegeld */
.foto:nth-child(4), .foto:nth-child(6) {
	transform: translateY(30px);
}

.foto:nth-child(5) {
	transform: translateY(-30px);
}

/* hover: iets liften */
.foto:hover {
  transform: translateY(-10px) scale(1.03);
  z-index: 5;
}

.shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.45),
    transparent
  );
  transform: skewX(-20deg);
}

.shine:hover::after {
  left: 125%;
  transition: 0.8s ease;
}

/* ===== Offerte ===== */
#offerte {
	text-align: center;
  padding: 150px 0px 150px 0px;
}

/* ===== Reviews Section ===== */
.reviews-section {
  background: #f5f7fa;
  padding: 80px 20px;
}

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.reviews-container h2 {
  margin-bottom: 50px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.review-card {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.review-card .stars {
  color: #1B8AB2;
  font-size: 18px;
  margin-bottom: 15px;
}

.review-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 15px;
}

.review-card span {
  font-size: 14px;
  color: #777;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 15px;
}

.star {
  width: 18px;
  height: 18px;
  fill: #FDD663;
}

/* Button */
.reviews-button {
  display: inline-block;
  padding: 14px 28px;
  border: 1px solid #1B8AB2;
  color: #1B8AB2;
  text-decoration: none;
  transition: 0.3s ease;
}

.reviews-button:hover {
  background: #1B8AB2;
  color: #fff;
}

/* ===== Content ===== */
.content {
  padding: 60px 0;
}

.columns {
  display: flex;
  gap: 20px;
}

.col {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  flex: 1;
}

/* ===== Footer ===== */
.site-footer {
  background-color: #111;
  color: #ccc;
  padding: 60px 0px 0px 0px;
  font-family: system-ui, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-container img {
	width: 210px;
  height: 100%;
}

.footer-col h4 {
  color: #547ebf;
  margin-bottom: 15px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-contact {
  list-style: none;
  padding: 0;
  font-size: 14px;
}

.footer-contact li {
  margin-bottom: 6px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid #547ebf;
  color: #547ebf;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: 0.3s ease;
}

.footer-socials a:hover {
  background-color: #fff;
  color: #111;
}

.footer-copyright {
	text-align: center;
	font-size: 14px;
	color: #aaa;
	margin-top: 20px;
	background: #000;
	padding: 5px 0;
}

/* ===== Contact / Form ===== */
.forum {
  padding: 0px 0px 100px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.forum h1 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #222;
}

/* Form container */
.contact-form {
  width: 100%;
  max-width: 600px;
  background: #fff;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 2;
  margin-top: -140px;
}

/* Inputs & textarea */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-family: inherit;
}

/* Focus state */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #1B8AB2;
  box-shadow: 0 0 0 3px rgba(27,138,178,0.15);
}

/* Textarea */
.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* Button */
.contact-form button {
  margin-top: 10px;
  padding: 14px;
  background: #1B8AB2;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: 
    background 0.3s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

/* Button hover */
.contact-form button:hover {
  background: #166f8f;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Button active */
.contact-form button:active {
  transform: translateY(0);
  box-shadow: 0 5px 12px rgba(0,0,0,0.15);
}

/* alle pagina's behalve Homepage */
body:not(.homepage) .header {
	height: 230px;
  background-position: bottom left;
}
body:not(.homepage) .hero .container {
	margin-top: auto;
}

body:not(.homepage) .hero {
	padding: 0px 0px 0px 0px;
	text-align: center;
}

body:not(.homepage) .hero h2 {
	font-size: 2.5rem;
	color: #1B8AB2;
	padding-bottom: 0px;
}

body:not(.homepage) .contact-form {
	margin-top: 0;
}

/* Diensten pagina */
.diensten #diensten {
	padding: 25px 0 100px 0px;
}

.contact iframe {
	display: block;
}

/* Over Ons pagina */
.over-ons li {
	list-style-type: none;
}
.over-ons em {
  position: relative;
  display: inline-block;
}
.over-ons b {
	font-weight: 500;
}

.over-ons em::before {
	content: "";
	position: absolute;
	top: -5px;
	left: -45px;
	width: 90px;
	height: 2px;
	background-color: #1B8AB2;
}

/* FAQ pagina */
.faq .hero .container {
	padding-bottom: 170px;
}

/* Contact pagina */


/* Offerte pagina */


/* Bedankt pagina */
.bedankt .hero .container {
	padding-bottom: 247px;
}

/* Responsive */

/* Kleine laptops / grotere tablets */

@media (max-width: 1200px) {

#over-ons .container::before {
	width: 100%;
	height: 100%;
}

#over-ons .container::before {
	background-color: rgba(255, 255, 255, 0.9);
}

.over-ons-tekst {
	max-width: 100%;
}

#diensten .col .btn {
  margin: 15px 0 0 0;              
}

.foto-showcase {
	padding: 100px 15px;
}

#diensten .container {
  display: flex;
  flex-direction: column; /* Zorgt dat alles onder elkaar staat */
  gap: 50px;
}
#diensten .col em {
	padding: 30px 0 15px 0;
}

.header .container .offertebutton a {
	padding: 0px 10px;
}

.header .container .offertebutton {
	margin-left: 30px;
}

}

  /* Tablet */
@media (max-width: 900px) {

  .hero p {
	padding: 15px 20px;
}

.reviews-grid {
    grid-template-columns: 1fr;
  }

  /* Foto Showcase */
  .foto-grid {
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 768px) {

  /* ===== Header ===== */

  body:not(.homepage) .header {
	  height: 500px;
	  background-position: center;
  }

  .header {
    background-attachment: scroll;
    height: 650px;
  }

  .header .container {
    flex-direction: column;
    gap: 0px;
    padding-bottom: 15px;
  }

  .header .container .offertebutton {
	  margin: 0;
	  padding: 0;
	  border: none;
	  background: #fff;
  }

  .nav {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .nav a {
    margin: 8px 0;
  }

  /* ===== Hero ===== */
  .hero h2 {
    font-size: 1.8rem;
  }

  /* ===== Columns ===== */
  .columns {
    flex-direction: column;
  }

  /* ===== Footer ===== */
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }

  }
  
  /* Mobiel */
@media (max-width: 600px) {

#over-ons .container {
	height: 100%;
	padding-bottom: 30px;
}

.over-ons-tekst {
	max-width: 90%;
}
  /* Foto Showcase */
.foto-grid {
    grid-template-columns: 1fr;
  }

  .foto {
    transform: none !important;
  }

  @media (max-width: 480px) {
    .cookie-banner {
        bottom: 16px;
        left: 16px;
        right: 16px;
        padding: 18px;
    }

    .cookie-buttons {
        flex-direction: column;
    }
}

}

  



