/* styles.css — Janne Keramiek (clean + robust, no color-mix) */

:root{
  /* Brand */
  --brand: hsl(16.91deg 61.8% 65.1%);      /* jouw kleur */
  --brand-deep: hsl(16.91 55% 38%);        /* donkerder terracotta */
  --brand-soft: hsla(16.91, 61.8%, 65.1%, .18);

  /* Neutrals */
  --ink:#0b1220;
  --muted:#5b667a;
  --paper:#ffffff;
  --border: rgba(0,0,0,.08);

  --shadow: 0 10px 30px rgba(0,0,0,.06);
  --shadow-strong: 0 16px 42px rgba(0,0,0,.10);

  --r-lg: 18px;
  --r-md: 14px;
  --r-sm: 12px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--ink);
  background: var(--paper);
  line-height:1.6;
}

a{ color: var(--brand-deep); text-decoration:none; }
a:hover{ text-decoration:underline; }

.container{
  max-width:1100px;
  margin:0 auto;
  padding:0 20px;
}

/* ============ Header / Nav ============ */
.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;

  padding: 14px 20px;

  /* iets aardser/donkerder dan je huidige */
  background: linear-gradient(180deg, rgba(235, 216, 205, .85), rgba(255,255,255,.92));
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:var(--ink);
}
.brand:hover{ text-decoration:none; }

.brand__mark{
  width:56px;
  height:56px;
  display:block;
}

.brand__stack{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}
.brand__name{
  font-weight:900;
  color:var(--ink);
  letter-spacing:.2px;
  font-size: 1.05rem;
}
.brand__sub{
  font-weight:800;
  color:var(--muted);
  font-size:.85rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  margin-top:2px;
}

.site-nav{ display:block; }
.nav-list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  gap:18px;
  align-items:center;
}
.nav-list a{
  color:var(--ink);
  font-weight:700;
  font-size:0.95rem;
}

.nav-toggle{
  display:none;
  background:none;
  border:none;
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  width:26px;
  height:3px;
  background:var(--ink);
  margin:5px 0;
  border-radius:3px;
}

.header-cta{
  margin-left:8px;
  white-space:nowrap;
}

/* Mobile nav */
@media (max-width: 860px){
  .site-nav{ display:none; }
  .nav-toggle{ display:block; }
  .header-cta{ display:none; }

  .site-nav.nav-open{
    display:block;
    position:absolute;
    right:16px;
    top:64px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:12px;
    padding:10px 12px;
    box-shadow: var(--shadow);
  }
  .site-nav.nav-open .nav-list{
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
  }
  .brand__name{ font-size:0.95rem; }
}

/* Anchor offset (sticky header) */
section{ scroll-margin-top: 86px; }

/* ============ Buttons ============ */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding: 0.65em 1.1em;
  border-radius: var(--r-sm);
  font-weight:900;
  border:1px solid transparent;
  cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, border-color .15s ease;
  text-decoration:none;
}
.btn:hover{ transform: translateY(-2px); text-decoration:none; box-shadow: 0 12px 30px rgba(0,0,0,0.10); }

.btn.primary{
  background: var(--brand);
  color:#1a120d;
}
.btn.primary:hover{
  background: hsla(16.91, 61.8%, 65.1%, .85);
}

.btn.secondary{
  background: rgba(15,45,92,.06);
  border-color: rgba(0,0,0,0.18);
  color: var(--brand-deep);
}

/* ============ Hero (shop) ============ */
.hero--shop{
  padding: 54px 0 30px;

  /* duidelijker aardse gloed */
  background:
    radial-gradient(1100px 650px at 18% 18%, rgba(217,176,140,.32), transparent 60%),
    radial-gradient(900px 520px at 88% 12%, rgba(138,75,50,.18), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,1), rgba(255,255,255,1));
}

.hero-split{
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items:center;
}

.hero-kicker{
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  font-size: .82rem;
}

.hero-title{
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.12;
  margin: 10px 0 12px;
}

