/* Inter */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/inter-v20-latin-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/inter-v20-latin-600.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/inter-v20-latin-700.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/inter-v20-latin-700italic.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url("/fonts/inter-v20-latin-800italic.woff2") format("woff2");
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #0b0b0c;
  color: #fff;
  font-family: "Inter", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection {
  background: #e5362a;
  color: #fff;
}
a {
  color: #e5362a;
  text-decoration: none;
}
a:hover {
  color: #e5362a;
}
input,
select,
textarea,
button {
  font-family: inherit;
}
input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

/* Hover states (previously a non-standard style-hover attribute
   left over from the Claude Design editor; that attribute isn't
   real HTML/CSS and never took effect on the live site). */
.hover-red:hover {
  color: #e5362a !important;
}
.hover-white:hover {
  color: #fff !important;
}
.hover-btn-primary:hover {
  background: var(--red-dk, #b81e14) !important;
  color: #fff !important;
}
.hover-btn-whatsapp:hover {
  border-color: #25d366 !important;
  background: #111 !important;
}

@media (max-width: 640px) {
  [data-hero-btns] {
    justify-content: center;
  }
  [data-over-img] {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  [data-form-wrap] {
    align-items: center !important;
  }
  [data-diensten-grid] {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 560px) {
  [data-navlink] {
    display: none;
  }
}
