* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(
  180deg,
  #fff7cc 0%,
  #ffe38f 100%
);

  font-family: Arial, sans-serif;

  display: flex;
  justify-content: center;
  align-items: center;

  min-height: 100vh;

  padding: 40px;
}

.kaart {
  width: 100%;
  max-width: 900px;

  background: white;

  border-radius: 20px;

  overflow: hidden;

  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.media img,
.media video {
  width: 100%;
  height: 350px;

  object-fit: cover;

  display: block;
}

.content {
  padding: 40px;
}

h1 {
  font-size: 42px;

  margin-bottom: 10px;

  color: #222;
}

h2 {
  font-size: 20px;

  color: #9a7b4f;

  margin-bottom: 25px;

  font-weight: normal;
}

p {
  color: #444;

  line-height: 1.7;

  margin-bottom: 18px;
}

.info-box {
  background: #f7f3ed;

  padding: 20px;

  border-left: 4px solid #b08b57;

  border-radius: 10px;

  margin: 30px 0;

  line-height: 1.8;
}

.details {
  margin-top: 20px;
}

.details p {
  margin-bottom: 10px;
}

.button {
  display: inline-block;

  margin-top: 30px;

  background: #b08b57;

  color: white;

  text-decoration: none;

  padding: 14px 24px;

  border-radius: 10px;

  transition: 0.3s;
}

.button:hover {
  background: #8c6b42;
}

/* Mobielvriendelijk */
@media (max-width: 700px) {

  .content {
    padding: 25px;
  }

  h1 {
    font-size: 32px;
  }

  .media img,
  .media video {
    height: 240px;
  }
.instagram {
  display: inline-block;

  margin-top: 15px;
  margin-left: 10px;

  background: #d46a92;

  color: white;

  text-decoration: none;

  padding: 14px 24px;

  border-radius: 10px;

  transition: 0.3s;
}

.instagram:hover {
  background: #b94d77;
}
@media (max-width: 700px) {

  .content {
    padding: 25px;
  }

  h1 {
    font-size: 32px;
  }

  .media img,
  .media video {
    height: 240px;
  }
}

}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 40px;
}

.instagram-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;

  border-radius: 12px;

  transition: transform 0.3s ease, opacity 0.3s ease;
}

.instagram-grid img:hover {
  transform: scale(1.05);
  opacity: 0.85;
}