/*
Theme Name: PrintOnderdelen Starter
Theme URI: https://printonderdelen.nl
Author: Copilot
Description: Starter WordPress theme voor PrintOnderdelen.nl met een snelle webshop-structuur.
Version: 1.0
Text Domain: printonderdelen
*/

:root {
  --bg: #f6f5ef;
  --surface: #ffffff;
  --surface-alt: #eef2ea;
  --text: #18231d;
  --muted: #5b6b61;
  --primary: #1f5b4d;
  --primary-dark: #184639;
  --border: #dde5db;
  --radius: 18px;
  --shadow: 0 18px 55px rgba(24, 35, 29, 0.08);
  --container: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: min(100% - 2rem, var(--container)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 245, 239, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}

.site-branding a { font-size: 0.95rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; }
.site-branding span { color: var(--primary); }

.main-nav { display: flex; gap: 1rem; }
.main-nav a { color: var(--muted); font-size: 0.95rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.9rem 1.2rem;
  font-weight: 600;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-secondary { background: #fff; border: 1px solid var(--border); }

.section { padding: 5rem 0; }
.section-alt { background: var(--surface-alt); }
.hero { padding: 5rem 0; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
.hero h1 { font-size: clamp(3rem, 4vw, 4.5rem); line-height: 1; margin-bottom: 1rem; }
.hero-text { color: var(--muted); max-width: 56ch; }
.hero-actions { display: flex; gap: 0.8rem; margin: 1.5rem 0; }
.badges { display: flex; flex-wrap: wrap; gap: 0.6rem; list-style: none; }
.badges li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  color: var(--muted);
  font-size: 0.88rem;
}
.hero-card { background: var(--surface); padding: 1rem; border-radius: var(--radius); box-shadow: var(--shadow); }
.hero-card img { aspect-ratio: 4 / 5; object-fit: cover; border-radius: calc(var(--radius) - 6px); }

.brand-strip {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.88rem;
}

.section-heading { max-width: 650px; margin-bottom: 2rem; }
.section-heading h2 { font-size: clamp(2rem, 3vw, 3rem); line-height: 1.1; }
.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.product-grid, .benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.product-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.product-card img { width: 100%; height: 260px; object-fit: cover; }
.product-card > div { padding: 1.2rem; }
.product-tag { color: var(--primary); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.product-card h3 { margin: 0.3rem 0 0.5rem; }
.meta { display: flex; justify-content: space-between; align-items: center; margin-top: 1rem; font-weight: 600; }
.meta a { color: var(--primary); }

.benefits-grid div { background: var(--surface); padding: 1.4rem; border-radius: var(--radius); }
.process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.steps { display: grid; gap: 1rem; }
.steps div { background: var(--surface); padding: 1.4rem; border-radius: var(--radius); }
.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cta-box {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: var(--shadow);
}

.site-footer { padding: 1.5rem 0 3rem; }
.footer-wrap { display: flex; justify-content: space-between; align-items: center; color: var(--muted); font-size: 0.9rem; }

@media (max-width: 920px) {
  .hero-grid,
  .process-grid,
  .product-grid,
  .benefits-grid { grid-template-columns: 1fr; }
  .cta-box,
  .footer-wrap { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 760px) {
  .main-nav { display: none; }
  .hero-actions { flex-direction: column; }
  .hero { padding: 4rem 0; }
  .hero h1 { font-size: 3rem; }
}
