/*!*************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[3]!./app/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

* {
  box-sizing: border-box;
}

:root {
  --gm-orange: #ff671f;
  --gm-burgundy: #651d32;
  --gm-warm-black: #2a1e2a;
  --gm-steel: #ced9e5;
  --gm-stone: #eae6d8;
  --gm-white: #ffffff;

  --text: var(--gm-warm-black);
  --text-soft: #5a5260;
  --muted: #6d7482;

  --surface: rgba(255, 255, 255, 0.92);
  --surface-solid: #ffffff;
  --line: #d9e2ec;
  --line-strong: #c7d3df;

  --shadow: 0 12px 30px rgba(42, 30, 42, 0.08);
  --shadow-soft: 0 6px 20px rgba(42, 30, 42, 0.05);

  --radius: 24px;
  --radius-sm: 18px;
  --container: 1240px;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: "Inter", Arial, sans-serif;
}

body {
  background: linear-gradient(180deg, #f7f9fc 0%, #eef3f8 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html.dark {
  --text: #f4ede7;
  --text-soft: #d6cdd6;
  --muted: #c2bac2;
  --surface: rgba(42, 30, 42, 0.88);
  --surface-solid: #2a1e2a;
  --line: rgba(206, 217, 229, 0.14);
  --line-strong: rgba(206, 217, 229, 0.24);
  --shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.18);
}

html.dark body {
  background: linear-gradient(180deg, #231c25 0%, #191419 100%);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

p a,
li a,
.section-text a,
.landing-section-text a,
.landing-info-text a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

button,
input,
select,
textarea {
  font: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.site-shell,
.landing-page,
.landing-main {
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
}

/* NAVBAR */
.navbar {
  background: transparent;
  padding: 14px 0 0;
}

.navbar-shell {
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

html.dark .navbar-shell {
  background: rgba(42, 30, 42, 0.9);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-icon {
  height: 40px;
  width: auto;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.brand-logo:hover .brand-icon {
  transform: translateY(-1px) scale(1.03);
  filter: drop-shadow(0 4px 10px rgba(255, 103, 31, 0.22));
}

.brand-text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-button,
.theme-toggle {
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.menu-button:hover,
.theme-toggle:hover {
  color: var(--gm-orange);
}

.mobile-menu {
  border-top: 1px solid var(--line);
}

.mobile-menu-inner {
  display: grid;
  grid-gap: 8px;
  gap: 8px;
  padding: 14px 20px 18px;
}

.nav-link {
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  padding: 8px 0;
}

.nav-link:hover {
  color: var(--gm-orange);
}

/* BREADCRUMB */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  margin-bottom: 14px;
  font-size: 13px;
}

.breadcrumb-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.breadcrumb-sep {
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb-link {
  color: var(--muted);
  font-weight: 500;
  transition: color 0.12s ease;
}

.breadcrumb-link:hover {
  color: var(--gm-orange);
}

.breadcrumb-current {
  color: var(--text-soft);
  font-weight: 600;
}

/* NOT FOUND / ERROR PAGES */
.notfound-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.notfound-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 16px;
  border: none;
  background: linear-gradient(135deg, var(--gm-orange), #e05510);
  color: #fff;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.14s ease, box-shadow 0.14s ease;
}

.notfound-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 103, 31, 0.35);
}

.notfound-button--secondary {
  background: var(--surface-solid);
  color: var(--text);
  border: 1px solid var(--line);
}

.notfound-button--secondary:hover {
  box-shadow: var(--shadow-soft);
  border-color: rgba(255, 103, 31, 0.3);
}

/* LOADING SKELETONS */
@keyframes shimmer {
  0% { background-position: -600px 0; }
  100% { background-position: 600px 0; }
}

.skeleton-hero,
.skeleton-card {
  border-radius: 24px;
  background: linear-gradient(
    90deg,
    var(--line) 25%,
    var(--line-strong) 50%,
    var(--line) 75%
  );
  background-size: 600px 100%;
  animation: shimmer 1.4s infinite linear;
}

.skeleton-hero {
  height: 120px;
}

.skeleton-card {
  height: 180px;
}

.skeleton-card--short {
  height: 100px;
}

/* NAVBAR SEARCH */
.navbar-search-section {
  border-top: 1px solid var(--line);
  padding: 14px 20px 18px;
}

/* HOME MENU */
.home-menu-wrap {
  padding: 14px 0 0;
}

.home-menu-bar {
  display: flex;
  justify-content: flex-end;
}

.home-menu-panel {
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

html.dark .home-menu-panel {
  background: rgba(42, 30, 42, 0.9);
}

/* PAGE LAYOUT */
.landing-main {
  padding: 18px 0 42px;
}

.page-stack {
  display: grid;
  grid-gap: 18px;
  gap: 18px;
}

/* HERO */
.landing-hero {
  padding: 28px 0 18px;
}

.landing-hero-panel {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  min-height: 300px;
  background:
    linear-gradient(rgba(42, 30, 42, 0.52), rgba(42, 30, 42, 0.52)),
    url("/images/testbeeld.jpg") center/cover no-repeat;
  box-shadow: var(--shadow);
}

.landing-hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 103, 31, 0.24), transparent 32%),
    radial-gradient(circle at 100% 100%, rgba(101, 29, 50, 0.2), transparent 30%);
}

