/* Lampengrossier.nl — clean closure page */

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

:root {
  --blue: #0569d5;
  --blue-dark: #004a99;
  --blue-light: #e8f2fc;
  --red: #e61818;
  --red-bg: #fff5f5;
  --text: #222;
  --muted: #555;
  --border: #dde4ec;
  --white: #fff;
  --bg: #f7f9fb;
  --shadow: 0 8px 32px rgba(0, 40, 90, 0.1);
  --radius: 12px;
  --max: 760px;
  --font: Tahoma, Verdana, Helvetica, Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

a:hover {
  color: var(--blue-dark);
  text-decoration: underline;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem 1.25rem 3rem;
}

.card {
  width: min(var(--max), 100%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.5rem 2.75rem;
}

.logo-wrap {
  text-align: center;
  margin-bottom: 2rem;
}

.logo-wrap img {
  width: min(347px, 100%);
  height: auto;
  margin: 0 auto;
}

.logo-fallback {
  display: none;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--blue-dark);
  letter-spacing: 0.02em;
}

.logo-wrap.no-image .logo-fallback {
  display: block;
}

.alert {
  background: var(--red-bg);
  border: 1px solid #f5c6c6;
  border-left: 4px solid var(--red);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.75rem;
}

.alert-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.alert p {
  margin-bottom: 0.5rem;
}

.alert p:last-child {
  margin-bottom: 0;
}

.alert strong {
  color: var(--text);
}

.story p {
  margin-bottom: 1rem;
  color: var(--text);
}

.story p:last-of-type {
  margin-bottom: 0;
}

.story strong {
  color: var(--blue-dark);
}

.divider {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

.contact-block {
  background: var(--blue-light);
  border-radius: 8px;
  padding: 1.5rem 1.75rem;
}

.contact-block h2 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-list {
  list-style: none;
}

.contact-list li {
  margin-bottom: 0.35rem;
}

.contact-list li:last-child {
  margin-bottom: 0;
}

.contact-list a {
  font-weight: 600;
}

.cta-row {
  margin-top: 1.75rem;
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 8px;
  border: 2px solid var(--blue);
  transition: background 0.2s, border-color 0.2s;
}

.btn:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: var(--white);
  text-decoration: none;
}

.footer-note {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}

@media (max-width: 600px) {
  .page {
    padding: 1.25rem 1rem 2rem;
  }

  .card {
    padding: 1.75rem 1.25rem;
  }

  .alert-title {
    font-size: 1.1rem;
  }
}
