:root {
  color-scheme: only light;
  --primary: #f7931a;
  --primary-dark: #db7f12;

  --land: #2e7d32;
  --land-dark: #1b5e20;
  --land-soft: #eaf5eb;

  --sea: #1565c0;
  --sea-dark: #0d47a1;
  --sea-soft: #e8f1fb;

  --dark: #222222;
  --text: #333333;
  --muted: #666666;
  --light: #f6f3ed;
  --white: #ffffff;
  --border: #e8dfd1;

  --shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 16px 34px rgba(0, 0, 0, 0.10);

  --radius: 16px;
  --max-width: 1120px;
  --menu-width: 280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--light);
  color: var(--text);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  color: var(--dark);
}

p {
  margin-top: 0;
}

.container {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.logo-image {
  width: 138px;
  height: auto;
}

/* MENU */
.nav-shell {
  display: flex;
  align-items: center;
  position: relative;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid transparent;
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  z-index: 1201;
}

.menu-toggle:hover {
  background: rgba(0, 0, 0, 0.035);
  border-color: var(--border);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  position: relative;
  margin: 0 auto;
  transition: transform 0.25s ease, opacity 0.25s ease;
  content: "";
}

.menu-toggle span::before {
  position: absolute;
  top: -7px;
}

.menu-toggle span::after {
  position: absolute;
  top: 7px;
}

.menu-toggle.active span {
  background: transparent;
}

.menu-toggle.active span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle.active span::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav > a,
.nav-dropdown-toggle {
  min-height: 42px;
  padding: 10px 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--dark);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
  text-decoration: none;
}

.site-nav > a:hover,
.nav-dropdown-toggle:hover,
.site-nav > a:focus,
.nav-dropdown-toggle:focus {
  background: rgba(0, 0, 0, 0.045);
  outline: none;
  text-decoration: none;
}

body.page-home .nav-home,
body.page-contact .nav-contact,
body.page-sv .nav-sv {
  background: var(--primary);
  color: var(--white);
}

/* DROPDOWN */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle::after {
  content: "▾";
  margin-left: 8px;
  font-size: 0.85rem;
  transition: transform 0.2s ease;
}

.nav-dropdown.open .nav-dropdown-toggle::after {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-hover);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 1200;
}

.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus {
  background: #faf5ec;
  outline: none;
  text-decoration: none;
}

/* OVERLAY */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
  z-index: 1090;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.42)),
    url("Achtergrond.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1);
  animation: heroZoomOnce 10s ease 1;
  z-index: 0;
}

@keyframes heroZoomOnce {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 110px 20px;
  text-align: center;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 14px;
  line-height: 1.08;
}

.hero-text,
.hero p {
  max-width: 760px;
  margin: 0 auto 28px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.94);
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-notes {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 700;
}

/* PAGE HEAD */
.page-head {
  padding: 40px 0 22px;
}

.page-head-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f3ea 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 32px 28px;
}

.page-head-card p {
  margin-bottom: 0;
  color: var(--muted);
}

/* LAYOUT */
.section {
  padding: 56px 0;
}

.section-tight {
  padding-top: 14px;
}

.section-soft {
  background: #faf7f2;
}

.section-highlight {
  background: linear-gradient(135deg, #ffffff 0%, #f8f3ea 100%);
}

.section-head {
  margin-bottom: 24px;
}

.section-subtitle {
  margin: 0;
  color: var(--muted);
}

.notice {
  background: #fff8ef;
  border: 1px solid #f2d7ae;
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 22px;
}

.stack {
  display: grid;
  gap: 22px;
}

.card-grid {
  display: grid;
  gap: 20px;
}

.card-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-hover);
}

.card h2,
.card h3 {
  margin-bottom: 12px;
}

.card p:last-child {
  margin-bottom: 0;
}

.card p a,
.notice a,
.page-head-card a,
.info-card a {
  color: #0b4aa8;
  font-weight: 700;
}

.card p a:hover,
.notice a:hover,
.page-head-card a:hover,
.info-card a:hover {
  text-decoration: underline;
}

.card h3 a {
  color: inherit;
  text-decoration: none;
}

.card h3 a:hover {
  text-decoration: underline;
}

.card-center {
  text-align: center;
}

.usp-card {
  font-weight: 700;
}

.emoji {
  font-size: 2rem;
  margin-bottom: 10px;
}

.card-feature.land {
  border-top: 4px solid var(--land);
}

.card-feature.sea {
  border-top: 4px solid var(--sea);
}

