
/* ===== Snoet & Snor — demo.css (non-destructive) =====
   Drop this after your existing <style> so it overrides gently.
   You can also link it as a separate file.
======================================================== */

/* 1) Color system (tweak to taste) */
:root{
  --bg:        #cdc9bc;         /* existing background */
  --ink:       #3D3A33;         /* existing body text */
  --accent:   #7E512E;         /* existing accent (kept) */
  --accent-2: #7E512E;         /* NEW soft green for subtle highlights */
  --muted:     #8a847a;
  --panel:     #cdc9bc;
  --ring:      rgba(0,0,0,.08);
}

/* 2) Global typography polish */
body{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: .1px;
}
h1,h2,h3{
  color: var(--accent);
  letter-spacing: .4px;
}
h2{ font-size: clamp(1.25rem, 1.1rem + .8vw, 1.5rem); }
p{ margin: 0 0 .8rem; }

/* 3) Cards / containers: a bit more air */
.container{
  background: var(--panel);
  border-radius: 0px;
  box-shadow: none !important; /* schaduw volledig uit */
  padding: clamp(16px, 2vw, 24px);
}

/* 4) Navigation: subtle hover + active state */
nav a{
  font-weight: 600;
  transition: background .2s ease, color .2s ease;
  border-radius: 0px;
}
nav a:hover{
  background: rgba(0,0,0,.06);
}
nav a[aria-current="page"],
nav a.active{
  background: color-mix(in oklab, var(--accent) 12%, white);
}

/* 5) Buttons (you can add class="btn") */
.btn{
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: .6rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: none !important; /* schaduw volledig uit */
  transition: transform .12s ease, box-shadow .12s ease, background .2s ease;
}
.btn:hover{ transform: translateY(-1px); box-shadow: 0 10px 22px rgba(0,0,0,.16); }
.btn:active{ transform: translateY(0); box-shadow: 0 6px 16px rgba(0,0,0,.12); }
.btn--alt{ background: var(--accent-2); }

/* 6) Media polish */
img.rounded-photo{
  display:block;
  margin: 18px auto;
  max-width: min(520px, 100%);
  width: 100%;
  height: auto;
  border-radius: 0px;
  box-shadow: none !important; /* schaduw volledig uit */
  transition: transform .2s ease;
}
img.rounded-photo:hover{
  transform: scale(1.01);
}

/* 7) Utility spacing helpers */
.section{ margin-block: clamp(18px, 4vw, 34px); }
.stack-12 > * + *{ margin-top: 12px; }
.stack-16 > * + *{ margin-top: 16px; }
.stack-20 > * + *{ margin-top: 20px; }

/* 8) Simple responsive two-column helper (optional) */
.grid-2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 3vw, 24px);
}
@media (max-width: 820px){
  .grid-2{ grid-template-columns: 1fr; }
}

/* 9) Divider refinement */
.divider{
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,.12), transparent);
  margin: 14px 0 12px;
  border-radius: 1px;
}

/* (replaced by green accent block below) */
.container a:hover{
  text-decoration-thickness: 2px;
}



/* === Soft green accent integration === */
:root{
  --accent-2: #7E512E; /* soft sage green */
}

/* Links use green on hover */
.container a{
  color: var(--accent);
  text-underline-offset: 2px;
  transition: color .2s ease;
}
.container a:hover{
  color: var(--accent-2);
}

/* Divider uses soft green gradient */
.divider{
  background: linear-gradient(90deg, transparent, var(--accent-2), transparent);
}

/* Nav active link highlight with soft green */
nav a.active,
nav a[aria-current="page"]{
  background: color-mix(in srgb, var(--accent-2) 20%, white);
}



/* === Refined links with soft green accent === */
.container a{
  color: var(--accent);                 /* normal state: your warm accent */
  text-underline-offset: 2px;
  transition: color .2s ease, text-decoration-thickness .2s ease;
}
.container a:hover{
  color: var(--accent-2);               /* hover shows the soft green */
  text-decoration-thickness: 2px;
}

/* Nav hover uses green tint for clearer feedback */
nav a:hover{
  background: color-mix(in srgb, var(--accent-2) 20%, white);
}

/* Divider: subtle but visible green gradient */
.divider{
  background: linear-gradient(90deg, transparent, var(--accent-2), transparent);
  height: 1px;
}