.landing-hero-inner {
  position: relative;
  z-index: 1;
  padding: 34px 26px;
  color: var(--gm-white);
}

.landing-eyebrow,
.section-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.landing-eyebrow {
  color: rgba(255, 255, 255, 0.84);
}

.landing-title {
  margin: 0 0 12px;
  max-width: 840px;
  font-size: 38px;
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: var(--gm-white);
}

.landing-text {
  margin: 0;
  max-width: 700px;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}

/* SURFACES */
.landing-card,
.section-hero,
.landing-info-box,
.search-empty {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.landing-card,
.section-hero {
  padding: 22px;
}

.section-hero {
  position: relative;
  overflow: hidden;
}

.section-hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--gm-orange), var(--gm-burgundy));
}

.section-eyebrow {
  color: var(--gm-burgundy);
}

html.dark .section-eyebrow,
html.dark .search-result-meta {
  color: #ff9a6b;
}

.section-title,
.landing-section-title {
  margin: 0 0 8px;
  letter-spacing: -0.035em;
  color: var(--text);
}

.section-title {
  font-size: 30px;
}

.landing-section-title {
  font-size: 24px;
}

.section-text,
.landing-section-text,
.home-category-text,
.subcategory-meta,
.search-result-place,
.search-result-team,
.landing-info-text {
  color: var(--text-soft);
  line-height: 1.6;
}

.section-text,
.landing-section-text {
  margin: 0;
}

.landing-section-text {
  margin-bottom: 16px;
}

/* SEARCH */
.landing-search-wrap {
  position: relative;
}

.landing-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #7b8798;
  font-size: 18px;
  pointer-events: none;
}

.landing-search-input {
  width: 100%;
  padding: 15px 16px 15px 46px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface-solid);
  color: var(--text);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.landing-search-input:focus {
  border-color: var(--gm-orange);
  box-shadow: 0 0 0 4px rgba(255, 103, 31, 0.12);
}

html.dark .landing-search-input {
  background: rgba(255, 255, 255, 0.04);
}

.search-results-list {
  margin-top: 14px;
  display: grid;
  grid-gap: 10px;
  gap: 10px;
}

/* GRID */
.home-categories-grid,
.subcategory-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 12px;
  gap: 12px;
}

/* CARDS */
.home-category-card,
.subcategory-card,
.search-result-card {
  display: block;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    border-color 0.12s ease;
}