.card-rental.land {
  border-top: 4px solid var(--land);
}

.card-rental.sea {
  border-top: 4px solid var(--sea);
}

.card-label {
  display: inline-block;
  margin-bottom: 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 8px 14px;
  background: #f5efe5;
  color: var(--muted);
}

.card-label.main {
  font-size: 1.15rem;
  font-weight: 800;
  padding: 10px 18px;
}

.card-feature.land .card-label,
.card-rental.land .card-label {
  background: var(--land-soft);
  color: var(--land-dark);
}

.card-feature.sea .card-label,
.card-rental.sea .card-label {
  background: var(--sea-soft);
  color: var(--sea-dark);
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.info-card h2 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.info-card p + p {
  margin-top: 12px;
}

/* BUTTONS */
.btn,
a.btn,
button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 700;
  border: 0;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
  text-decoration: none !important;
}

.btn:hover,
.btn:focus,
a.btn:hover,
a.btn:focus {
  transform: translateY(-2px);
  outline: none;
  text-decoration: none !important;
}

.btn-primary,
a.btn-primary {
  background: var(--primary);
  color: var(--white) !important;
}

.btn-primary:hover,
.btn-primary:focus,
a.btn-primary:hover,
a.btn-primary:focus {
  background: var(--primary-dark);
}

.btn-land,
a.btn-land {
  background: var(--land);
  color: var(--white) !important;
}

.btn-land:hover,
.btn-land:focus,
a.btn-land:hover,
a.btn-land:focus {
  background: var(--land-dark);
}

.btn-sea,
a.btn-sea {
  background: var(--sea);
  color: var(--white) !important;
}

.btn-sea:hover,
.btn-sea:focus,
a.btn-sea:hover,
a.btn-sea:focus {
  background: var(--sea-dark);
}

.btn-secondary,
a.btn-secondary {
  background: #ebe7df;
  color: var(--dark) !important;
}

.btn-secondary:hover,
.btn-secondary:focus,
a.btn-secondary:hover,
a.btn-secondary:focus {
  background: #ddd6ca;
}

.btn-land-outline,
a.btn-land-outline {
  background: var(--land-soft);
  color: var(--land-dark) !important;
}

.btn-land-outline:hover,
.btn-land-outline:focus,
a.btn-land-outline:hover,
a.btn-land-outline:focus {
  background: #dceedd;
}

.btn-sea-outline,
a.btn-sea-outline {
  background: var(--sea-soft);
  color: var(--sea-dark) !important;
}

.btn-sea-outline:hover,
.btn-sea-outline:focus,
a.btn-sea-outline:hover,
a.btn-sea-outline:focus {
  background: #d9eafb;
}

/* FOOTER */
.site-footer {
  margin-top: 12px;
  padding: 44px 0;
  background: #1f1f1f;
  color: rgba(255, 255, 255, 0.88);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.footer-col {
  min-width: 0;
}

.site-footer h3,
.site-footer h4 {
  color: var(--white);
  margin-bottom: 12px;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li + li {
  margin-top: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .card-grid-3,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .header-inner {
    min-height: 72px;
  }

  .logo-image {
    width: 116px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(82vw, var(--menu-width));
    height: 100vh;
    background: var(--white);
    padding: 84px 18px 24px;
    box-shadow: -12px 0 30px rgba(0, 0, 0, 0.14);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition:
      transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.28s ease,
      visibility 0.28s ease;
    z-index: 1105;
    overflow-y: auto;
  }

  .site-nav.open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .site-nav > a,
  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    border-radius: 12px;
    background: #fbf8f3;
    border: 1px solid var(--border);
    padding: 12px 14px;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 100%;
    margin-top: 8px;
    padding: 6px;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 12px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    max-height: 160px;
  }

  .hero::before {
    background:
      linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url("Achtergrond_Mobile.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    animation: none;
    transform: none;
  }

  .hero-inner {
    padding: 60px 10px 72px;
  }

  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.08;
  }

  .hero-text,
  .hero p {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero-kicker {
    font-size: 0.95rem;
  }

  .hero-actions,
  .card-actions,
  .hero-notes {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-notes {
    gap: 8px;
  }

  .hero-actions .btn,
  .card-actions .btn,
  .btn,
  a.btn {
    width: 100%;
  }

  .card-grid-2,
  .card-grid-3,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .page-head-card,
  .card {
    padding: 22px;
  }

  .site-footer {
    padding: 36px 0;
  }
}