/* Web Cuisine — licht thema met oranje gradient accenten en zachte circles */
:root{
  --bg: #f7f8fb;
  --panel: #ffffff;
  --text: #0f1320;
  --muted:#5b6371;
  --border: rgba(15,19,32,.08);
  --shadow: 0 20px 50px rgba(15,19,32,.08);
  --accent-a:#ff8a33;   /* WC oranje A */
  --accent-b:#ff6a00;   /* WC oranje B */
}

/* Basislayout */
html, body { height: 100%; margin: 0; }
.wcsm-light{
  min-height: 100%;
  display: grid;
  place-items: center;
  background: var(--bg);
  color: var(--text);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

/* Zachte, lichte ‘animated circles’ zoals je header */
.wcsm-bg{
  position: absolute; inset: -25% -15% -10% -25%;
  background:
    radial-gradient(420px 420px at 18% 28%, rgba(255,106,0,.10), transparent 60%),
    radial-gradient(560px 560px at 85% 18%, rgba(255,138,51,.10), transparent 65%),
    radial-gradient(380px 380px at 50% 85%, rgba(13,110,253,.08), transparent 62%);
  filter: blur(12px);
  animation: wcsm-float 22s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes wcsm-float{
  0%   { transform: translate3d(0,0,0) scale(1);   opacity: .9; }
  100% { transform: translate3d(0,-16px,0) scale(1.03); opacity: 1; }
}

/* Card */
.wcsm-card{
  width: min(820px, 94vw);
  background: var(--panel);
  padding: 30px 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
}
.wcsm-card::before{
  content:"";
  position:absolute; inset:-1px;
  border-radius: 22px;
  pointer-events:none;
  background: linear-gradient(135deg, rgba(255,138,51,.22), rgba(255,106,0,.18));
  -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  -webkit-mask-composite: xor; mask-composite: exclude;
  padding: 1px;
}

/* Typografie */
.wcsm-card h1{
  margin: 6px 0 10px;
  font-size: clamp(26px, 3.6vw, 40px);
  letter-spacing:.2px;
}
.wcsm-lead{
  margin: 0 0 12px;
  font-size: clamp(16px, 2.2vw, 18px);
  color: var(--text);
}
.wcsm-tagline{
  display:inline-block;
  margin-top: 4px;
  color: var(--muted);
}

/* Lottie perfect gecentreerd */
.wcsm-anim{
  display: grid;
  place-items: center;
  margin: 2px auto 10px;
  width: min(320px, 80vw);
  aspect-ratio: 1/1;
}
dotlottie-wc{ display:block; width:100% !important; height:100% !important; }

/* Dienstenlijst */
.wcsm-services{
  list-style: none; padding: 0; margin: 6px 0 2px;
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 6px 14px;
  color: var(--muted);
  font-size: 15px;
}
@media (max-width: 520px){
  .wcsm-services{ grid-template-columns: 1fr; }
}

/* Acties */
.wcsm-actions{
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.wcsm-btn{
  --g: linear-gradient(90deg, var(--accent-a), var(--accent-b));
  appearance: none; border: 0; cursor: pointer;
  background: var(--g);
  color: #fff; font-weight: 600; text-decoration: none;
  padding: 10px 16px; border-radius: 12px;
  box-shadow: 0 10px 24px rgba(255,106,0,.25);
  transition: transform .15s ease, box-shadow .2s ease, opacity .2s ease;
}
.wcsm-btn:hover{ transform: translateY(-1px); box-shadow: 0 12px 28px rgba(255,106,0,.32); }
.wcsm-btn:active{ transform: translateY(0); }

.wcsm-link{
  color: var(--muted); text-decoration: none; padding: 10px 6px;
  border-bottom: 1px dashed rgba(255,106,0,.45);
  transition: color .2s ease, border-color .2s ease;
}
.wcsm-link:hover{ color: var(--text); border-color: rgba(255,106,0,.8); }

.wcsm-small{
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.wcsm-underline{
  color: var(--text);
  text-decoration: none;
  background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  border-bottom: 1px solid rgba(255,106,0,.35);
}
.wcsm-underline:hover{ border-color: rgba(255,106,0,.8); }
