:root {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #1f2937;
  background-color: #f7f8fc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  line-height: 1.6;
}

.site-page {
  background:
    radial-gradient(900px 420px at 8% -8%, rgba(217, 119, 6, 0.2), transparent 62%),
    radial-gradient(900px 420px at 92% 0%, rgba(148, 163, 184, 0.2), transparent 62%),
    linear-gradient(180deg, #0b1220 0%, #10192b 45%, #172033 100%);
  color: #e2e8f0;
}

.container {
  width: min(1080px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #e5e7eb;
}

.site-page .site-header {
  background: rgb(9, 14, 25);
  border-bottom: 1px solid rgba(148, 163, 184, 0.28);
}

.site-page .brand {
  color: #f8fafc;
}

.site-page .site-nav a {
  color: #cbd5e1;
}

.site-page .site-nav a:hover,
.site-page .site-nav a.active {
  background: rgba(217, 119, 6, 0.2);
  color: #f8fafc;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 72px;
}

.brand {
  margin: 0;
  font-size: 1.05rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.site-nav a {
  color: #334155;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 7px 10px;
  border-radius: 8px;
  white-space: nowrap;
  flex: 0 0 auto;
}

.site-nav a:hover,
.site-nav a.active {
  background: #e2e8f0;
  color: #0f172a;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: inherit;
  padding: 4px 8px;
  line-height: 1;
}

.site-page .nav-toggle {
  color: #f8fafc;
}

@media (max-width: 640px) {
  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 4px;
    padding: 8px 0 12px;
  }

  .site-nav.nav-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 10px 12px;
  }
}

.hero {
  padding: 48px 0 22px;
}

.hero-carousel-wrap {
  padding-top: 26px;
}

.hero-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.15;
}

.hero p {
  margin-top: 0;
}

.hero-image {
  width: 100%;
  border-radius: 18px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.carousel {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #dbe3ef;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.14);
}

.carousel-track {
  position: relative;
  min-height: 520px;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.55s ease;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  color: #fff;
  background: linear-gradient(130deg, rgba(2, 6, 23, 0.85), rgba(15, 23, 42, 0.56));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 16px 18px;
}

.carousel-caption h2 {
  margin: 0 0 8px;
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1.2;
}

.carousel-caption p {
  margin: 0;
  color: #e5e7eb;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.82);
  color: #fff;
  padding: 0;
}

.carousel-nav.prev {
  left: 12px;
}

.carousel-nav.next {
  right: 12px;
}

.carousel-dots {
  position: absolute;
  z-index: 4;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.62);
}

.carousel-dot.active {
  background: #fff;
}

.quick-menu {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.quick-item {
  display: block;
  text-decoration: none;
  color: #0f172a;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(237, 244, 255, 0.88));
  border: 1px solid rgba(203, 213, 225, 0.72);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(3px);
}

.site-page .quick-item {
  color: #f8fafc;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.88), rgba(30, 41, 59, 0.78));
  border: 1px solid rgba(217, 119, 6, 0.35);
  box-shadow: 0 14px 32px rgba(2, 6, 23, 0.42);
}

.site-page .quick-item p {
  color: #cbd5e1;
}

.quick-item h3 {
  margin: 0 0 8px;
}

.quick-item p {
  margin: 0;
  color: #475569;
}

.quick-item:hover {
  transform: translateY(-2px);
}

.site-page .content-section {
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.45);
  backdrop-filter: blur(3px);
}

.site-page .content-section h2,
.site-page .content-section h3 {
  color: #f8fafc;
}

.site-page .content-section p,
.site-page .content-section li,
.site-page .content-section a {
  color: #cbd5e1;
}

.site-page .card {
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.94) 0%, rgba(30, 41, 59, 0.88) 100%);
  border: 1px solid rgba(217, 119, 6, 0.3);
  box-shadow: 0 8px 24px rgba(2, 6, 23, 0.44);
}

