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

:root {
  /* Spoedbak kleuren - robuust, industrieel, afzetbak uitstraling */
  --spoedbak-primary: #2c3e50;      /* Donkerblauw-grijs (metaal) */
  --spoedbak-primary-dark: #1a252f;
  --spoedbak-primary-light: #34495e;
  --spoedbak-accent: #e74c3c;        /* Rood (urgentie/spoed) */
  --spoedbak-accent-dark: #c0392b;
  --spoedbak-accent-light: #ec7063;
  --spoedbak-yellow: #f39c12;        /* Geel (waarschuwing/opvallend) */
  --spoedbak-yellow-dark: #d68910;
  --spoedbak-bg: #ecf0f1;            /* Lichtgrijs */
  --spoedbak-dark: #1a1a1a;
  --spoedbak-muted: #7f8c8d;
  --spoedbak-radius: 8px;
  --spoedbak-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --spoedbak-shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
  color: var(--spoedbak-dark);
  background: var(--spoedbak-bg);
  line-height: 1.7;
}

/* Layout helpers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section,
.section-alt {
  padding: 60px 0;
}

.section-alt {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
}

/* Header */
.header {
  background: var(--spoedbak-primary);
  color: white;
  padding: 24px 0;
  box-shadow: var(--spoedbak-shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.logo-text {
  margin: 0;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: white;
}

.tagline {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--spoedbak-yellow);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--spoedbak-primary) 0%, var(--spoedbak-primary-dark) 100%);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0 0 L100 100 M100 0 L0 100" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 56px;
  font-weight: 900;
  margin: 0 0 16px 0;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 24px 0;
  color: var(--spoedbak-yellow);
}

.hero-description {
  font-size: 18px;
  line-height: 1.8;
  margin: 0;
  opacity: 0.95;
}


/* Info Section */
.info {
  padding: 80px 0;
}

.info-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.info-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--spoedbak-dark);
  margin: 0 0 24px 0;
}

.info-text:last-child {
  margin-bottom: 0;
}

.info-text.coming-soon {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  color: var(--spoedbak-primary);
  margin: 0;
  padding: 40px 20px;
}

/* Footer */
.footer {
  background: var(--spoedbak-primary-dark);
  color: white;
  padding: 32px 0;
  text-align: center;
}

.footer-text {
  margin: 0;
  font-size: 14px;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .hero-description {
    font-size: 16px;
  }

  .info-text.coming-soon {
    font-size: 20px;
  }

  .logo-text {
    font-size: 24px;
  }

  .tagline {
    font-size: 12px;
  }
}