html.dark .home-category-card,
html.dark .subcategory-card,
html.dark .search-result-card {
  background: linear-gradient(
    180deg,
    rgba(58, 45, 58, 0.96) 0%,
    rgba(44, 34, 44, 0.96) 100%
  );
  border-color: var(--line);
}

.home-category-card:hover,
.subcategory-card:hover,
.search-result-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 103, 31, 0.35);
  box-shadow: 0 14px 28px rgba(42, 30, 42, 0.08);
}

.home-category-title,
.subcategory-title,
.search-result-title {
  color: var(--text);
  letter-spacing: -0.03em;
}

.home-category-title,
.subcategory-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.search-result-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.search-result-meta {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gm-burgundy);
  margin-bottom: 8px;
  font-weight: 700;
}

.search-result-place {
  margin-bottom: 6px;
}

/* INFO BOX */
.landing-info-box {
  padding: 22px;
  background: linear-gradient(
    135deg,
    var(--gm-warm-black) 0%,
    var(--gm-burgundy) 100%
  );
  border-color: transparent;
  color: var(--gm-white);
}

html.dark .landing-info-box {
  background: linear-gradient(135deg, #3a2630 0%, #651d32 100%);
}

.landing-info-title {
  margin: 0 0 8px;
  font-size: 20px;
  color: var(--gm-white);
  letter-spacing: -0.03em;
}

.landing-info-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

/* EMPTY */
.search-empty {
  padding: 16px 18px;
  color: var(--text-soft);
}

/* DETAIL PAGE HELPERS */
.detail-grid {
  display: grid;
  grid-gap: 20px;
  gap: 20px;
}

.detail-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  padding: 22px;
}

.info-item {
  margin-bottom: 14px;
}

.info-label {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 4px;
}

.info-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .landing-hero {
    padding: 34px 0 22px;
  }

  .landing-hero-panel {
    min-height: 360px;
  }

  .landing-hero-inner {
    padding: 42px 36px;
  }

  .landing-title {
    font-size: 58px;
  }

  .landing-text {
    font-size: 18px;
  }

  .landing-card,
  .section-hero,
  .detail-card {
    padding: 26px;
  }

  .section-title {
    font-size: 40px;
  }

  .landing-section-title {
    font-size: 26px;
  }

  .home-categories-grid,
  .subcategory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-grid {
    grid-template-columns: 2fr 1fr;
    align-items: start;
  }
}

.hero-banner {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  display: flex;
  align-items: stretch;
  padding: 0;
}

.hero-banner-media {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  z-index: 0;
  -webkit-clip-path: polygon(16% 0, 100% 0, 100% 100%, 4% 100%);
          clip-path: polygon(16% 0, 100% 0, 100% 100%, 4% 100%);
}

.hero-banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(1.03) contrast(1.03);
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

html.dark .hero-banner-overlay {
  background:
    linear-gradient(
      102deg,
      rgba(35, 28, 37, 1) 0%,      /* volledig solid links */
      rgba(35, 28, 37, 0.98) 20%,
      rgba(35, 28, 37, 0.95) 35%,
      rgba(35, 28, 37, 0.85) 50%,  /* 🔥 langer sterk */
      rgba(35, 28, 37, 0.65) 60%,
      rgba(35, 28, 37, 0.4) 70%,
      rgba(35, 28, 37, 0.18) 80%,
      rgba(35, 28, 37, 0.06) 88%,
      rgba(35, 28, 37, 0) 96%
    ),
    linear-gradient(
      135deg,
      rgba(255, 103, 31, 0.14) 0%,
      rgba(101, 29, 50, 0.08) 40%,
      rgba(0, 0, 0, 0) 100%
    );
}
html:not(.dark) .hero-banner-overlay {
  background:
    linear-gradient(
      102deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0.98) 20%,
      rgba(255, 255, 255, 0.95) 35%,
      rgba(247, 249, 252, 0.85) 50%,
      rgba(247, 249, 252, 0.6) 60%,
      rgba(247, 249, 252, 0.35) 70%,
      rgba(247, 249, 252, 0.16) 80%,
      rgba(247, 249, 252, 0.05) 88%,
      rgba(247, 249, 252, 0) 96%
    ),
    linear-gradient(
      135deg,
      rgba(255, 103, 31, 0.08) 0%,
      rgba(101, 29, 50, 0.04) 40%,
      rgba(255, 255, 255, 0) 100%
    );
}

