* {
  box-sizing: border-box;
}

/* Style the body */
body {
  font-family: Arial, sans-serif;
  width: 100%;
  margin: auto;
  background-color: white;
  min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header/logo Title */
.header {
  text-align: center;
  background-color: #1793ad;
  background-repeat: no-repeat;
  background-size: auto 230px;
  color: #ffffff;
  /* Maak de header sticky */
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Increase the font size of the heading */
.header h1 {	
  font-size: 40px;
}

#logo
img {
  width: 10%;
  height: auto;
  /* float: right; */
}
.waves {
position:relative;
width: 100%;
height:15vh;
margin-bottom:-7px; /*Fix for safari gap*/
min-height:100px;
max-height:120px;
}

.footerwaves {
position:relative;
width: 100%;
height:15vh;
margin-bottom:-7px; /*Fix for safari gap*/
min-height:100px;
max-height:120px;
}


/* Animation
.parallax > use {
animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}
.parallax > use:nth-child(1) {
animation-delay: -2s;
animation-duration: 7s;
}
.parallax > use:nth-child(2) {
animation-delay: -3s;
animation-duration: 10s;
}
.parallax > use:nth-child(3) {
animation-delay: -4s;
animation-duration: 13s;
}
.parallax > use:nth-child(4) {
animation-delay: -5s;
animation-duration: 20s;
}
@keyframes move-forever {
0% {
transform: translate3d(-90px,0,0);
}
100% {
transform: translate3d(85px,0,0);
}
} */
/* Sticky navbar - toggles between relative and fixed, depending on the scroll position. It is positioned relative until a given offset position is met in the viewport - then it "sticks" in place (like position:fixed). The sticky value is not supported in IE or Edge 15 and earlier versions. However, for these versions the navbar will inherit default position */
.navbar {
  overflow: hidden;
  background-color: #1793ad;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  color: black;
}

/* Style the navigation bar links */
.navbar a {
  float: right;
  display: block;
  color: black;
  font-weight: bold;
  font-size: large;
  text-align: center;
  padding: 14px 20px;
  text-decoration: none;
}

/* Change color on hover */
.navbar a:hover {
  color: white;
}

/* Active/current link */
.navbar a.active {
  color: white;
}

/* visited link */
a:visited {
  color: black;
}

/* Column container */
.row {  
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  background-color: white;
}

/* Create 4 unequal columns that sit next to each other */
/* Sidebar/left column */
.leftside {
  -ms-flex: 20%; /* IE10 */
  flex: 20%;
  background-color: white;
  padding: 10px;
}

/* Main column */
.main {   
  -ms-flex: 60%; /* IE10 */
  flex: 60%;
  background-color: white;
  padding: 10px;
}

.gridcontainer {
  display: flex;
  align-items: center; 
  grid-template-columns: 1fr 1fr;
  column-gap: 10px;
}

.gridcontainer img {
  width: 200px;
}


table {
	border-collapse: collapse;
} 
  tr:nth-child(2n+2) {
    border-bottom: 1px solid grey;
}
th, td {
  padding: 10px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem 4vw;
  box-sizing: border-box;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 120px; /* of meer, indien gewenst */
}

.blog-item {
  background-color: #badfe6;
  padding: 1.5rem;
  border-radius: 10px;
  border: 2px solid #1793ad;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-item a {
  color: #1793ad;
  font-size: 1.1rem;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.blog-item a:hover {
  color: black;
}

.blog-item img {
  width: 100%;
  height: auto;
  margin-top: 1rem;
  object-fit:contain;
  border-radius: 6px;
  border: 0px solid #1793ad;
}


/* Sidebar/right column */
.rightside {
  -ms-flex: 20%; /* IE10 */
  flex: 20%;
  background-color: white;
  padding: 10px;
}

/* Image styling */
img{
  display: block;
  margin-left: auto;
  margin-right: auto;
  border: 6px solid #1793AD;
  border-radius: 20px;
  background: #ddd;
}

/* Image styling wie pagina */
.roundimg img{
  display: block;
  margin-left: auto;
  margin-right: auto;
  width:100px;
  border: 6px solid #1793AD;
  border-radius: 50%;
  background: #ddd;
}

.formimg img{
  display: block;
  margin-left: auto;
  margin-right: auto;
  border: 6px solid #1793AD;
  border-radius: 20px;
  background: #ddd;
  width: 300px;
}

.bloglistimg img{
	width: 200px;
}


 /* Footer */
.footer {
  text-align: center;
  background-color: #1793ad;
  margin-top: auto;
}

.footer img {
width: 40px;
  height: auto;
  border: 0px solid #1793AD;
  border-radius: 0px
} 

.footer ul li{
  display: inline;
  margin-right: 40px;
}

.footer a {
  float: center;
  color: black;
  font-size: middle;
  text-align: center;
  text-decoration: none;
}

/* Change color on hover */
.footer a:hover {
  color: white;
}

/* Active/current link */
.footer a.active {
  color: black;
}

/* visited link */
.footer a.visited {
  color: black;
  }


/* Toggle darkmode */
.dark-mode {
  background-color: black;
  color: white;
}

/* Responsive layout - when the screen is less than 1000px wide, make the inner 2 columns stack on top of each other instead of next to each other */
@media screen and () {
  .gridcontainer {   
    flex-direction: column;
  }
  img {
	  width: 70%;
  }
}

/* Responsive layout - when the screen is less than 700px wide, make the columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
  .row {   
    flex-direction: column;
  }
  img { 
	  width: 95%;
  }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
   img {
	   width: 95%;
   }

   .navbar a {
	   flex-direction: column;
    float: none;
    width: 100%;    
  }

  .footer img {
    width: 25px;
    height: auto;
  }  
}
@media screen and (max-width: 768px) {
  .diensten > div,
  .use-cases > div,
  .gridcontainer {
    flex-direction: column;
    width: 100%;
  }

  .diensten div,
  .use-cases li {
    width: 100%;
    margin-bottom: 1rem;
  }

  section {
    padding: 1.5rem 1rem;
  }

  img {
    max-width: 100%;
    height: auto;
  }
}

/* ==== INLINE STYLES OVERGEZET UIT index.html ==== */
@media screen and (max-width: 768px) {
  .gridcontainer > div,
  .gridcontainer > li {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
  }

  .gridcontainer > div p,
  .gridcontainer > li p {
    margin-bottom: 0;
  }

  .diensten .gridcontainer,
  .use-cases .gridcontainer {
    flex-direction: column;
  }
}

#intro {
  scroll-margin-top: 180px;
  padding: 1rem 1rem 3rem;
  background-color: white;
  border-radius: 12px;
}

#intro h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #1793AD;
}

#intro h2 {
  font-weight: 400;
  font-size: 1.4rem;
  color: #555;
  margin-bottom: 1.5rem;
}

