/* Pakket Direct — Landing (Website in aanbouw) */
/* Kleuren en typografie (Tailwind-achtig zonder dependency) */
:root {
  --pd-red: #C8102E;      /* primaire merk-kleur rood */
  --pd-red-600: #a30d26;
  --pd-dark: #1f2937;     /* bijna-zwart */
  --pd-mid: #4b5563;      /* grijs */
  --pd-light: #f9fafb;    /* heel licht */
  --pd-white: #ffffff;
  --radius-2xl: 1.25rem;
  --shadow-soft: 0 10px 25px rgba(0,0,0,0.08);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica Neue, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--pd-dark);
  background: linear-gradient(180deg, #ffffff 0%, #fff7f8 35%, #fff 100%);
}

.container {
  width: min(1100px, 92vw);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: saturate(180%) blur(6px);
  background: rgba(255,255,255,0.8);
  border-bottom: 1px solid #f1f1f1;
  z-index: 50;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0.2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--pd-dark);
}

.brand-name { letter-spacing: .3px; font-size: 1.05rem; }

.tag {
  color: var(--pd-mid);
  font-size: .95rem;
}

.hero {
  display: grid;
  place-items: center;
  padding: 8vh 0 12vh;
}

.hero-inner {
  text-align: center;
}

.notice {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .4rem .7rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #ffe3e8;
  color: var(--pd-red-600);
  box-shadow: var(--shadow-soft);
}

.notice .dot {
  width: .55rem; height: .55rem; border-radius: 50%;
  background: var(--pd-red);
  box-shadow: 0 0 0 0 rgba(200,16,46,.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(200,16,46,.6); }
  70% { box-shadow: 0 0 0 10px rgba(200,16,46, 0); }
  100% { box-shadow: 0 0 0 0 rgba(200,16,46, 0); }
}

h1 {
  margin: 1.1rem 0 .4rem;
  font-size: clamp(2rem, 3.2vw + 1rem, 3rem);
  line-height: 1.1;
}

.lead {
  margin: .2rem auto 1.4rem;
  color: var(--pd-mid);
  font-size: clamp(1rem, .6vw + .7rem, 1.15rem);
  max-width: 60ch;
}

.contact-card {
  margin: 1.4rem auto 1.6rem;
  background: var(--pd-white);
  border: 1px solid #f1f1f1;
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-soft);
  text-align: left;
  max-width: 720px;
}

.contact-card h2 {
  margin: 0 0 .4rem;
  font-size: 1.25rem;
}

.contact-card p { margin: .2rem 0 .6rem; color: var(--pd-dark); }
.contact-card .mail { color: var(--pd-red-600); font-weight: 600; text-decoration: none; }
.contact-card .mail:hover { text-decoration: underline; }

.details summary { cursor: pointer; user-select: none; color: var(--pd-mid); }
.details ul { margin: .5rem 0 0 1.1rem; color: var(--pd-mid); }

.cta-row {
  display: flex;
  justify-content: center;
  gap: .8rem;
  flex-wrap: wrap;
  margin-top: .5rem;
}

.button {
  --pady: .8rem;
  --padx: 1.15rem;
  appearance: none;
  border: 0;
  background: var(--pd-red);
  color: white;
  padding: var(--pady) var(--padx);
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(200,16,46, .2);
  transition: transform .06s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-1px); box-shadow: 0 14px 26px rgba(200,16,46,.22); }
.button:active { transform: translateY(0); box-shadow: 0 8px 16px rgba(200,16,46,.18); }

.button.ghost {
  background: white;
  color: var(--pd-red-600);
  border: 1px solid #ffd7dd;
  box-shadow: var(--shadow-soft);
}

.site-footer {
  border-top: 1px solid #f1f1f1;
  padding: 2rem 0;
  text-align: center;
  color: var(--pd-mid);
  background: #fff;
}