.hero-banner-content {
  position: relative;
  z-index: 2;
  width: min(64%, 760px);
  padding: 30px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 900px) {
  .hero-banner {
    min-height: 220px;
  }

  .hero-banner-media {
    width: 100%;
    -webkit-clip-path: none;
            clip-path: none;
  }

  .hero-banner-content {
    width: 100%;
    padding: 24px;
  }

  html.dark .hero-banner-overlay {
    background: linear-gradient(
      180deg,
      rgba(35, 28, 37, 0.92) 0%,
      rgba(35, 28, 37, 0.72) 44%,
      rgba(35, 28, 37, 0.44) 72%,
      rgba(35, 28, 37, 0.20) 100%
    );
  }

  html:not(.dark) .hero-banner-overlay {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.90) 0%,
      rgba(247, 249, 252, 0.70) 44%,
      rgba(247, 249, 252, 0.40) 72%,
      rgba(247, 249, 252, 0.16) 100%
    );
  }
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--gm-orange), var(--gm-burgundy));
  z-index: 3;
}

.detail-inline-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  word-break: break-word;
}

.detail-inline-link:hover {
  color: var(--gm-orange);
}

.detail-map-item {
  margin-top: 18px;
}

.detail-map-link {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.detail-mini-map {
  width: 100%;
  height: 190px;
  border: 0;
  display: block;
  filter: grayscale(0.15) contrast(1.02);
}

.detail-map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 12px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 45%,
    rgba(35, 28, 37, 0.38) 100%
  );
}

.detail-map-badge {
  background: rgba(42, 30, 42, 0.82);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}

html:not(.dark) .detail-map-overlay {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 45%,
    rgba(247, 249, 252, 0.42) 100%
  );
}

html:not(.dark) .detail-map-badge {
  background: rgba(255, 255, 255, 0.88);
  color: var(--gm-warm-black);
  border: 1px solid rgba(42, 30, 42, 0.08);
}

.theme-toggle,
.menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface-solid);
  color: var(--text);
  transition:
    transform 0.14s ease,
    border-color 0.14s ease,
    background 0.14s ease,
    color 0.14s ease;
}

.theme-toggle:hover,
.menu-button:hover {
  transform: translateY(-1px);
  color: var(--gm-orange);
  border-color: rgba(255, 103, 31, 0.35);
}

.detail-richtext > *:first-child {
  margin-top: 0;
}

.detail-richtext > *:last-child {
  margin-bottom: 0;
}

.detail-inline-link {
  word-break: break-word;
}

.detail-map-link {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface-solid);
}

.detail-mini-map {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
}

.detail-map-overlay {
  position: absolute;
  inset: auto 12px 12px auto;
}

.detail-map-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(42, 30, 42, 0.82);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}

html:not(.dark) .detail-map-badge {
  background: rgba(255, 255, 255, 0.92);
  color: var(--gm-warm-black);
  border: 1px solid rgba(42, 30, 42, 0.08);
}

@media (max-width: 900px) {
  .detail-mini-map {
    height: 200px;
  }
}

.detail-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 12px;
  gap: 12px;
  margin-bottom: 18px;
}

.detail-stat-pill {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    var(--surface-solid);
}

.detail-stat-value {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
}

.detail-stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

@media (max-width: 640px) {
  .detail-stats {
    grid-template-columns: 1fr;
  }
}