/* === Green accent: strong scoped overrides === */

/* 1) Active tab — more present green background */
nav a.active,
nav a[aria-current="page"]{
  background: color-mix(in srgb, var(--accent-2) 20%, white) !important;
  box-shadow: none !important; /* schaduw volledig uit */
}

/* 2) Content bullets — show & color softly green (only if there are <li> items) */
@supports(selector(:has(*))){
  .container ul:has(li){
    list-style: disc !important;
    padding-left: 1.1rem !important;
  }
}
/* Fallback if :has() is not supported */
.container ul li{
  list-style: disc inside;
}
.container ul li::marker{
  color: var(--accent-2);
}




/* === DEBUG-VISIBLE DIAGONAL BAND to confirm overlay === */
html{ background:#cdc9bc !important; min-height:100%; }
body{ position: relative; z-index:0; background: transparent !important; }

body::before{
  content:"";
  position: fixed;
  inset: 0;
  width:100%; height:100%;
  background: linear-gradient(135deg,
    rgba(156,175,136,0) 0%,
    rgba(156,175,136,0) 35%,
    rgba(156,175,136,0.35) 36%,
    rgba(156,175,136,0.35) 64%,
    rgba(156,175,136,0) 65%,
    rgba(156,175,136,0) 100%
  );
  pointer-events: none;
  z-index: 0;
}
.container{ position: relative; z-index:1; }



/* === Subtle icon strook overlay (final) === */
html{ background:#cdc9bc; min-height:100%; }
body{ position: relative; z-index:0; background: transparent !important; }
body::before{
  content:"";
  position: fixed;
  inset: 0;
  background-image: url("strook.png");
  background-repeat: no-repeat;
  background-size: 1200px auto;
  background-position: -12% -6%;
  transform: rotate(-18deg);
  opacity: 0.14;            /* subtle but visible */
  pointer-events: none;
  z-index: 0;
}
.container{ position: relative; z-index: 1; }



/* === User-icon strook overlay (transparent background) === */
html{ background:#cdc9bc; min-height:100%; }
body{ position: relative; z-index:0; background: transparent !important; }
body::before{
  content:"";
  position: fixed;
  inset: 0;
  background-image: url("strook-icons.png");
  background-repeat: no-repeat;         /* single diagonal band */
  background-size: 1200px auto;         /* adjust size of the band */
  background-position: -12% -6%;
  transform: rotate(-18deg);
  opacity: 0.16;                        /* subtle but visible */
  pointer-events: none;
  z-index: 0;
}
.container{ position: relative; z-index: 1; }



/* === Diagonal stripe with icons, below header === */
html{ background:#cdc9bc; min-height:100%; }
body{ position: relative; z-index:0; background: transparent !important; }

body::before{
  content:"";
  position: fixed;
  top: 120px;          /* start below header/logo */
  left: -25%;
  width: 160%;
  height: 80%;
  background-image: url("strook-icons.png");
  background-repeat: repeat;
  background-size: 300px auto;
  transform: rotate(-18deg);
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
}
.container{ position: relative; z-index: 1; }



/* === Adjusted diagonal stripe: smaller band, larger icons === */
body::before{
  content:"";
  position: fixed;
  top: 120px;          /* start below header/logo */
  left: -25%;
  width: 160%;
  height: 45%;         /* smaller stripe height */
  background-image: url("strook-icons.png");
  background-repeat: repeat;
  background-size: 500px auto;  /* larger icons */
  transform: rotate(-18deg);
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
}


/* === Lower stripe start + bigger icons === */
body::before{
  content:"";
  position: fixed;
  top: 200px;          /* push stripe further down, below logo/nav */
  left: -25%;
  width: 160%;
  height: 45%;
  background-image: url("strook-icons.png");
  background-repeat: repeat;
  background-size: 600px auto;   /* even larger icons */
  transform: rotate(-18deg);
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
}


/* === Two vertical side bands with icons (no diagonal) === */
html{ background:#cdc9bc; min-height:100%; }
body{ position: relative; z-index: 0; background: transparent !important; }

/* Left band */
body::before{
  content:"";
  position: fixed;
  top: 120px;        /* start below header */
  left: 0;
  width: 22vw;       /* band width */
  height: calc(100% - 120px);
  background-image: url("strook-icons.png");
  background-repeat: repeat;
  background-size: 520px auto; /* icon size */
  background-position: left top;
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
}

/* Right band */
body::after{
  content:"";
  position: fixed;
  top: 120px;
  right: 0;
  width: 22vw;
  height: calc(100% - 120px);
  background-image: url("strook-icons.png");
  background-repeat: repeat;
  background-size: 520px auto;
  background-position: right top;
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
}

.container{ position: relative; z-index: 1; }


/* === BOXED vertical bands: full height, no diagonal === */
html{ background:#cdc9bc; min-height:100%; }
body{ position: relative; z-index: 0; background: transparent !important; }

/* Left band - full viewport height */
body::before{
  content:"";
  position: fixed;
  top: 0;                 /* start at the very top */
  left: 0;
  width: 22vw;            /* same width as before; adjust if needed */
  height: 100vh;          /* full viewport height */
  background-image: url("strook-icons.png");
  background-repeat: repeat;
  background-size: 520px auto; /* icon size */
  background-position: left top;
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
}

/* Right band - full viewport height */
body::after{
  content:"";
  position: fixed;
  top: 0;
  right: 0;
  width: 22vw;
  height: 100vh;
  background-image: url("strook-icons.png");
  background-repeat: repeat;
  background-size: 520px auto;
  background-position: right top;
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
}

.container{ position: relative; z-index: 1; }



/* === Vertical side bands: centered pattern, bigger icons, gutters on both edges === */
html { background:#cdc9bc min-height:100%; }
html body { position: relative; background: transparent !important; z-index: 0; }

:root{
  --band-pad: 64px;      /* inner padding so icons don't touch edges */
  --icon-size: 700px;    /* bigger icons */
}

/* Left band */
html body::before{
  content:"";
  position: fixed !important;
  top: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 22vw !important;
  background-image: url("strook-icons.png") !important;
  background-repeat: repeat !important;
  background-size: var(--icon-size) auto !important;
  background-position: center top !important;     /* center pattern within band */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black var(--band-pad), black calc(100% - var(--band-pad)), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, black var(--band-pad), black calc(100% - var(--band-pad)), transparent 100%);
  opacity: 0.14 !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

/* Right band */
html body::after{
  content:"";
  position: fixed !important;
  top: 0 !important;
  bottom: 0 !important;
  right: 0 !important;
  width: 22vw !important;
  background-image: url("strook-icons.png") !important;
  background-repeat: repeat !important;
  background-size: var(--icon-size) auto !important;
  background-position: center top !important;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black var(--band-pad), black calc(100% - var(--band-pad)), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, black var(--band-pad), black calc(100% - var(--band-pad)), transparent 100%);
  opacity: 0.14 !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

.container{ position: relative; z-index: 1; }


/* === Uniforme tekstgrootte in alle witte boxen (zoals indexpagina) === */
body,
.container {
  font-size: 18px;
  line-height: 1.6;
  font-family: Cambria, serif;
}


/* === Uniforme uitlijning van menu-items === */
nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px; /* gelijkmatige tussenruimte tussen links */
  margin-top: 0;
  padding-top: 0;
}

nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px; /* gelijke ruimte boven/onder */
  line-height: 1.2;
}


/* === Perfecte uitlijning van logo en menu === */
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: !important; 6px; /* evenwichtige afstand tussen logo en menu */
  padding: 10px 0 0 0; /* verwijdert overbodige ruimte */
}

.site-logo {
  margin: 0 auto;
  display: block;
  max-width: 400px;
  height: auto;
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
}

nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px; /* iets meer balans */
  line-height: 1.2;
}


/* === Extra ruimte tussen logo en navigatie === */
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px; /* meer ruimte tussen logo en menu */
  padding: 10px 0 24px 0; /* extra witruimte onderaan voor balans */
}


/* === Voorkomt blauw klik-highlight op mobiele apparaten === */
a, button, nav a {
  -webkit-tap-highlight-color: transparent;
}


/* Centreer de Instagram-link onder de afbeelding */
.instagram-link {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-weight: bold;
  color: var(--accent);
  text-decoration: none;
}

.instagram-link:hover {
  text-decoration: underline;
}