@import url("https://fonts.googleapis.com/css2?family=Bangers&family=Outfit:wght@300;400;500;600;700;800&display=swap");

/* Layout: navigation, page structure, grids, flow layout and footer. */

.navigatie {
  background: transparent;
  color: #fff;
  padding: 0 var(--page-padding) 0;
  z-index: 3;
  margin-bottom: 8px;
  transform: translateY(-16px);
  border-bottom: none;
  box-shadow: none;
}

.nav-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
}

.navigatie-merk {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex-shrink: 0;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-beeld {
  width: clamp(104px, 16vw, 200px);
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.45));
  transform: translateY(-4px);
  transform-origin: center;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.nav-logo:hover .logo-beeld {
  transform: translateY(-4px) scale(1.08);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.45));
}

.nav-logo:focus-within .logo-beeld {
  transform: translateY(-4px) scale(1.08);
}

@media (prefers-reduced-motion: reduce) {
  .logo-beeld {
    transition: none;
  }

  .nav-logo:hover .logo-beeld,
  .nav-logo:focus-within .logo-beeld {
    transform: translateY(-4px);
  }
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  margin-left: auto;
  margin-top: 42px;
  min-width: 0;
  position: relative;
}

.navigatie-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  line-height: 1;
}

.navigatie-links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: opacity 0.2s ease;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  display: inline-flex;
  align-items: center;
  height: 36px;
  line-height: 1;
}

.navigatie-links a:hover {
  opacity: 0.9;
}

.navigatie-acties {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.navigatie-knop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  min-height: 36px;
  height: 36px;
  padding: 0 18px;
  font-size: 0.95rem;
  transform: translateY(-1px);
  min-width: 0;
}

body.light-mode .navigatie {
  background: transparent;
  backdrop-filter: blur(10px);
  box-shadow: none;
  border-bottom: none;
}

body.light-mode #themeToggle {
  color: #4a2f1a;
  background: linear-gradient(135deg, rgba(255, 248, 235, 0.95), rgba(247, 189, 122, 0.95));
  border: 1px solid rgba(180, 110, 54, 0.34);
  box-shadow: 0 8px 18px rgba(174, 106, 46, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

body.light-mode #themeToggle:hover {
  color: #fff;
  background: linear-gradient(135deg, #ffb968, #f97316 60%, #e8610d);
  box-shadow: 0 12px 24px rgba(174, 95, 33, 0.28);
}

body.light-mode #themeToggle[aria-pressed="true"] {
  color: #fff;
  background: linear-gradient(135deg, #ffb15b, #f97316 58%, #e85c07);
  border-color: rgba(193, 104, 40, 0.68);
  box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.22), 0 14px 26px rgba(164, 86, 31, 0.28);
}

.menu-knop {
  display: none;
  width: 42px;
  height: 38px;
  min-width: 0;
  min-height: 0;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  padding: 6px 8px;
  gap: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.menu-knop span {
  display: block;
  width: 20px;
  height: 2px;
  background: rgba(255, 255, 255, 0.8);
}

main {
  display: flex;
  justify-content: center;
  padding: 6px var(--page-padding) 20px;
  position: relative;
  z-index: 1;
}

.checker-wrapper {
  max-width: 1000px;
  width: 100%;
  min-width: 0;
}

.flow {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wizard-viewport {
  position: relative;
  width: 100%;
  min-height: 280px;
}

.wizard-viewport > section {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin-top: 0;
  padding-top: 8px;
  opacity: 1;
  transform: none;
  display: none;
}

.wizard-viewport > section.is-active {
  display: block;
  animation: stepFade 0.25s ease-out both;
}

.wizard-viewport > section.hidden {
  display: none !important;
}

@keyframes stepFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.flow-container {
  position: relative;
}

.flow-section {
  margin-top: 18px;
  text-align: center;
  min-width: 0;
}

.flow-section:first-child {
  margin-top: 0;
}

@media (prefers-reduced-motion: reduce) {
  .wizard-viewport > section.is-active {
    animation: none;
  }
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: 16px;
  margin: 14px auto 0;
  justify-content: center;
  width: 100%;
  max-width: 940px;
}

#step-bbq .grid,
#step-methode .grid,
#step-aansteken .grid,
#step-accessoires .grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 220px));
  gap: 14px;
  margin-top: 12px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.grid > * {
  min-width: 0;
}

#step-methode .grid,
#step-aansteken .grid,
#step-accessoires .grid {
  justify-items: center;
}

#step-accessoires .grid {
  display: grid;
  justify-items: center;
  align-items: stretch;
}