.detail-map-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;

  background: linear-gradient(
    135deg,
    rgba(255, 103, 31, 0.9),
    rgba(255, 103, 31, 0.7)
  );

  color: #fff;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}

.ob-gallery {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.ob-gallery-header {
  margin-bottom: 14px;
}

.ob-gallery-title {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
}

.ob-gallery-text {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.ob-gallery-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ob-position-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-solid);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.16s ease,
    border-color 0.16s ease,
    background 0.16s ease,
    color 0.16s ease;
}

.ob-position-button:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 103, 31, 0.32);
  color: var(--gm-orange);
}

.ob-position-count {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 700;
}

html:not(.dark) .ob-position-count {
  background: rgba(42, 30, 42, 0.06);
}

.ob-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(12, 8, 14, 0.68);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}

.ob-modal {
  width: min(1100px, 100%);
  max-height: min(88vh, 920px);
  overflow: auto;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    var(--surface-solid);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.ob-modal-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.ob-modal-eyebrow {
  margin-bottom: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gm-orange);
}

.ob-modal-title {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.1;
  color: var(--text);
}

.ob-modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-solid);
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
  transition:
    transform 0.16s ease,
    border-color 0.16s ease,
    color 0.16s ease;
}

.ob-modal-close:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 103, 31, 0.32);
  color: var(--gm-orange);
}

.ob-modal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 16px;
  gap: 16px;
}

.ob-modal-image-card {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface-solid);
  text-decoration: none;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.ob-modal-image-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 103, 31, 0.32);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.ob-modal-image {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .ob-modal-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .ob-modal-backdrop {
    padding: 14px;
  }

  .ob-modal {
    padding: 16px;
    border-radius: 18px;
  }

  .ob-modal-grid {
    grid-template-columns: 1fr;
  }

  .ob-modal-image {
    height: auto;
  }

  .ob-gallery-buttons {
    gap: 8px;
  }

  .ob-position-button {
    width: 100%;
    justify-content: space-between;
  }
}

.ob-position-button--empty,
.ob-position-button:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

.ob-position-button--empty:hover,
.ob-position-button:disabled:hover {
  transform: none;
  color: var(--text);
  border-color: var(--line);
}

/* ─── Camera Position Gallery ─────────────────────────────────────── */

.cam-gallery {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.cam-gallery-header {
  margin-bottom: 14px;
}

.cam-gallery-title {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
}

/* Category button grid */
.cam-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  grid-gap: 10px;
  gap: 10px;
}

.cam-category-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-solid);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition:
    transform 0.16s ease,
    border-color 0.16s ease,
    color 0.16s ease;
}

.cam-category-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 103, 31, 0.32);
  color: var(--gm-orange);
}

/* Positions view */
.cam-positions-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.cam-back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-solid);
  color: var(--text);
  font-size: 1.3rem;
  cursor: pointer;
  flex-shrink: 0;
  transition:
    transform 0.16s ease,
    border-color 0.16s ease,
    color 0.16s ease;
}

.cam-back-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 103, 31, 0.32);
  color: var(--gm-orange);
}

.cam-positions-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
}

.cam-positions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  grid-gap: 16px;
  gap: 16px;
}

/* Position card */
.cam-position-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface-solid);
}

.cam-position-name {
  margin: 10px 12px 2px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.cam-position-note {
  margin: 0 12px 12px;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Carousel */
.cam-carousel {
  position: relative;
}

.cam-carousel__track {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  aspect-ratio: 4 / 3;
}

.cam-carousel__track--clickable {
  cursor: zoom-in;
}

.cam-carousel__zoom-hint {
  position: absolute;
  bottom: 8px;
  right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.16s ease;
  pointer-events: none;
}

.cam-carousel__track--clickable:hover .cam-carousel__zoom-hint {
  opacity: 1;
}

.cam-carousel__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cam-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  transition: background 0.14s ease;
  line-height: 1;
  padding: 0;
}

.cam-carousel__arrow:hover {
  background: rgba(255, 103, 31, 0.75);
}

.cam-carousel__arrow--prev {
  left: 8px;
}

.cam-carousel__arrow--next {
  right: 8px;
}

.cam-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 8px 0 4px;
}