#intro a {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #1793AD;
  color: white;
  border-radius: 6px;
  text-decoration: none;
}

#intro img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

#diensten {
  scroll-margin-top: 180px;
  padding: 3rem 1rem;
  background: #BADFE6;
}

#diensten .gridcontainer {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: stretch;
}

#diensten .gridcontainer > div {
  flex: 1 1 calc(33.333% - 1.5rem);
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border: 2px solid #1793AD;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#diensten .gridcontainer > div h2 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #1793AD;
}

#diensten h1 {
  max-width: 1000px;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #1793AD;
}


#diensten a {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #1793AD;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  max-width: 60%;
}

#use-cases {
  scroll-margin-top: 150px;
  padding: 3rem 1rem;
}

#use-cases h2 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  color: #1793AD;
}

#use-cases .gridcontainer {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  justify-content: space-between;
}

#use-cases .gridcontainer li {
  flex: 1 1 calc(33.333% - 1.5rem);
  background: #BADFE6;
  padding: 1.25rem;
  border-radius: 8px;
  border: 2px solid #1793AD;
  box-sizing: border-box;
}

#overmij {
  scroll-margin-top: 180px;
  padding: 3rem 1rem;
  background-color: #BADFE6;
}

#overmij h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #1793AD;
}

#overmij p {
  font-size: 1.1rem;
  color: #333;
}

#overmij img{
  display: block;
  margin-left: auto;
  margin-right: auto;
  border: 0px;
  background: #C6EAF0;
}


#contact {
  scroll-margin-top: 160px;
  padding: 3rem 1rem;
  background-color: #fff;
}

#contact h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #1793AD;
}

#contact p {
  font-size: 1.1rem;
  color: #333;
}

#contact a {
  color: #1793AD;
  text-decoration: none;
  font-weight: bold;
}

#intro > div,
#use-cases > div,
#overmij > div,
#contact > div,
#diensten > div {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

.blog-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem;
}

@media screen and (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr !important;
  }
}

@media screen and (max-width: 480px) {
  .blog-grid {
    grid-template-columns: 1fr !important;
  }
}

.menu-toggle {
  display: none;
  background-color: #1793ad;
  color: white;
  border: none;
  font-size: 1.5rem;
  padding: 14px 20px;
  width: 100%;
  text-align: left;
}

.menu-items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media screen and (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .menu-items {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #1793ad;
  }

  .menu-items a {
    text-align: left;
    padding: 14px 20px;
    border-top: 1px solid white;
  }

  .menu-items.show {
    display: flex;
  }
}

.page-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem;
  margin-bottom: 400px; /* of meer, indien gewenst */

}

/* === Quickscan landingspagina opmaak === */

.quickscan-container {
  max-width: 900px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 8px;
  padding: 40px;
}

.quickscan-container h1,
.quickscan-container h2 {
  color: #1793AD;
}

.quickscan-container p {
  line-height: 1.6;
}

.quickscan-container ul {
  list-style: none;
  padding-left: 0;
}

.quickscan-container ul li::before {
  content: "✔️";
  color: #1793AD;
  display: inline-block;
  width: 1.5em;
}

.quickscan-hero {
  text-align: center;
  margin-bottom: 30px;
}

.quickscan-hero img {
  max-width: 300px;
  width: 100%;
  height: auto;
}

.quickscan-steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid #BADFE6;
  border-bottom: 1px solid #BADFE6;
}

.quickscan-step {
  flex: 1 1 20%;
  text-align: center;
  padding: 10px;
  min-width: 120px;
}

.quickscan-step span {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
  color: #1793AD;
}

@media (max-width: 600px) {
  .quickscan-steps {
    flex-direction: column;
    gap: 20px;
  }
}

.newsletter {
  scroll-margin-top: 180px;
  background-color: #BADFE6;
  max-width: 600px;
  margin: 4rem auto;
  text-align: center;
  padding: 2rem;
  border-radius: 8px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.newsletter h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #1793AD;

}

.newsletter-form input, button {
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #1793AD;
  border-radius: 8px;
  width: 100%;
  margin-bottom: 1.5rem;
  box-sizing: border-box;
}

.newsletter-form button {
  background-color: #1793AD; /* Web42 blauw (of een tint) */
  color: white;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

.newsletter-form button:hover {
  background-color: white; /* donkerder bij hover */
  color: blach;
}

.hidden-field {
  display: none !important;
}

