.elementor-582 .elementor-element.elementor-element-7b33dfe{--display:flex;}/* Start custom CSS for html, class: .elementor-element-760525c */:root {
  --overlay: rgba(0,0,0,.45);
  --overlay-hover: rgba(0,0,0,.25);
  --radius: 24px;
}

* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; }

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial;
  background: #111;
  color: #fff;
}

.container {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 16px;
}

.split {
  width: 100%;
  max-width: 1400px;
  min-height: 86vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Card basis */
.card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
  min-height: 50vh;
}

.bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform .6s ease;
  filter: saturate(1.05) contrast(1.05);
}

.layer {
  position: absolute;
  inset: 0;
  background: var(--overlay);
  transition: background .3s ease;
}

.content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.content > div { max-width: 680px; margin: 0 auto; }

.title {
  font-weight: 800;
  font-size: clamp(28px, 3.8vw, 56px);
  line-height: 1.05;
  color: #e6f7fa;
  text-shadow: 0 2px 12px rgba(0,0,0,.8);
}

/* Subtitle beter leesbaar */
.subtitle {
  margin-top: 12px;
  font-size: clamp(15px, 1.5vw, 19px);
  font-weight: 600;
  color: #fff;
  text-shadow:
    0 2px 12px rgba(0,0,0,.9),
    0 0 1px rgba(0,0,0,.7);
  background: rgba(0,0,0,.35);
  padding: 10px 14px;
  border-radius: 12px;
  display: inline-block;
}

.card:hover .bg { transform: scale(1.12); }
.card:hover .layer { background: var(--overlay-hover); }

/* Mobiel */
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; min-height: auto; }
  .card { min-height: 44vh; }
}/* End custom CSS */