:root{
  /* Victorian Herberg palette */
  --bg:#fbf1da;        /* linnen / kaarslicht */
  --surface:#e0e2e1;   /* kaartvlakken */
  --card:#e0e2e1;

  --text:#283961;      /* nachtblauw = hoofdtekst */
  --muted:#2a4532;     /* mosgroen = secundair */

  --line:#d2d0c9;      /* zachte scheiding */

  --accent:#612424;    /* wijnrood */
  --accent2:#2a4532;   /* groen accent */
}


*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: var(--bg);
  line-height:1.75;
}

a{color:inherit}
.container{max-width:1120px;margin:0 auto;padding:0 20px}

/* Header */
.header{
  position:sticky;top:0;z-index:20;
  background: rgba(246,243,239,.85);
  backdrop-filter: blur(8px);
  border-bottom:1px solid var(--line);
}
.header__inner{
  display:flex;align-items:center;justify-content:space-between;gap:16px;
  padding:14px 0;
}
.brand{
  display:flex;align-items:center;gap:12px;
  text-decoration:none;
}
.brand__mark{
  width:38px;height:38px;border-radius:12px;
  background: radial-gradient(circle at 30% 20%, rgba(125,211,252,.9), rgba(192,132,252,.7));
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.brand__text{display:flex;flex-direction:column;line-height:1.1}
.brand__name{font-weight:800;letter-spacing:.2px}
.brand__tag{font-size:13px;color:var(--muted);margin-top:4px}

.nav{display:flex;gap:14px;flex-wrap:wrap}
.nav a{
  text-decoration:none;
  color:var(--muted);
  font-size:14px;
  padding:8px 10px;
  border-radius:10px;
}
.nav a:hover{
  color:var(--text);
  background: rgba(234,240,255,.06);
}

/* Buttons */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:11px 14px;
  border-radius:14px;
  border:1px solid rgba(234,240,255,.18);
  text-decoration:none;
  font-weight:700;
  font-size:14px;
  transition: transform .08s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{transform: translateY(-1px)}
.btn--primary{
  background: var(--accent);
  border-color: rgba(0,0,0,.15);
  color:#fff;
}
.btn--ghost{
  background: rgba(234,240,255,.05);
}

/* Sections / cards */
.section{padding:42px 0}
.card{
  background: var(--surface);
  border:1px solid var(--line);
  border-radius:20px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.card__pad{padding:18px}

.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:16px;
}
.col-6{grid-column: span 6}
.col-12{grid-column: span 12}

h1,h2,h3{margin:0 0 10px}
h2{font-size:28px}
p{margin:0 0 12px}
.small{font-size:13px;color:var(--muted)}
.hr{height:1px;background:var(--line);margin:18px 0}

/* Footer */
.footer{
  border-top:1px solid var(--line);
  padding:22px 0;
  color:var(--muted);
}

/* Mobile */
@media (max-width: 820px){
  .nav{display:none}
  .col-6{grid-column: span 12}
}

/* Forms */
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(234,240,255,.16);
  background: rgba(234,240,255,.06);
  color: var(--text);
  outline:none;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(125,211,252,.55);
  box-shadow: 0 0 0 4px rgba(125,211,252,.12);
}
label{display:inline-block;color:var(--muted);font-size:13px;margin-bottom:6px}
button{
  cursor:pointer;
  padding:11px 14px;
  border-radius:14px;
  border:1px solid rgba(234,240,255,.18);
  background: linear-gradient(135deg, rgba(125,211,252,.35), rgba(192,132,252,.25));
  color: var(--text);
  font-weight:800;
}
button:hover{transform: translateY(-1px)}

/* Gallery / slideshow */
.gallery{
  position:relative;
  overflow:hidden;
  border-radius:20px;
  border:1px solid var(--line);
  background: rgba(16,31,61,.7);
}

.gallery img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:none;
}

.gallery img.active{
  display:block;
  animation: fadein .6s ease;
}

@keyframes fadein{
  from{opacity:0}
  to{opacity:1}
}

.gallery__nav{
  position:absolute;
  inset:auto 12px 12px auto;
  display:flex;
  gap:8px;
}

.gallery__nav button{
  padding:8px 10px;
  border-radius:10px;
  font-size:13px;
}



