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

:root {
  --purple: #27002c;
  --magenta: #ff00ff;
  --white: #ffffff;
  --grey-light: #f5f5f5;
  --grey-text: #444444;
  --font: 'Segoe UI', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--grey-text);
  background: var(--white);
  line-height: 1.7;
}

a {
  color: var(--magenta);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ── NAVIGATION ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--purple);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo img {
  height: 80px;
  width: auto;
}

.nav-logo span {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 1;
  text-decoration: none;
  color: var(--magenta);
}

/* ── HERO ── */
.hero {
  background: var(--purple);
  color: var(--white);
  text-align: center;
  padding: 6rem 2rem 5rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.hero h1 span {
  color: var(--magenta);
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.btn {
  display: inline-block;
  background: var(--magenta);
  color: var(--white);
  padding: 0.85rem 2.25rem;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: filter 0.2s, transform 0.1s;
  text-decoration: none;
}

.btn:hover {
  filter: brightness(1.15);
  text-decoration: none;
  transform: translateY(-1px);
}

/* ── SECTIONS ── */
section {
  padding: 5rem 2rem;
}

.container {
  max-width: 960px;
  margin: 0 auto;
}

.section-label {
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--magenta);
  margin-bottom: 0.5rem;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--purple);
  margin-bottom: 1.25rem;
}

/* ── OVER ONS ── */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text p + p {
  margin-top: 1rem;
}

.about-accent {
  background: var(--purple);
  border-radius: 8px;
  padding: 2.5rem;
  color: var(--white);
}

.about-accent h3 {
  font-size: 1.1rem;
  color: var(--magenta);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.about-accent ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-accent ul li::before {
  content: "→ ";
  color: var(--magenta);
  font-weight: 700;
}

/* ── PRODUCTEN ── */
.products {
  background: var(--grey-light);
}

.product-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  box-shadow: 0 2px 12px rgba(39,0,44,0.08);
  border-left: 4px solid var(--magenta);
}

.product-card h3 {
  font-size: 1.5rem;
  color: var(--purple);
  margin-bottom: 0.75rem;
}

.product-card .tag {
  display: inline-block;
  background: var(--magenta);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: 3px;
  margin-bottom: 1rem;
}

.product-card p {
  color: var(--grey-text);
  margin-bottom: 1.5rem;
}

/* ── CONTACT ── */
.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--purple);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-item div p {
  font-weight: 600;
  color: var(--purple);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}

.contact-item div span {
  color: var(--grey-text);
}

.contact-item div a {
  color: var(--grey-text);
}

.contact-item div a:hover {
  color: var(--magenta);
}

.contact-map {
  background: var(--grey-light);
  border-radius: 8px;
  overflow: hidden;
  min-height: 280px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  min-height: 280px;
}

/* ── FOOTER ── */
footer {
  background: var(--purple);
  color: rgba(255,255,255,0.6);
  padding: 2rem;
  text-align: center;
  font-size: 0.85rem;
}

footer span {
  color: var(--magenta);
}

footer .footer-kvk {
  margin-top: 0.4rem;
  font-size: 0.8rem;
  opacity: 0.5;
}

/* ── RESPONSIVE ── */
@media (max-width: 720px) {
  nav {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .nav-links {
    gap: 1.25rem;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .about-accent {
    order: -1;
  }
}
