/* ── NTRNS – Gedeelde stijlen ── */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,800;1,300&family=Vollkorn:ital,wght@0,400;1,400&display=swap');

/* ── RESET & BASIS ── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f4efe4;
  color: #1a1a18;
  overflow-x: hidden;
}

/* ── NAVIGATIE ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: transparent;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 30px;
  letter-spacing: 0.12em;
  color: #FF5e78;
  text-decoration: none;
}

.menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 1px;
  background: #ffffff;
  transition: all 0.3s;
}

/* ── MENU OVERLAY ── */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #221a10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.menu-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.menu-overlay a {
  font-family: 'Vollkorn', serif;
  font-weight: 400;
  font-size: clamp(28px, 5vw, 52px);
  color: #f0e8d8;
  letter-spacing: 0.18em;
  padding: 10px 0;
  text-decoration: none;
  opacity: 0.8;
  transition: color 0.2s, opacity 0.2s;
}

.menu-overlay a:hover {
  opacity: 1;
  color: #FF5e78;
}

.close-btn {
  position: absolute;
  top: 26px;
  right: 40px;
  background: none;
  border: none;
  font-size: 28px;
  color: #f0e8d8;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 200;
}

/* ── PAGINAKOP (donker blok + golf) ── */
.paginakop {
  background: linear-gradient(to bottom, #1a1a18 0%, #221a10 100%);
  padding-top: 80px;
  height: 160px;
}

.overgang {
  background: #221a10;
  line-height: 0;
}

.overgang svg {
  display: block;
}

/* ── SECTIE-LABELS ── */
.sectie-label {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  letter-spacing: 0.5em;
  color: #bbb;
  text-transform: uppercase;
  margin-bottom: 40px;
  font-weight: 300;
}

/* ── COLLECTIE SLIDER ── */
.collectie-sectie {
  background: #f4efe4;
  padding: 80px 40px;
}

.slider-wrap {
  max-width: 760px;
  margin: 0 auto;
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 40px;
  transition: transform 0.4s ease;
  will-change: transform;
}

.slide-item {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 0 0 320px;
  width: 320px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.werk-afbeelding {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: #ffffff;
  border: 0.5px solid #e0dbd2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s;
}

.slide-item:hover .werk-afbeelding {
  border-color: #FF5e78;
}

.placeholder-kruis {
  width: 1px;
  height: 44px;
  background: #ddd8d0;
  position: relative;
}

.placeholder-kruis::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  width: 44px;
  height: 1px;
  background: #ddd8d0;
}

.werk-tekst {
  padding-top: 6px;
}

.werk-naam {
  font-family: 'Vollkorn', serif;
  font-weight: 400;
  font-size: 22px;
  color: #2a2520;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
  transition: color 0.25s;
}

.slide-item:hover .werk-naam {
  color: #FF5e78;
}

.werk-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: #a89880;
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 20px;
}

.werk-prijs {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: #4a3f34;
  font-weight: 300;
}

.slider-nav {
  display: flex;
  gap: 10px;
  margin-top: 28px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.snav {
  background: none;
  border: 0.5px solid #ccc;
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 14px;
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  font-family: 'Poppins', sans-serif;
}

.snav:hover {
  border-color: #FF5e78;
  color: #FF5e78;
}

/* ── LEGE SECTIE ── */
.lege-sectie {
  background: #ece4d4;
  padding: 80px 40px;
}

/* ── OVER NTRNS ── */
.over-sectie {
  background: #e4dac8;
  padding: 80px 40px;
}

.over-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.over-tekst-blok {
  flex: 1;
}

.over-titel {
  font-family: 'Vollkorn', serif;
  font-weight: 400;
  font-size: 36px;
  color: #3b2e22;
  line-height: 1.25;
  margin-bottom: 18px;
}

.over-tekst {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #7a6555;
  line-height: 2;
  font-weight: 300;
  max-width: 480px;
  margin-bottom: 28px;
}

.meer-link {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  letter-spacing: 0.35em;
  color: #8B6A50;
  text-transform: uppercase;
  font-weight: 300;
  text-decoration: none;
  border-bottom: 0.5px solid #8B6A50;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.meer-link:hover {
  color: #FF5e78;
  border-color: #FF5e78;
}

.over-placeholder {
  flex: 0 0 440px;
  height: 320px;
  background: #3b2e22;
  border: 2.5px solid #FF5e78;
}

/* ── PAGINA-INHOUD (over, contact) ── */
.pagina-sectie {
  background: #f4efe4;
  padding: 80px 40px;
  min-height: 60vh;
}

.pagina-inner {
  max-width: 680px;
  margin: 0 auto;
}

.pagina-titel {
  font-family: 'Vollkorn', serif;
  font-weight: 400;
  font-size: 42px;
  color: #3b2e22;
  line-height: 1.2;
  margin-bottom: 24px;
}

.pagina-tekst {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #7a6555;
  line-height: 2;
  font-weight: 300;
  margin-bottom: 20px;
}

/* ── FOOTER ── */
footer {
  background: #221a10;
  padding: 48px 40px 36px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px;
}

.footer-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.25em;
  color: #FF5e78;
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-links a {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: #f4efe4;
  text-transform: uppercase;
  font-weight: 300;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #FF5e78;
}

.footer-copy {
  border-top: 0.5px solid #3a2e1e;
  padding-top: 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  color: #6a5a48;
  letter-spacing: 0.2em;
  font-weight: 300;
}

/* ── GEDEELDE JS-FRAGMENTEN ── */
/* (menu open/sluit via menu.js) */