.cam-carousel__dot {
  width: 7px;
  height: 7px;
  border: none;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  padding: 0;
  transition: background 0.14s ease;
}

.cam-carousel__dot--active {
  background: var(--gm-orange);
}

/* Lightbox */
.cam-lightbox-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.82);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.cam-lightbox {
  width: min(960px, 100%);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cam-lightbox-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cam-lightbox-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.cam-lightbox-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.14s ease, border-color 0.14s ease;
}

.cam-lightbox-close:hover {
  background: rgba(255, 103, 31, 0.25);
  border-color: rgba(255, 103, 31, 0.5);
}

.cam-lightbox-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cam-lightbox-img {
  display: block;
  max-width: 100%;
  max-height: 76vh;
  border-radius: 16px;
  object-fit: contain;
}

.cam-lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  transition: background 0.14s ease;
  line-height: 1;
  padding: 0;
}

.cam-lightbox-arrow:hover {
  background: rgba(255, 103, 31, 0.75);
}

.cam-lightbox-arrow--prev { left: 12px; }
.cam-lightbox-arrow--next { right: 12px; }

.cam-lightbox-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 4px 0;
}

@media (max-width: 640px) {
  .cam-category-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cam-positions-grid {
    grid-template-columns: 1fr;
  }

  .cam-lightbox-backdrop {
    padding: 12px;
  }

  .cam-lightbox-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.4rem;
  }
}

/* ── Stadion bekabeling (cabling cards) ──────────────────────────────────── */

.cabling-section {
  margin-top: 16px;
}

.cabling-toggle-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 12px 16px;
  background: var(--surface-solid, #1e1e1e);
  border: 1px solid var(--line, #333);
  border-radius: 10px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
}

.cabling-toggle-btn:hover {
  background: color-mix(in srgb, var(--gm-orange) 12%, var(--surface-solid));
  border-color: var(--gm-orange);
}

.cabling-toggle-icon {
  margin-left: auto;
  flex-shrink: 0;
  transition: transform 0.2s ease;
  color: var(--gm-orange);
}

.cabling-toggle-icon--open {
  transform: rotate(180deg);
}

.cabling-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  grid-gap: 10px;
  gap: 10px;
  margin-top: 10px;
}

.cabling-card {
  background: var(--surface-solid, #1e1e1e);
  border: 1px solid var(--line, #333);
  border-radius: 10px;
  padding: 14px 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.15s;
}

.cabling-card:hover {
  border-color: var(--gm-orange);
}

.cabling-card-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.cabling-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.cabling-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: color-mix(in srgb, var(--gm-orange) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--gm-orange) 30%, transparent);
  border-radius: 6px;
  padding: 4px 10px;
  min-width: 54px;
}

.cabling-badge--spanning {
  background: color-mix(in srgb, var(--gm-purple, #7c3aed) 10%, transparent);
  border-color: color-mix(in srgb, var(--gm-purple, #7c3aed) 30%, transparent);
}

.cabling-badge-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gm-orange);
  line-height: 1;
  margin-bottom: 2px;
}

.cabling-badge--spanning .cabling-badge-label {
  color: var(--gm-purple, #a78bfa);
}

.cabling-badge-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.cabling-badge--spanning .cabling-badge-value {
  font-size: 0.8rem;
  font-weight: 600;
}

.cabling-card-notes {
  font-size: 0.78rem;
  color: color-mix(in srgb, var(--text) 60%, transparent);
  line-height: 1.4;
  border-top: 1px solid var(--line, #333);
  padding-top: 8px;
}

@media (max-width: 480px) {
  .cabling-cards-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
}