footer {
  text-align: center;
  padding: 30px 16px 40px;
  font-size: 0.9rem;
  color: rgba(244, 244, 243, 0.62);
}

@media (max-width: 980px) {
  .navigatie {
    padding: 0 var(--page-padding) 0;
    transform: translateY(-12px);
  }

  .nav-menu {
    margin-top: 8px;
  }

  .logo-beeld {
    width: clamp(92px, 22vw, 148px);
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .nav-inner {
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .navigatie {
    padding: 4px var(--page-padding) 0;
    gap: 16px;
    transform: none;
  }

  .nav-menu {
    flex: 1;
    min-width: 0;
    margin-top: 0;
    gap: 10px;
  }

  .navigatie-links {
    display: none;
  }

  .navigatie-links.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 190px;
    padding: 10px;
    border-radius: 12px;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.5);
    z-index: 6;
  }

  .navigatie-links.is-open a {
    height: auto;
    min-height: 36px;
    padding: 8px 10px;
    border-radius: 10px;
    text-shadow: none;
  }

  .navigatie-links.is-open a:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .menu-knop {
    display: flex;
    width: 44px;
    height: 44px;
  }

  main {
    padding: 6px var(--page-padding) 20px;
  }

  .grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr));
    gap: 14px;
    max-width: 520px;
  }

  #step-bbq .grid,
  #step-methode .grid,
  #step-aansteken .grid,
  #step-accessoires .grid {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    gap: 12px;
    width: 100%;
    max-width: 100%;
  }

  .navigatie-acties {
    gap: 8px;
  }

  .navigatie-knop {
    min-height: 44px;
    height: auto;
    padding: 0 12px;
    font-size: 0.9rem;
  }

  .logo-beeld {
    width: clamp(92px, 30vw, 128px);
  }
}

@media (max-width: 600px) {
  .nav-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
  }

  .nav-menu {
    justify-content: flex-end;
  }

  .navigatie-acties {
    gap: 6px;
  }

  .navigatie-knop {
    min-height: 44px;
    padding: 0 11px;
    font-size: 0.86rem;
    white-space: nowrap;
  }

  .navigatie-links.is-open {
    width: min(220px, calc(100vw - (var(--page-padding) * 2)));
    min-width: 0;
  }
}

@media (max-width: 480px) {
  .navigatie {
    padding: 6px var(--page-padding) 0;
    margin-bottom: 4px;
  }

  .nav-inner {
    gap: 8px;
  }

  .logo-beeld {
    width: clamp(74px, 26vw, 104px);
  }

  .navigatie-knop {
    font-size: 0.78rem;
    padding: 0 8px;
    min-height: 42px;
    height: auto;
  }

  .menu-knop {
    width: 42px;
    height: 42px;
    padding: 5px 7px;
  }

  #step-bbq .grid,
  #step-methode .grid,
  #step-aansteken .grid,
  #step-accessoires .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    max-width: 100%;
  }

  .navigatie-links.is-open {
    right: -2px;
    min-width: 0;
  }
}

@media (max-width: 360px) {
  .navigatie-knop {
    font-size: 0.74rem;
    padding: 0 7px;
  }

  .menu-knop {
    width: 40px;
    height: 40px;
  }
}