.site-page .service-list li {
  padding: 5px 0;
}

.reveal-on-scroll {
  opacity: 1;
}

.gallery-section {
  overflow: hidden;
}

.image-marquee {
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.image-marquee-track {
  display: flex;
  gap: 10px;
  width: max-content;
  padding: 10px;
  animation: marqueeMove 30s linear infinite;
}

.image-marquee-track img {
  width: 260px;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

.parallax-strip {
  position: relative;
  min-height: 260px;
  background-image:
    linear-gradient(120deg, rgba(15, 23, 42, 0.7), rgba(30, 58, 138, 0.48)),
    url("https://images.unsplash.com/photo-1519415943484-a27305ea8b11?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.parallax-content {
  max-width: 520px;
  color: #f8fafc;
}

.parallax-content p {
  color: #e2e8f0;
}

@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Verticale zijbalk fotostroken */
.side-strip {
  display: none;
  position: fixed;
  top: 0;
  width: calc((100vw - 1080px) / 2 - 8px);
  height: 100vh;
  overflow: hidden;
  z-index: 5;
  pointer-events: none;
}

.side-strip-left {
  left: 0;
}

.side-strip-right {
  right: 0;
}

.side-strip-track {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px;
  animation: stripDown 25s linear infinite;
}

.side-strip-track-reverse {
  animation: stripUp 25s linear infinite;
  animation-delay: -12.5s;
}

.side-strip-track img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
  opacity: 0.75;
}

@keyframes stripDown {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}

@keyframes stripUp {
  from { transform: translateY(-50%); }
  to   { transform: translateY(0); }
}

@media (min-width: 1300px) {
  .side-strip {
    display: block;
  }
}

.btn-legacy,
button.btn-legacy {
  display: inline-block;
  background: #0f172a;
  color: #fff;
  border: 0;
  border-radius: 10px;
  padding: 10px 16px;
  text-decoration: none;
  cursor: pointer;
  font: inherit;
}

.btn-legacy:hover,
button.btn-legacy:hover {
  opacity: 0.93;
}

main {
  padding: 10px 0 36px;
}

.content-section {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 18px;
}

.content-section h2 {
  margin-top: 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.card {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px;
  background: #fff;
}

.service-list {
  margin: 0;
  padding-left: 18px;
}

.service-list li {
  margin-bottom: 5px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.pricing-table th,
.pricing-table td {
  text-align: left;
  padding: 10px;
  border-bottom: 1px solid #e2e8f0;
}

.site-page .pricing-table {
  color: #e2e8f0;
  border-color: rgba(148, 163, 184, 0.35);
}

.site-page .pricing-table.table > :not(caption) > * > * {
  background: rgba(15, 23, 42, 0.72);
  color: #e2e8f0;
  border-bottom-color: rgba(148, 163, 184, 0.35);
  box-shadow: none;
}

.site-page .pricing-table.table-striped > tbody > tr:nth-of-type(odd) > * {
  background: rgba(30, 41, 59, 0.72);
}

.site-page .pricing-table thead th {
  color: #f8fafc;
  background: rgba(15, 23, 42, 0.9);
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

.image-grid img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 12px;
}

.site-footer {
  border-top: 1px solid #e5e7eb;
  background: #fff;
  padding: 20px 0;
  margin-top: 14px;
  position: relative;
  z-index: 10;
}

.site-page .site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.34);
  background:
    radial-gradient(900px 320px at 0% 0%, rgba(30, 64, 175, 0.35), transparent 65%),
    radial-gradient(900px 320px at 100% 0%, rgba(15, 23, 42, 0.55), transparent 68%),
    linear-gradient(135deg, #0f172a 0%, #1e3a8a 55%, #1e293b 100%);
}

.site-page .site-footer,
.site-page .site-footer a,
.site-page .site-footer small,
.site-page .site-footer strong {
  color: #e2e8f0;
}

.site-page .site-footer a:hover {
  color: #f8fafc;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #334155;
}

.admin {
  max-width: 700px;
  padding: 36px 0;
}

form {
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 10px;
  font: inherit;
}

.actions {
  display: flex;
  gap: 8px;
}

.muted {
  color: #6b7280;
}

.session-badge {
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 50;
  background: #ef4444;
  color: #000;
  border: 2px solid #000;
  border-radius: 10px;
  padding: 8px 12px;
  font-weight: 700;
  display: flex;
  gap: 8px;
  align-items: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.pricing-table .price-cell {
  min-width: 140px;
}

.pricing-table .order-cell {
  width: 64px;
}

.pricing-table input {
  min-width: 0;
}

.category-input,
.service-input,
.price-input {
  width: 100%;
}

.price-input {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.delete-row-btn {
  white-space: nowrap;
}

.drag-handle {
  background: #334155;
  color: #fff;
  width: 40px;
  padding: 8px 0;
  text-align: center;
  cursor: grab;
}

.drag-handle:active {
  cursor: grabbing;
}

#pricingRows tr.dragging {
  opacity: 0.5;
}

.danger-btn {
  background: #ef4444;
  color: #000;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.modal-backdrop[hidden] {
  display: none !important;
}

.confirm-modal {
  background: #fff;
  border: 1px solid #111827;
  border-radius: 12px;
  width: min(380px, 92vw);
  padding: 20px;
}

.confirm-modal h3 {
  margin: 0 0 14px;
}

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .carousel-track {
    min-height: 380px;
  }

  .carousel-caption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px;
  }

  .quick-menu {
    grid-template-columns: 1fr;
  }

  .parallax-strip {
    background-attachment: scroll;
  }

  .image-marquee-track img {
    width: 220px;
    height: 155px;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0;
  }

  .site-nav {
    width: 100%;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .content-section {
    padding: 18px;
    border-radius: 14px;
  }

  .pricing-table {
    min-width: 680px;
  }

  .actions {
    flex-wrap: wrap;
  }

  .session-badge {
    top: 8px;
    right: 8px;
    padding: 7px 10px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(1080px, 94vw);
  }

  .hero {
    padding: 24px 0 14px;
  }

  .hero-carousel-wrap {
    padding-top: 14px;
  }

  .carousel {
    border-radius: 16px;
  }

  .carousel-track {
    min-height: 300px;
  }

  .carousel-caption {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 10px;
    border-radius: 12px;
  }

  .carousel-caption p {
    display: none;
  }

  .carousel-nav {
    width: 36px;
    height: 36px;
  }

  .quick-item,
  .card {
    padding: 12px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .image-marquee-track img {
    width: 180px;
    height: 130px;
  }

  .site-footer {
    padding: 16px 0;
  }

  .footer-links {
    gap: 8px;
  }

  .site-nav {
    flex-wrap: wrap;
    overflow-x: visible;
    gap: 8px;
  }

  .site-page .pricing-table {
    min-width: 0;
    border-collapse: separate;
    border-spacing: 0 10px;
  }

  .site-page .pricing-table thead {
    display: none;
  }

  .site-page .pricing-table tbody {
    display: block;
  }

  .site-page .pricing-table tr {
    display: block;
    background: rgba(15, 23, 42, 0.86);
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 12px;
    padding: 10px;
  }

  .site-page .pricing-table td {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 8px;
    padding: 6px 2px;
    border-bottom: 0;
    font-size: 0.95rem;
  }

  .site-page .pricing-table td::before {
    content: attr(data-label);
    color: #94a3b8;
    font-weight: 700;
    letter-spacing: 0.01em;
  }

  .site-page .pricing-table td:last-child {
    font-weight: 700;
    color: #f8fafc;
  }

  .session-badge {
    border-width: 1px;
    font-size: 0.9rem;
  }
}
