/* ============================================================
   Print033 – Hoofdstylesheet
   ============================================================ */

:root {
  --blue:       #1d4ed8;
  --blue-dark:  #1e3a8a;
  --blue-light: #eff6ff;
  --accent:     #f59e0b;
  --accent-dark:#d97706;
  --text:       #111827;
  --muted:      #6b7280;
  --border:     #e5e7eb;
  --bg:         #f9fafb;
  --white:      #ffffff;
  --radius:     8px;
  --shadow:     0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.05);
  --shadow-lg:  0 10px 25px rgba(0,0,0,.1);
  --font:       'Inter', system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ─── Typography ─── */
h1, h2, h3, h4 { line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(1.75rem, 5vw, 3rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: 1.25rem; }

/* ─── Layout ─── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.25rem; }
.section    { padding: 4rem 0; }
.section-sm { padding: 2.5rem 0; }

/* ─── Navbar ─── */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue-dark);
  letter-spacing: -.03em;
}
.navbar-brand span { color: var(--accent); }
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}
.navbar-nav a {
  color: var(--text);
  font-weight: 500;
  font-size: .95rem;
}
.navbar-nav a:hover { color: var(--blue); text-decoration: none; }
.navbar-actions { display: flex; gap: .75rem; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .15s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  text-decoration: none;
  color: var(--white);
}
.btn-secondary {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-secondary:hover {
  background: var(--blue-light);
  text-decoration: none;
}
.btn-accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  text-decoration: none;
  color: var(--white);
}
.btn-lg { padding: .85rem 2rem; font-size: 1.05rem; }
.btn-sm { padding: .4rem .9rem; font-size: .875rem; }