.hero-lead{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-ctas{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.hero-note{
  margin-top: 16px;
  font-size: .95rem;
  color: var(--muted);
}

/* ✅ WATERMARK achter alleen het tekstblok (linker kolom)
   Geen HTML wijziging nodig: pakt de eerste div in .hero-split */
.hero-split > div:first-child{
  position: relative;
  isolation:isolate;
}

/* watermark laag */
.hero-split > div:first-child::before{
  content:"";
  position:absolute;
  inset: -24px -10px -24px -24px;

  background: url("assets/logo.png") no-repeat;
  background-size: 520px;
  background-position: 88% 38%;

  opacity: .055;                 /* zet op .075 als je hem duidelijker wilt */
  filter: saturate(.95) contrast(1.08);
  pointer-events:none;
  z-index: -1;
}

/* ============ Slider ============ */
.hero-slider{
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-slider .slide{
  display:none;
  padding: 18px;
}
.hero-slider .slide.current{ display:block; }

.slide-figure{
  /* belangrijk: we maken er een kolom van zodat caption eronder kan */
  display:flex;
  flex-direction:column;

  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(217,176,140,.18), rgba(138,75,50,.06));
  overflow:hidden;
}

.slide-figure img{
  width:100%;
  height:auto;
  display:block;
}

/* ✅ Caption onder de foto (geen overlay meer) */
.slide-caption{
  position: relative;     /* was absolute */
  left:auto;
  right:auto;
  bottom:auto;

  margin: 10px 0 0;
  padding: 10px 12px;
  border-radius: 14px;

  color: var(--ink);
  background: rgba(255,255,255,.92);
  border: 1px solid var(--border);
  backdrop-filter: blur(6px);
}

.slide-caption strong{
  display:block;
  font-size: 1.05rem;
  line-height: 1.15;
}
.slide-caption span{
  display:block;
  font-size:.95rem;
  color: var(--muted);
  margin-top: 2px;
}

/* Controls */
.hero-slider-controls{
  position:absolute;
  inset:auto 12px 12px 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  pointer-events:none;
}

.hero-slider-controls button{
  pointer-events:auto;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 10px 12px;
  cursor:pointer;
  font-weight: 900;
}

.hero-slider-controls .dots{
  display:flex;
  gap: 8px;
}

.hero-slider-controls .dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.22);
  background: rgba(255,255,255,.7);
  cursor:pointer;
  padding:0;
}

.hero-slider-controls .dot.active{
  background: var(--brand-deep);
  border-color: var(--brand-deep);
}

/* ============ Sections / Grid ============ */
.section{
  padding: 54px 0;
}

.section-title{
  font-size: 1.6rem;
  margin: 0 0 10px;
}

.section-lead{
  margin: 0 0 22px;
  color: var(--muted);
}

.product-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.product-card{
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow:hidden;
  background:#fff;
  box-shadow: var(--shadow);
  display:flex;
  flex-direction:column;
}

.product-card .media{
  aspect-ratio: 4 / 3;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(180deg, rgba(217,176,140,.20), rgba(138,75,50,.06));
}
.product-card .media img{ width: 82%; height:auto; display:block; opacity: .98; }

.product-card .content{
  padding: 14px 14px 16px;
  display:flex;
  flex-direction:column;
  gap: 10px;
  flex: 1;
}

.product-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 10px;
}

.product-card h3{ margin:0; font-size: 1.05rem; }

.price{
  font-weight: 900;
  color: var(--brand-deep);
  white-space: nowrap;
}

.product-card p{
  margin:0;
  color: var(--muted);
  font-size: .95rem;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  border: 1px solid var(--border);
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 800;
  font-size: .9rem;
  background: rgba(255,255,255,.7);
}

.about-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items:start;
}

.about-card{
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  padding: 18px;
  background:#fff;
}

.about-photo{
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(217,176,140,.22), rgba(138,75,50,.07));
  padding: 18px;
  box-shadow: var(--shadow);
}
.about-photo img{ width:100%; height:auto; display:block; border-radius: var(--r-md); }

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap:18px;
  margin: 22px 0 10px;
}

.contact-tile{
  display:flex;
  align-items:center;
  gap:16px;
  padding:18px 20px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg,#ffffff,#f7f9fc);
  border:1px solid #e6eaf0;
  text-decoration:none;
  color:#0f172a;
  box-shadow: 0 4px 14px rgba(15,23,42,.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.contact-tile:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(15,23,42,.12);
  border-color:#d9dee7;
  text-decoration:none;
}

.contact-icon{
  width:42px;
  height:42px;
  border-radius:12px;
  background: linear-gradient(135deg,#f2f4f8,#e9edf3);
  border:1px solid #e1e6ee;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
}

.contact-label{ font-size:12px; color:#6b7280; letter-spacing:.3px; }
.contact-value{ font-size:15px; font-weight:700; color:#111827; }

.contact-form{
  margin-top:14px;
  display:grid;
  gap:10px;
  max-width:680px;
}
.form-row{ display:grid; gap:6px; }
.contact-form input, .contact-form textarea{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid var(--border);
  background:#fff;
  font:inherit;
}

.form-status{ margin:10px 0 14px; font-weight:700; color: var(--muted); }

/* Footer */
footer, .muted{ color: var(--muted); }

/* Responsive */
@media (max-width: 980px){
  .hero-split{ grid-template-columns: 1fr; }
  .product-grid{ grid-template-columns: repeat(2, 1fr); }
  .about-grid{ grid-template-columns: 1fr; }

  .hero-split > div:first-child::before{
    background-size: 440px;
    background-position: 86% 32%;
    opacity: .05;
  }
}

@media (max-width: 640px){
  .product-grid{ grid-template-columns: 1fr; }
  .hero--shop{ padding: 44px 0 26px; }

  .hero-split > div:first-child::before{
    background-size: 360px;
    background-position: 80% 24%;
    opacity: .045;
  }
}