/* font-family: "Poppins", sans-serif;*/

body {
  background-color: #ffffff;
  font-family: "Poppins", sans-serif;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}
section {
  max-width: 100%;
  margin: 0 auto;
  padding: 100px;
}
section.sacondary {
  background: #f8f8f8;
}
.grid {
  display: grid;
  grid-gap: 30px; /* Ruimte tussen de kolommen */
  margin: 0 auto; /* Centraal uitlijnen */
  text-align: left;
}
.grid-2-colums {
  grid-template-columns: 1fr 1fr;
}
.grid-3-colums {
  grid-template-columns: 1fr 1fr 1fr;
}
.grid-3-colums-first-nerow {
  grid-template-columns: 1fr 2fr 2fr;
}
.text-center {
  text-align: center;
}

/* Header styling */
header {
  width: 100%;
  margin: 0auto;
  background-image: linear-gradient(rgba(39, 32, 68, 0.7), rgba(0, 0, 0, 0.5)),
    url("../beeld/in-droomproducties.avif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  padding: 80px 0;
}

header h1 {
  font-family: "Poppins", sans-serif;
  font-size: 96px;
  font-weight: 700;
  color: white;
  margin: 10px 0;
}

header h3 {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 400;
  color: white;
  margin-bottom: 20px;
}

header button {
  background-color: white;
  color: #272044;
  border: none;
  padding: 16px 32px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
  align-items: center;
}

button:hover {
  background-color: pink;
}

/*Img and Paragraf*/
main {
  background-color: white;
}
main img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
}

main h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 50px;
  color: #272044;
  margin: 0;
}
main p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  color: #272044;
}
/*cards*/
.img-responsive {
  max-width: 100%;
  display: block;
}
.sacondary h2 {
  font-family: "Poppins", sans-serif;
  opacity: 30%;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 5px;
}
.sacondary h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 48px;
}
.card {
  background: white;
  margin: 30px 0;
  max-width: 370px;
}
.card-body {
  padding: 30px;
}

.card h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  color: #272044;
  margin: 0;
}
.card h5 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  color: #272044;
  margin: 0;
}

.btn {
  display: block;
  color: white;
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px;
  background: #462cb2;
  text-decoration: none;
}

/* Grid voor video's */

.gallery h2 {
  font-family: "Poppins", sans-serif;
  opacity: 30%;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 5px;
}
.gallery h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 48px;
}
.grid-embeds{
margin: 30px 0;
}
.gallery-img{
  max-width: 370px;

}
/*footer*/
footer {
  color: white;
  background-image: linear-gradient(
      rgba(39, 32, 68, 0.9),
      rgba(39, 32, 68, 0.9)
    ),
    url("../beeld/Toy-Story-still-1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

footer h3 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
}
footer p li {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  opacity: 0.7;

  line-height: 24px;
}
footer ul {
  padding: 0;
}
footer li {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer a {
  color: white;
  opacity: 0.7;
}

@media (max-width: 960px) {
  header {
    padding: 60px 0;
  }
  header h1 {
    font-size: 48px;
  }
  header h3 {
    font-size: 20px;
  }
  button {
    padding: 10px 24px;
  }
  footer h3 {
    font-size: 15px;
  }
  footer p a li {
    font-size: 14px;
  }
  .grid {
    gap: 20px;
    margin: 10px;
    grid-template-columns: 1fr;
  }
  section {
    padding: 30px;
  }
  .grid-3-colums {
    grid-template-columns: 1fr;
  }
  
