/* =========================
   FONTS
========================= */
@font-face {
  font-family: 'MyFont';
  src: url('./RijksoverheidSansWebText_Regular.ttf') format('truetype');
  font-weight: 400;
}

@font-face {
  font-family: 'MyFont';
  src: url('./RijksoverheidSansWebText_Bold.ttf') format('truetype');
  font-weight: 700;
}

/* =========================
   VARIABLES
========================= */
:root {
  --accent: #ff8c00;
}

/* =========================
   BASE
========================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'MyFont', Arial, sans-serif;
  background: linear-gradient(135deg, #2b2b2b, #1f1f1f);
  color: white;
  line-height: 1.4;
  transition: background 0.25s, color 0.25s;
}

/* =========================
   LAYOUT
========================= */
.container {
  max-width: 420px;
  margin: auto;
  padding: 24px 16px;
}

/* =========================
   HEADER
========================= */
.header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.logo {
  width: 44px;
  height: 44px;
  background: black;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

/* THEME TOGGLE */
.theme-toggle {
  margin-left: auto;
  cursor: pointer;
  font-size: 18px;
  opacity: 0.8;
}

.theme-toggle:hover {
  opacity: 1;
}

/* =========================
   TITLES
========================= */
h2 {
  color: var(--accent);
  font-size: 19px;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: -0.2px;
}

/* =========================
   CARD (STEP 1)
========================= */
.card {
  border: 1px solid #555;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s;
}

.card:hover {
  background: rgba(255,255,255,0.05);
}

.card.primary {
  border: 2px solid var(--accent);
}

.card-content {
  display: flex;
  gap: 14px;
  align-items: center;
}

/* =========================
   ICON
========================= */
.icon {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

/* =========================
   TEXT
========================= */
.text strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.2px;
}

.text span {
  font-size: 14px;
  color: #ccc;
  line-height: 1.35;
}

/* =========================
   BUTTONS (STEP 2)
========================= */
.button {
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 15px;
}

.button.primary {
  background: var(--accent);
  font-weight: 700;
}

.button.secondary {
  border: 1px solid #666;
}

.button.secondary:hover {
  background: rgba(255,255,255,0.05);
}

/* =========================
   MISC
========================= */
.arrow {
  font-size: 18px;
  color: #bbb;
}

.back {
  margin-top: 28px;
  font-size: 14px;
  color: #ccc;
  cursor: pointer;
}

.back:hover {
  color: white;
}

/* =========================
   LIGHT MODE
========================= */
body.light {
  background: #f4f7f6;
  color: #1e2a28;
}

/* header */
body.light .logo {
  background: #ddd;
  color: black;
}

/* titles (FIX: blijft oranje) */
body.light h2 {
  color: var(--accent);
}

/* cards */
body.light .card {
  border: 1px solid #ddd;
  background: white;
}

body.light .card:hover {
  background: #f9fbfa;
}

/* buttons */
body.light .button.primary {
  color: white;
}

body.light .button.secondary {
  border: 1px solid #ccc;
}

body.light .button.secondary:hover {
  background: #f3f5f4;
}

/* text */
body.light .text span {
  color: #666;
}

body.light .arrow {
  color: #999;
}