/* ─── Hero ─── */
.hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, #3b82f6 100%);
  color: var(--white);
  padding: 5rem 0 4rem;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero p   { font-size: 1.1rem; opacity: .9; margin-bottom: 2rem; max-width: 480px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-card {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px;
  padding: 2rem;
  backdrop-filter: blur(8px);
}
.hero-card h3 { color: var(--white); margin-bottom: 1rem; font-size: 1.1rem; }

/* ─── Cards ─── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.card-body { padding: 1.75rem; }
.card-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* ─── Grid layouts ─── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

/* ─── Services cards ─── */
.service-card {
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 2rem;
  transition: box-shadow .2s, transform .2s;
  background: var(--white);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.service-card h3 { margin-bottom: .5rem; }
.service-card p { color: var(--muted); margin-bottom: 1.25rem; }

/* ─── Steps ─── */
.steps { display: flex; gap: 1rem; counter-reset: step; }
.step {
  flex: 1;
  text-align: center;
  padding: 1.5rem;
  counter-increment: step;
}
.step::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 1rem;
}
.step h4 { margin-bottom: .5rem; }
.step p  { color: var(--muted); font-size: .9rem; }

/* ─── Prijstabel ─── */
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
}
.price-table th,
.price-table td {
  padding: .75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.price-table th {
  background: var(--bg);
  font-weight: 600;
  font-size: .875rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:hover td { background: var(--bg); }

/* ─── Calculator ─── */
.calculator {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.calc-header {
  background: var(--blue-dark);
  color: var(--white);
  padding: 1.5rem 2rem;
}
.calc-body { padding: 2rem; }
.calc-result {
  background: var(--blue-light);
  border: 2px solid var(--blue);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
}
.calc-total {
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue-dark);
}

/* ─── Form elements ─── */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: .4rem;
  color: var(--text);
}
.form-control {
  width: 100%;
  padding: .65rem .9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  transition: border-color .15s;
  appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29,78,216,.15);
}
.form-control-lg { padding: .8rem 1rem; font-size: 1rem; }
select.form-control { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7280' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .9rem center; padding-right: 2.5rem; }

/* Checkbox / radio */
.form-check { display: flex; align-items: center; gap: .5rem; margin-bottom: .5rem; }
.form-check input { width: 16px; height: 16px; accent-color: var(--blue); cursor: pointer; }
.form-check label { cursor: pointer; font-size: .95rem; }

/* ─── Upload zone ─── */
.upload-zone {
  border: 2px dashed var(--border);
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
  cursor: pointer;
  transition: all .2s;
  background: var(--bg);
}
.upload-zone:hover,
.upload-zone.dragover {
  border-color: var(--blue);
  background: var(--blue-light);
}
.upload-zone input[type=file] { display: none; }
.upload-icon { font-size: 3rem; margin-bottom: 1rem; }

/* ─── Status badges ─── */
.badge {
  display: inline-block;
  padding: .25rem .75rem;
  border-radius: 99px;
  font-size: .8rem;
  font-weight: 600;
}
.badge-gray   { background: #f3f4f6; color: #374151; }
.badge-yellow { background: #fef3c7; color: #92400e; }
.badge-blue   { background: #dbeafe; color: #1e40af; }
.badge-green  { background: #dcfce7; color: #166534; }
.badge-purple { background: #ede9fe; color: #5b21b6; }
.badge-red    { background: #fee2e2; color: #991b1b; }

/* ─── Order tracking ─── */
.tracking-steps {
  display: flex;
  position: relative;
  margin: 2rem 0;
}
.tracking-steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: var(--border);
}
.tracking-step {
  flex: 1;
  text-align: center;
  position: relative;
}
.tracking-step-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--border);
  border: 3px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .75rem;
  font-size: .85rem;
  color: var(--muted);
  position: relative;
  z-index: 1;
}
.tracking-step.done .tracking-step-dot {
  background: var(--blue);
  color: var(--white);
}
.tracking-step.active .tracking-step-dot {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 0 0 4px rgba(245,158,11,.2);
}
.tracking-step-label { font-size: .8rem; color: var(--muted); font-weight: 500; }
.tracking-step.done .tracking-step-label,
.tracking-step.active .tracking-step-label { color: var(--text); }

/* ─── Alert / Flash ─── */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  font-size: .95rem;
}
.alert-danger  { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.alert-success { background: #dcfce7; color: #166534; border: 1px solid #86efac; }
.alert-info    { background: #dbeafe; color: #1e40af; border: 1px solid #93c5fd; }

/* ─── USP bar ─── */
.usp-bar {
  background: var(--blue-dark);
  color: rgba(255,255,255,.9);
  font-size: .875rem;
  padding: .6rem 0;
}
.usp-bar-inner { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; }
.usp-bar span  { display: flex; align-items: center; gap: .4rem; }

/* ─── CTA sectie ─── */
.cta-section {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p  { opacity: .9; margin-bottom: 2rem; font-size: 1.05rem; }

/* ─── Footer ─── */
.footer {
  background: #0f172a;
  color: rgba(255,255,255,.7);
  padding: 3.5rem 0 1.5rem;
  font-size: .9rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
.footer-brand { font-size: 1.4rem; font-weight: 800; color: var(--white); margin-bottom: .75rem; }
.footer-brand span { color: var(--accent); }
.footer h4 { color: var(--white); font-size: .875rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: .5rem; }
.footer ul li a { color: rgba(255,255,255,.6); }
.footer ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .85rem;
}

/* ─── Page header ─── */
.page-header {
  background: var(--blue-light);
  border-bottom: 1px solid #bfdbfe;
  padding: 2.5rem 0;
}
.breadcrumb {
  display: flex;
  gap: .5rem;
  align-items: center;
  font-size: .875rem;
  color: var(--muted);
  margin-bottom: .75rem;
}
.breadcrumb a { color: var(--blue); }
.breadcrumb-sep { color: var(--border); }

/* ─── Auth forms ─── */
.auth-container {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: var(--bg);
}
.auth-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  width: 100%;
  max-width: 460px;
  box-shadow: var(--shadow-lg);
}
.auth-card h1 { font-size: 1.6rem; margin-bottom: .4rem; }
.auth-card .subtitle { color: var(--muted); margin-bottom: 2rem; }

/* ─── Account ─── */
.account-layout { display: grid; grid-template-columns: 220px 1fr; gap: 2rem; }
.account-sidebar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
  height: fit-content;
}
.account-nav { list-style: none; }
.account-nav a {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .65rem .9rem;
  border-radius: var(--radius);
  color: var(--text);
  font-weight: 500;
  font-size: .95rem;
}
.account-nav a:hover,
.account-nav a.active {
  background: var(--blue-light);
  color: var(--blue);
  text-decoration: none;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card  { display: none; }
  .grid-3     { grid-template-columns: 1fr 1fr; }
  .grid-4     { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .account-layout { grid-template-columns: 1fr; }
  .steps { flex-direction: column; }
}
@media (max-width: 600px) {
  .grid-3  { grid-template-columns: 1fr; }
  .grid-2  { grid-template-columns: 1fr; }
  .grid-4  { grid-template-columns: 1fr; }
  .navbar-nav { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .tracking-steps { flex-direction: column; }
  .tracking-steps::before { display: none; }
}
