html, body {
  height: 100%;
  margin: 0;
}

body {
  background-image: url("../images/backgroundHome.gif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: rgb(255, 255, 255);
}

header {
  display: flex;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.3);
  gap: 40px;
  position: fixed;
  width: 100%;
  padding: 10px 40px;
  box-sizing: border-box;
  top: 0;
  z-index: 1000;
}

h1 {
  font-family: 'Arial', sans-serif;
  font-size: 20px;
}

.left {
  margin-right: auto;
  margin-left: 20px;
  cursor: default;
}

.headerItem {
  transition: color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.headerItem:hover,
.headerItem a:hover {
  color: rgb(152, 122, 221);
  transform: translateX(5px);
}

.headerItem a {
  color: inherit;
  text-decoration: none;
  font: inherit;
}


.box-overmij {
  display: flex;
  gap: 40px;
  background: rgba(26, 25, 25, 0.8);
  color: #fff;
  padding: 48px 64px;
  border-radius: 24px;
  margin: 100px auto;
  max-width: 800px;
}

.Text h1 {
  font-size: 32px;
  margin-bottom: 16px;
}

.Text p {
  font-size: 20px;
  line-height: 1.8;
}


.Image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}
















/* Responsive Design */
@media (max-width: 600px) {
  header {
    flex-wrap: wrap;
    gap: 10px;
    padding: 8px 4px;
  }

  h1 {
    font-size: 16px;
  }

  .left {
    margin-left: 4px;
  }
}

@media (max-width: 400px) {
  header {
    gap: 8px;
    padding: 6px 2vw;
  }

  h1 {
    font-size: 13px;
  }

  .left {
    margin-left: 2px;
  }
}

/* Cursor Glow Effect */
.cursor-glow {
  position: fixed;
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, rgba(152, 122, 221, 0.8) 0%, rgba(152, 122, 221, 0.4) 70%, rgba(152, 122, 221, 0) 100%);
  border-radius: 50%;
  pointer-events: none;
  box-shadow: 0 0 30px rgba(152, 122, 221, 0.6);
  transform: translate(-50%, -50%);
  z-index: 9999;
}